:root {
    --brand-blue: #3498db;
    --brand-red: #ea2158;
}

.legal-link {
    color: var(--brand-blue);
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}

.legal-divider {
    border: 0;
    border-top: 1px dashed rgba(255,255,255,0.1);
    margin: 15px 0;
}

.otp-input {
    text-align: center;
    letter-spacing: 10px;
    font-size: 1.5rem !important;
    font-weight: bold;
}

/* Modal Özel */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-card {
    background: #1a1a1a;
    border: 2px solid var(--brand-blue);
    border-radius: 15px;
    width: 100%;
    max-width: 500px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.modal-header {
    background: var(--brand-blue);
    color: white;
    padding: 15px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
}

.modal-content {
    padding: 20px;
    overflow-y: auto;
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
}

.modal-footer {
    padding: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.btn-modal {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    background: var(--brand-blue);
    color: white;
}

.btn-modal.disabled {
    background: #444;
    color: #888;
    cursor: not-allowed;
}

.hidden { display: none !important; }

/* Logo ve Başlık Alanını Ortala */
.logo-area {
    display: flex;
    flex-direction: column;
    align-items: center; /* Yatayda ortala */
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
}

.logo-img {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
}

/* Adım bazlı gösterim için */
.step-area { display: none; }
.step-area.active-step { display: block; }

/* Form elemanlarını daha düzgün hizala */
.input-group label {
    display: block;
    text-align: left;
    margin-left: 5px;
}

.legal-section {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 12px;
    margin-top: 10px;
}

/* LOGO VE BAŞLIKLARI ZORLA ORTALA */
.logo-area {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 35px !important;
}

.logo-img {
    display: block !important;
    margin: 0 auto 15px auto !important;
    width: 180px !important; /* Logoyu biraz daha heybetli yapalım */
    height: auto !important;
}

.main-title, .sub-title {
    width: 100% !important;
    text-align: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Telefon giriş alanı için şık bir font ayarı */
#inpTel {
    letter-spacing: 1px;
    font-weight: 600;
}

/* Checkbox Hizalama ve Tasarım Düzeltmesi */
.checkbox-wrapper {
    display: flex !important;
    align-items: flex-start !important; 
    gap: 12px !important;
    margin-bottom: 15px !important;
    text-align: left !important;
}

.checkbox-wrapper input[type="checkbox"] {
    margin: 3px 0 0 0 !important;
    width: 22px !important;
    height: 22px !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    accent-color: var(--brand-red) !important; /* Tıklanınca kırmızı olsun */
}

.checkbox-wrapper label {
    margin: 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    cursor: pointer !important;
    color: #2c3e50 !important; /* AÇIK GRİ YERİNE KOYU LACİVERT/SİYAH */
    font-weight: 500 !important;
}

/* Yasal Metin Alanını Vurgula */
.legal-section {
    background: #f8f9fa !important; /* Beyaz kartın üstünde hafif gri alan */
    padding: 20px !important;
    border-radius: 12px !important;
    margin-top: 15px !important;
    border: 1px solid #e0e0e0 !important;
}

.legal-divider {
    border-top: 1px solid #d1d8dd !important; /* Kesik çizgi yerine net ayırıcı */
    margin: 15px 0 !important;
}