* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: linear-gradient(135deg, #0a0f1a 0%, #141c2b 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.container {
    width: 100%;
    max-width: 600px;
}

.domain-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: 2.6em;
    background: linear-gradient(135deg, #3F6EE9, #2850c3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 700;
}

.status {
    color: #3F6EE9;
    text-align: center;
    font-size: 0.85em;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
}

.offer-section h2 {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    opacity: 0.9;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    transition: all 0.3s ease;
}

.form-group:focus-within i {
    color: rgba(63, 110, 233, 0.8);
}

.form-group input, 
.form-group textarea {
    padding-left: 45px;  /* İkon için sol padding artırıldı */
}

/* Textarea için ikon pozisyonu düzeltmesi */
.form-group textarea + i {
    top: 25px;
    transform: none;
}

input, textarea {
    width: 100%;
    padding: 14px 18px 14px 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(30, 41, 59, 0.8);
    border-radius: 16px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

textarea {
    height: 80px;
    resize: vertical;
}

input:focus, textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(63, 110, 233, 0.5);
    box-shadow: 0 0 0 4px rgba(63, 110, 233, 0.1);
}

input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

button {
    background: linear-gradient(135deg, #3F6EE9, #2850c3);
    padding: 14px 28px;
    border-radius: 16px;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 20px rgba(63, 110, 233, 0.15);
}

button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(63, 110, 233, 0.2);
}

.g-recaptcha {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .domain-card {
        padding: 15px;
    }
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: center;
    }
    .form-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 0;
    }
    
    .form-row .form-group {
        margin-bottom: 15px;
    }
}

.captcha-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.captcha-input-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.captcha-input-row input {
    flex: 1;
}

.captcha-input-row button[type="submit"] {
    min-width: 140px;
    height: 47px;  /* input yüksekliğiyle eşleştirmek için */
}

.captcha-box {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#captchaText {
    color: #fff;
    font-size: 24px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    letter-spacing: 8px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

#refreshCaptcha {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    padding: 5px 10px;
    transition: transform 0.3s ease;
}

#refreshCaptcha:hover {
    transform: rotate(180deg);
}

.contact-cards {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 200px;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
}

.contact-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(63, 110, 233, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-card .icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.contact-card:hover .icon {
    transform: scale(1.1);
}

.contact-card .contact-info {
    flex: 1;
    min-width: 150px;
}

.contact-card h3 {
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 0.9em;
    opacity: 0.8;
}

.contact-card a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
    display: block;
}

.contact-card a:hover {
    color: #3F6EE9;
}

@media (max-width: 480px) {
    .contact-cards {
        flex-direction: column;
    }
    
    .contact-card {
        width: 100%;
    }

    .captcha-input-row {
        flex-direction: column;
    }
    
    .captcha-input-row button[type="submit"] {
        width: 100%;
    }

    .contact-card h3 {
        color: #fff;
        opacity: 0.8;
    }
    
    .contact-card a {
        color: #fff;
    }
    
    .contact-card a:hover {
        color: #3F6EE9;
    }
}

/* Marquee şerit stili */
marquee {
    background: linear-gradient(135deg, #3F6EE9, #2850c3);
    margin: 20px -30px;  /* negatif margin ile kenarlara uzatıyoruz */
    padding: 8px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Mobil görünüm için margin ayarı */
@media (max-width: 480px) {
    marquee {
        margin: 20px -15px;  /* mobilde padding daha az olduğu için */
    }
}

/* Minimal bildirim stili */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 14px;
    transform: translateX(150%);
    transition: transform 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.notification.success {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
}

.notification.error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
}

.notification.show {
    transform: translateX(0);
}

@media (max-width: 480px) {
    .notification {
        top: auto;
        bottom: 20px;
        left: 20px;
        right: 20px;
        text-align: center;
    }
} 