* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #1f1e24;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.main-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    margin-bottom: 30px;
    text-align: center;
}

.logo {
    max-width: 250px;
    height: auto;
}

.upload-card {
    background-color: #262630;
    border-radius: 8px;
    padding: 40px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: opacity 0.5s ease;
}

.success-card {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #262630;
    border-radius: 8px;
    padding: 60px 40px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: fadeIn 0.5s ease forwards;
}

.success-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 209, 161, 0.1);
    border-radius: 50%;
}

.success-icon {
    font-size: 32px;
    color: #06f9e4;
    z-index: 1;
    background-color: #1f1e24; /* Inner dark circle if needed, or just transparent */
    background: rgba(7 244 225 / 10%);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 3px solid #00fde0;
    box-shadow: 0 0 15px rgba(7 244 225 / 30%);
    padding-top: 6px;
}

.success-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.success-text {
    font-size: 16px;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 40px;
}

.home-btn {
    background-color: #e6272e;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
}

.home-btn:hover {
    background-color: #c91e25;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 39, 46, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.warning-message {
    display: flex;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(230, 39, 46, 0.1);
    border: 1px solid #e6272e;
    color: #e6272e;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    align-items: center;
    gap: 8px;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.warning-message.show {
    opacity: 1;
    pointer-events: auto;
    animation: fadeInDown 0.4s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate(-50%, -10px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-input, .form-textarea {
    width: 100%;
    background-color: #1f1e24;
    border: 1px solid #3a3a45;
    border-radius: 6px;
    padding: 15px;
    color: #a0a0a0;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus, .form-textarea:focus {
    border-color: #555;
    color: #fff;
}

.form-textarea {
    resize: none;
    height: 100px;
}

.upload-area {
    border: 2px dashed #a0a0a0;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    background-color: transparent;
    position: relative;
}

.upload-area.highlight {
    border-color: #e63946;
    background-color: rgba(230, 57, 70, 0.05);
}

.upload-area input[type="file"] {
    display: none;
}

.upload-icon {
    font-size: 48px;
    color: #6c757d;
    margin-bottom: 15px;
}

.upload-text {
    font-size: 14px;
    color: #00bcd4; /* Cyan color matching the "Dosya seçin" in the image if visible, else generic */
    margin-bottom: 5px;
}

.upload-text strong {
    color: #00bcd4;
}

.upload-text {
    color: #888;
}

.upload-subtext {
    font-size: 12px;
    color: #555;
}

.submit-btn {
    width: 100%;
    background: #e6272e;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 5px rgba(230, 39, 46, 0.5);
}

.submit-btn:hover {
    box-shadow: 0 0 15px rgba(230, 39, 46, 0.8);
    opacity: 1;
}

.footer-section {
    margin-top: 40px;
    text-align: center;
}

.footer-title {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #262630;
    color: #aaa;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    transition: background-color 0.3s, color 0.3s;
}

.social-link:hover {
    background-color: #333340;
    color: #fff;
}

.social-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .upload-card {
        padding: 20px;
    }
}

