﻿/* ================================
   0) Root Değerleri ve Temeller
   ================================ */
:root {
    --bg-grad-1: #E8453C;
    --bg-grad-2: #F68A48;
    --card-bg: #ffffff;
    --text: #202124;
    --muted: #697386;
    --accent: #FF6B5A;
    --accent-2: #FF9866;
    --border: #E6E8EC;
    --radius-xl: 24px;
    --radius-md: 12px;
    --shadow: 0 18px 40px rgba(0,0,0,.18);
    --Extra-Dark: #363636 ;
    --Extra-Gray:#949494;

}

/* Varsayılan metin */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    /* Gradyan + görsel birlikte (görsel üstte olsun istiyorsan sıralamayı değiştir) */
   
}

.bg1 {
    color: var(--text);
    background: radial-gradient(1200px 600px at 70% 0%, rgba(255,255,255,.08), transparent 60%), linear-gradient(135deg, var(--bg-grad-1), var(--bg-grad-2));
    background-image: url('../../Content/img/BG-orange.svg');
}

.bg2 {
    color: var(--text);
    background: radial-gradient(1200px 600px at 70% 0%, var(--Extra-Dark, #363636), transparent 60%), linear-gradient(135deg, var(--Extra-Dark), var(--Extra-Dark));
    background-image: url('../../Content/img/BG-gray.svg');
}

/* Başlıklar */
.page-title, h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}

/* Numerik alanlar */
input[type="tel"],
input[inputmode="numeric"],
#tcno, #gsm, #captcha {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.2px;
}

/* Genel input/select (oval) */
input, select {
    width: 100%;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 999px; /* FULL OVAL */
    font-size: 14px;
    color: var(--text);
    outline: none;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}

    input::placeholder {
        color: #B8BFCC;
    }

    input:focus, select:focus {
        border-color: #FF8A65;
        box-shadow: 0 0 0 3px rgba(255,138,101,.2);
    }

/* Sayfa sarmalayıcı */
.page-wrap {
    max-width: 920px;
    margin: 0 auto;
    padding: 70px 16px 40px;
}

/* ================================
   1) Header / Marka
   ================================ */
.brand-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.page-title {
    color: #fff;
    font-weight: 800;
    letter-spacing: .2px;
    font-size: clamp(20px,3.2vw,32px);
    margin: 0 0 12px 0; /* üst başlık ile diğer kartların arası */
}

.brand-logo {
    width: 160px;
    height: 48px;
    flex-shrink: 0;
    aspect-ratio: 10 / 3;
}

/* ================================
   2) Kartlar ve Formlar
   ================================ */
.card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    padding: 28px;
}

    .card + .card {
        margin-top: 16px;
    }

.card-form {
    padding: 40px;
    border-radius: 24px;
}

/* Checkbox alanı */
.card-agreements {
    background: #fff;
    border-radius: 24px;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0;
    margin: 0;
}

 
  
    .checkbox-item span,
    .checkbox-item a {
        font-family: 'Montserrat', sans-serif;
    }

    .checkbox-item span {
        font-size: 14px;
        line-height: 1.4;
        color: #6A6A69;
        display: block;
        flex: 1;
        word-break: break-word;
    }

    .checkbox-item a {
        color: #F05A28;
        font-weight: 600;
        text-decoration: none;
    }

        .checkbox-item a:hover {
            text-decoration: underline;
        }

/* Form grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        font-size: 18px;
        color: #6A6A69;
        margin-bottom: 8px;
    }

/* Captcha */
.captcha-row {
    display: flex;
    /*align-items: center;*/
    gap: 12px;
}

.captcha-img {
    height: 46px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #f3f4f6;
}

/* ================================
   3) Soru Ekranı: Top Bar (Timer + Joker)
   ================================ */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

/* Timer */
.timer-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    margin-right: 20px; /* jokerlerden ayrıştır */
}

.timer-icon {
    font-size: 20px;
    color: #424A5D;
}

.timer-bar {
    flex: 1;
    height: 6px;
    background: #E6E8EC;
    border-radius: 999px;
    overflow: hidden;
    position: relative;
    min-width: 140px;
}

#timer-fill {
    height: 100%;
    width: 0%;
    background: #F05A28;
    border-radius: 999px;
    transition: width linear;
}

#timer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #424A5D;
    min-width: 48px;
    text-align: right;
}

/* Jokerler */
.joker-bar { /* container, gerekirse sağa hizalama için boş bırakıldı */
}

.joker-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.joker-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #F05A28;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: default;
}

    .joker-circle.passive {
        opacity: .25;
    }

.joker-img {
    width: 26px;
    height: 20px;
    object-fit: contain;
}

.joker-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #F05A28;
    margin-top: -2px;
}

/* ================================
   4) Soru Kartı + Seçenekler
   ================================ */
.question-card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05), 0 18px 28px rgba(0, 0, 0, 0.04), 0 35px 45px rgba(0, 0, 0, 0.035), 0 55px 65px rgba(0, 0, 0, 0.03);
}
.card.question-card {
    overflow: visible !important;
    isolation: unset !important;
}

.question-text {
    color: #333;
}

.choices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    margin-top: 20px;
}

.choice-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 12px 20px;
    border: 1px solid #E6E8EC;
    border-radius: 999px;
    background: #FFFFFF;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #424A5D;
    transition: border-color .25s ease, color .25s ease;
}

    .choice-box input {
        display: none;
    }

    .choice-box:hover {
        border-color: #FF8A65;
    }

    /* Seçili şık */
    .choice-box:has(input:checked),
    .choice-box input:checked + span,
    .choice-box input:checked ~ span {
        color: #F05A28;
        border-color: #F05A28;
        font-weight: 700;
    }

/* ================================
   5) Alt Aksiyonlar
   ================================ */
.submit-wrap {
    margin-top: 45px; /* kart/cta arası */
    padding: 10px 6px 0;
    border-radius: 40px;
}

.btn-submit {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    color: #F74100;
    font-weight: 700;
    font-size: 24px;
    background: rgba(255, 255, 255, 0.80);
    /* --- HALKA EFEKTİ (ilk görselin aynısı) --- */
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25), 0 0 0 6px rgba(255, 255, 255, 0.15), 0 0 0 10px rgba(255, 255, 255, 0.08), 0 0 20px rgba(255, 255, 255, 0.05);
    transition: all 0.25s ease;
}

    .btn-submit:hover {
        filter: brightness(1.03);
        background: rgba(255,255,255,255);
    }

    .btn-submit:active {
        transform: translateY(1px);
        box-shadow: 0 6px 16px rgba(240,90,40,.3);
    }

.btn-text {
    color: #F74100;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Telif */
.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.56);
    opacity: .9;
    margin-top: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    z-index: 50;
    pointer-events: none;
}

/* ================================
   6) Sorgu / Kayıt / Welcome Ekranları
   ================================ */
/* Başvuru Sorgulama */
.inquiry-card {
    padding: 32px 28px;
    border-radius: 24px;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
}

.inq-full {
    grid-column: 1 / -1;
}

.inquiry-card .form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #4F4F4F;
    margin-bottom: 8px;
}

.inquiry-card .input {
    height: 44px;
    border-radius: 999px;
    border: 1px solid #C9CED6;
    padding: 0 16px;
    font-size: 15px;
    color: #344054;
}

    .inquiry-card .input::placeholder {
        color: #99A3B3;
    }

/* Kayıtlar (Tablo) */
.records-card {
    padding: 24px 20px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

.records-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

    .records-scroll .records-table {
        min-width: 720px;
    }

.records-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

    .records-table .row {
        display: grid;
        grid-template-columns: 150px /* Yarışma Tarihi */
        150px /* Kod Durumu */
        100px /* Puan */
        90px /* Kod */
        150px /* Kod Tarihi */
        1fr; /* Durum Bilgisi */
        align-items: center;
        gap: 0;
        padding: 10px 10px;
        border-bottom: 1px solid #EEEFF2;
        background: #fff;
        min-width: 0;
        font-size: 13px;
        line-height: 1.35;
    }

        .records-table .row.header {
            font-weight: 600;
            color: #3D3D3D;
            background: #F7F8FA;
            border-bottom: 2px solid #E6E9EF;
        }

        .records-table .row > div {
            min-width: 0;
            overflow-wrap: break-word;
            word-break: break-word;
        }

.status {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
}

    .status.active {
        background: #FF4E3A;
    }

    .status.passive {
        background: #9D9D9D;
    }

/* Welcome */
.welcome-card {
    padding: 48px 40px;
    text-align: center;
}

.hello {
    font-size: 18px;
    color: #6A6A69;
    margin: 0 0 6px;
}

.username {
    font-size: 28px;
    font-weight: 700;
    color: #FF8A3D;
    margin-bottom: 24px;
    background: var(--Gradient, linear-gradient(90deg, #F78E1E 0%, #E31937 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

    .username span {
        color: #D73B32;
    }

.section-title {
    font-size: 16px;
    color: #6A6A69;
    font-weight: 600;
    margin-bottom: 12px;
}
/* Tema rengi için değişken (isteğe bağlı) */
:root {
    --accent: #FF6B5A;
}

/* Adım satırı hizalama */
.steps-line {
    display: flex;
    align-items: center; /* dikey hizalamayı netleştirir */
    justify-content: center;
    gap: 0;
    color: var(--accent);
    /* font normalleştir (sub-pixel sapmaları azaltır) */
    font-size: 14px;
    line-height: 1;
    margin-bottom: 30px;
}

/* Daire: kesin yuvarlak ve esneme yok */
.step {
    --size: 32px;
    inline-size: var(--size); /* width */
    block-size: var(--size); /* height */
    aspect-ratio: 1 / 1; /* “tam kare” garanti */
    border-radius: 50%;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
    /* İçerik hizası */
    display: grid;
    place-items: center;
    /* Esneme ve box model kontrol */
    flex: 0 0 auto; /* flex içinde sıkışıp/uzamasın */
    box-sizing: border-box; /* 32px içine border dahil */
    background: #fff;
    vertical-align: middle; /* satır içi hizayı düzeltir */
}

    /* sayısal step aktif (dolgu turuncu) */
    .step.active {
        background: var(--accent);
        color: #fff;
        border: none;
    }

 

    /* hediye ikon ölçüsü ve hizası */
    .step .gift-icon {
        width: 18px;
        height: 18px;
        display: block;
        filter: brightness(0) invert(1);
    }



/* Küçük ekran ayarı */
@media (max-width: 720px) {
    .dot-connector {
        width: 36px;
        background-size: 5px 2px;
        margin: 0 4px;
    }
}


/* Linkler */
.rules-link {
    font-size: 16px;
    font-weight: 600;
    color: #F05A28;
    text-decoration: none;
}

    .rules-link:hover {
        text-decoration: underline;
    }

/* Çift buton */
.dual-buttons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
}

.start-btn {
    background: #fff;
    color: #F74100;
    font-weight: 700;
}

/* ================================
   7) SMS Doğrulama (kullanıyorsan)
   ================================ */
.sms-info {
    font-size: 14px;
    font-weight: 500;
    color: #4F4F4F;
    margin-bottom: 12px;
}

.sms-timer {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.sms-input {
    height: 46px;
    border-radius: 999px;
    text-align: center;
    font-size: 20px;
    letter-spacing: 6px;
}

.error-msg {
    color: #b00020;
    margin-top: 8px;
}

/* ================================
   8) Responsive
   ================================ */
@media (max-width: 768px) {
    /* Records: mobile kart formatı */
    .records-table .row,
    .records-table .row.header {
        grid-template-columns: 1fr;
        padding: 10px 12px;
    }

        .records-table .row.header {
            display: none;
        }

    .records-table .row {
        gap: 6px;
        border: 1px solid #ECEFF3;
        border-radius: 12px;
        margin-bottom: 10px;
    }

        .records-table .row > div {
            display: flex;
            gap: 8px;
        }

            .records-table .row > div:nth-child(1)::before {
                content: "Yarışma Tarihi ve Saati:";
                font-weight: 600;
                color: #3D3D3D;
            }

            .records-table .row > div:nth-child(2)::before {
                content: "Kod Geçerlilik Durumu:";
                font-weight: 600;
                color: #3D3D3D;
            }

            .records-table .row > div:nth-child(3)::before {
                content: "Kazanılan Puan:";
                font-weight: 600;
                color: #3D3D3D;
            }

            .records-table .row > div:nth-child(4)::before {
                content: "Kod:";
                font-weight: 600;
                color: #3D3D3D;
            }

            .records-table .row > div:nth-child(5)::before {
                content: "Kod Geçerlilik Tarihi:";
                font-weight: 600;
                color: #3D3D3D;
            }

            .records-table .row > div:nth-child(6)::before {
                content: "Durum Bilgisi:";
                font-weight: 600;
                color: #3D3D3D;
            }

            .records-table .row > div::before {
                flex: 0 0 180px;
            }
}

@media (max-width: 720px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .brand-header {
        gap: 12px;
    }

    .brand-logo {
        height: 24px;
    }

    .card {
        padding: 20px;
    }
}


/* Yanlış cevap ekranı ikon */
.wrong-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 16px;
}
.color333 {
    color: #333
}
.colorgray {
    color: #949494;
}
.colordark {
    color: #6A6A69;
}

.wrong-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #F05A28;
    position: relative;
}

    /* İçine küçük beyaz çizgi (yanlış işareti) */
    .wrong-icon::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 26px;
        height: 6px;
        background: white;
        border-radius: 6px;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .wrong-icon::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 26px;
        height: 6px;
        background: white;
        border-radius: 6px;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

.wrong-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-top: 8px;
}

.wrong-subtitle {
    text-align: center;
    font-size: 18px;
    color: #333;
    margin-top: 6px;
}

/* Sağ üst aksiyonlar (mute, fullscreen) */
.right-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.8);
    background: transparent;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, opacity .2s ease;
}

    .action-btn:hover {
        background: rgba(255,255,255,0.12);
    }

/* Welcome kartında genel hizalama */
.welcome-card {
    text-align: center; /* başlık ve alt metinler ortalansın */
}

    /* Joker bölümünü dikey yığ, ortala */
    .welcome-card .joker-section {
        display: flex;
        flex-direction: column;
        align-items: center; /* içeriği yatayda ortala */
        gap: 10px; /* başlık ile ikonlar arası */
    }

    /* Joker bar genişlik alsın ama içerik ortalansın */
    .welcome-card .joker-bar {
        width: 100%;
    }

    /* Asıl ortalama: satırı ortala */
    .welcome-card .joker-row {
        display: flex;
        justify-content: center; /* ikonları yatayda ortala */
        align-items: center;
        gap: 16px; /* ikonlar arası boşluk */
        flex-wrap: wrap; /* küçük ekranda taşmasın */
        margin: 0 auto; /* if needed */
        max-width: 360px; /* isteğe bağlı, satırı daraltır */
        margin-bottom: 25px;
    }

    /* Joker item’ların dış boşluğu varsa sıfırla (bazı HTML’lerde etkiler) */
    .welcome-card .joker-item {
        margin: 0;
    }

    /* Dairelerin eşit görünmesi ve dikeyde başlık altına yakın durması */
    .welcome-card .joker-circle {
        border-width: 3px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

/* Mobilde spacing biraz daha sıkı olsun */
@media (max-width: 720px) {
    .welcome-card .joker-row {
        gap: 12px;
        max-width: 300px;
    }
}







/* Adım satırı hizalama */
.steps-line2 {
    display: flex;
    align-items: center; /* dikey hizalamayı netleştirir */
    justify-content: center;
    gap: 0;
    color: #fff;
    /* font normalleştir (sub-pixel sapmaları azaltır) */
    font-size: 14px;
    line-height: 1;
    margin-bottom: 30px;
}

/* Daire: kesin yuvarlak ve esneme yok */
.step2 {
    --size: 35px;
    inline-size: var(--size); /* width */
    block-size: var(--size); /* height */
    aspect-ratio: 1 / 1; /* “tam kare” garanti */
    border-radius: 50%;
    border: 2px solid #fff;
    color: var(--accent);
    font-weight: 600;
    /* İçerik hizası */
    display: grid;
    place-items: center;
    /* Esneme ve box model kontrol */
    flex: 0 0 auto; /* flex içinde sıkışıp/uzamasın */
    box-sizing: border-box; /* 32px içine border dahil */
    background: #fff;
    vertical-align: middle; /* satır içi hizayı düzeltir */
}

    /* sayısal step aktif (dolgu turuncu) */
    .step2.active {
        background: #fff;
        color: #fff;
        border: none;
    }

 

    /* hediye ikon ölçüsü ve hizası */
    .step2 .gift-icon {
        width: 18px;
        height: 18px;
        display: block;
    }

/* --- Noktalı çizgi (connector) --- */
.dot-connector2 {
    display: inline-block;
    height: 2px;
    width: 30px;
    margin: 0;
    opacity: 1; /* görünürlük artırıldı */
    /* Noktaları tamamen BEYAZ yapıyoruz */
    background-image: radial-gradient(#ffffff 2px, transparent 2px);
    background-size: 8px 2px; /* nokta aralığı (isteğe göre 6px de olabilir) */
    background-repeat: repeat-x;
    background-position: left center;
    vertical-align: middle;
    transform: translateY(-1px);
}


    /* --- AKTİF ADIMA KADAR: DÜZ ÇİZGİ --- */
    .dot-connector2.solid {
        background-image: none !important;
        background-color: #ffffff; /* düz çizgi rengi */
    }

/* Küçük ekran ayarı */
@media (max-width: 720px) {
    .dot-connector2 {
        width: 36px;
        background-size: 5px 2px;
        margin: 0 4px;
    }
}



.activestep {
    display: flex;
    width: 64px;
    height: 64px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    font-size: 32px;
    font-family: 'Montserrat', sans-serif;
}




/* FORM INPUTLARINA ÖZEL SINIF */
.form-input-left {
    padding-left: 16px !important;
    padding-right: 16px !important;
}


.sms-input {
    height: 56px;
    border-radius: 999px;
    border: 1px solid #E6E8EC;
    font-size: 22px;
    text-align: center;
    letter-spacing: 10px;
    font-weight: 600;
}
.timer {
    margin-top: 10px;
    font-size: 14px;
    color: #6A6A69;
    font-weight: 600;
}


.dot-connector {
    display: inline-block;
    height: 2px;
    width: 30px; /* gerekirse 24–56px arası projeye göre */
    margin: 0; /* daireye değsin */
    vertical-align: middle;
    transform: translateY(-1px);
    background-repeat: repeat-x;
    background-position: left center;
    background-size: 7px 2px; /* nokta aralığı */
    opacity: 1;
}

/* Noktalı görünüm */
.dot-connector--dotted {
    /* renk parent’tan gelmez; sabit renk veriyoruz ki kaybolmasın */
    background-image: radial-gradient(#C8C8C8 2px, transparent 2px);
}

/* Turuncu noktalı */
.steps-line--brand .dot-connector--dotted {
    background-image: radial-gradient(#FF6B5A 2px, transparent 2px);
}
/* --- DOT CONNECTOR (WELCOME EKRANI) --- */
.steps-line .dot-connector {
    display: inline-block;
    height: 2px;
    width: 30px;
    margin: 0;
    vertical-align: middle;
    transform: translateY(-1px);
    /* gri nokta */
    background-image: radial-gradient(#FF6B5A 2px, transparent 2px);
    background-repeat: repeat-x;
    background-position: left center;
    background-size: 7px 2px;
}

.textleft{
    text-align:left;
    margin-left:25px;
}
.flex{
    display:flex;
}
.top-50{
    margin-top:50px;
}
/*.transparent-btn {
    background-color: transparent; 
    color: white; 
   
}*/



.transparent-btn {
    background-color: transparent;
    width: 50%;
    padding: 16px 20px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    /* --- HALKA EFEKTİ (ilk görselin aynısı) --- */
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25), 0 0 0 6px rgba(255, 255, 255, 0.15), 0 0 0 10px rgba(255, 255, 255, 0.08), 0 0 20px rgba(255, 255, 255, 0.05);
    transition: all 0.25s ease;
    font-family: 'Montserrat', sans-serif;
}

    .transparent-btn:hover {
        filter: brightness(1.03);
        background: rgba(255,255,255,255);
        color:#F74100;
    }

.transparent-btn:active {
    transform: translateY(1px);
    box-shadow: 0 6px 16px rgba(240,90,40,.3);
}

/* Joker container */
.joker-bar {
    display: flex;
    justify-content: flex-end;
}

/* Joker item */
.joker-item {
    margin-left: 8px;
}

/* Normal görünüm */
.joker-btn {
    background: #ffffff;
    border: 2px solid #FF5A3C; /* turuncu/kırmızı çerçeve */
    border-radius: 50%;
    color: #FF5A3C;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
    font-weight: 600;
}

    /* Kullanıldı veya o soruda joker tüketildi -> gri ve tıklanamaz */
    .joker-btn.joker-used,
    .joker-btn:disabled {
        border-color: #F05A28 !important;
        background: #f6f6f6 !important;
        color: #bfbfbf !important;
        opacity: 0.6;
        cursor: not-allowed;
    }

    /* İçteki metin */
    .joker-btn .joker-text {
        font-size: 12px;
        line-height: 1;
    }


/* Kalıcı disable (yarışma boyunca sadece 1 kez) */
.joker-global-used {
   
    opacity: 0.5;
    background: #ddd !important;
    border-color: #ccc !important;
    cursor: not-allowed;
}

/* Geçici disable (o soruda joker kullandığında) */
.joker-temporary-disable {
    opacity: 0.5;
    background: #f5f5f5 !important;
    border-color: #e5e5e5 !important;
}

/* === TIMER (transform tabanlı, çakışmasız) === */
.timer-bar {
    position: relative;
    height: 6px;
    background: #E6E8EC;
    border-radius: 999px;
    overflow: hidden;
}

/* width/transition vs. tüm eski kuralları override ediyoruz */
#timer-fill,
.timer-fill {
    position: absolute !important;
    inset: 0 !important; /* top/right/bottom/left = 0 */
    background: #f58220 !important;
    transform-origin: left center !important;
    transform: scaleX(1) !important;
    width: 100% !important; /* layout sabit */
    transition: none !important; /* width transition'ı devre dışı */
    animation: none !important; /* eski keyframes iptal */
}

/* İkonların kapsayıcı dairede güzel görünmesi için */
.step2 {
    /* mevcut stillerin… */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .step2 .step-icon,
    .step2 .gift-icon {
        width: 16px; /* tasarıma göre 14–18px aralığında deneyebilirsin */
        height: 16px;
        display: block;
    }

/* Geçilen adımlar için zaten .done sınıfın var; dot-connector2.solid ile tutarlı */
.dot-connector2.solid {
    opacity: 1; /* varsa çizgiyi belirginleştir */
}


/* Varsayılan checkbox'ı gizle */
.checkbox-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #A6A6A6;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    position: relative;
    margin-right: 12px; /* metinle hizalama */
    flex-shrink: 0;
}

/* CHECKED görünümü */
.checkbox-item input[type="checkbox"]:checked {
    background: #fff; /* beyaz, senin istediğin gibi */
    border-color: #A6A6A6;
}

/* Tik işareti — gri */
.checkbox-item input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 6px;
    width: 6px;
    height: 12px;
    border: solid #6A6A6A;          /* gri tik */
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


.field-validation-error {
    color: #F74100 !important;
    font-size: 13px;
    margin-top: 4px;
    display: block;
}
.colorOrange {
    color: #F05A28;
}