/* Bahsegel – Temel Sıfırlama ve Değerler */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bah-ana-renk: #f0f5f8;       /* header & footer arka plan */
    --bah-govde-arka: #f0f5f8;     /* genel sayfa zemin */
    --bah-kutu-arka: #ffffff;      /* içerik kartları / body bloklar */
    --bah-vurgu: #faa11c;          /* ana vurgu rengi (linkler, butonlar) */
    --bah-vurgu-ikincil: #07badb;  /* ek vurgu */
    --bah-metin-ana: #08121f;
    --bah-metin-ikincil: rgba(8, 18, 31, 0.75);
    --bah-cizgi-acik: rgba(8, 18, 31, 0.06);
    --bah-golge-kutu: 0 10px 30px rgba(8, 18, 31, 0.08);
    --bah-golge-koyu: 0 16px 45px rgba(8, 18, 31, 0.14);
}

.bah-govde {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--bah-metin-ana);
    background-color: var(--bah-govde-arka);
    overflow-x: hidden;
}

.bah-kapsayici {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Üst Kısım (Mobile‑first) */
.bah-ust-alan {
    background-color: var(--bah-ana-renk);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(8, 18, 31, 0.12);
}

.bah-ust-icerik {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.bah-logo-bolumu {
    flex-shrink: 0;
}

.bah-logo-baglantisi {
    display: inline-block;
}

.bah-logo-gorsel {
    height: 40px;
    width: auto;
    display: block;
}

/* Mobil Menü Düğmesi */
.bah-menu-anahtari {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.bah-menu-anahtari span {
    width: 24px;
    height: 3px;
    background-color: var(--bah-metin-ana);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.bah-menu-anahtari.bah-aktif span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.bah-menu-anahtari.bah-aktif span:nth-child(2) {
    opacity: 0;
}

.bah-menu-anahtari.bah-aktif span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Üst Menü (mobilde gizli) */
.bah-ust-gezinti {
    display: none;
}

.bah-ust-liste {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.bah-ust-link {
    color: var(--bah-metin-ikincil);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.bah-ust-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--bah-vurgu), var(--bah-vurgu-ikincil));
    transition: width 0.3s ease;
}

.bah-ust-link:hover {
    color: var(--bah-vurgu);
}

.bah-ust-link:hover::after {
    width: 100%;
}

/* Üst Butonlar */
.bah-ust-butonlar {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.bah-buton {
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: all 0.25s ease;
}

.bah-buton-birincil {
    background: linear-gradient(135deg, var(--bah-vurgu), var(--bah-vurgu-ikincil));
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(250, 161, 28, 0.4);
}

.bah-buton-birincil:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(250, 161, 28, 0.6);
}

.bah-buton-ikincil {
    background-color: transparent;
    color: var(--bah-metin-ana);
    border: 1px solid rgba(8, 18, 31, 0.2);
}

.bah-buton-ikincil:hover {
    border-color: var(--bah-vurgu);
    color: var(--bah-vurgu);
}

/* Mobil Navigasyon */
.bah-mobil-gezinti {
    display: none;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--bah-cizgi-acik);
}

.bah-mobil-gezinti.bah-aktif {
    display: block;
}

.bah-mobil-liste {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bah-mobil-link {
    color: var(--bah-metin-ikincil);
    text-decoration: none;
    padding: 0.8rem;
    display: block;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.bah-mobil-link:hover {
    background-color: rgba(7, 186, 219, 0.08);
    color: var(--bah-vurgu);
}

/* Kahraman Bölümü */
.bah-ana-icerik {
    padding: 0 0 3rem;
}

.bah-baslik-alani {
    position: relative;
    padding: 3rem 0 3.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 0;
}

.bah-baslik-arkaplan {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bah-baslik-daire {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(7, 186, 219, 0.18) 0%, transparent 70%);
    animation: bah-yuzme 20s infinite ease-in-out;
}

.bah-baslik-daire-1 {
    width: 280px;
    height: 280px;
    top: -80px;
    right: -60px;
    animation-delay: 0s;
}

.bah-baslik-daire-2 {
    width: 220px;
    height: 220px;
    bottom: -60px;
    left: -40px;
    animation-delay: 7s;
}

.bah-baslik-daire-3 {
    width: 200px;
    height: 200px;
    top: 55%;
    left: 60%;
    animation-delay: 14s;
}

@keyframes bah-yuzme {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -20px) scale(1.05);
    }
    66% {
        transform: translate(-16px, 16px) scale(0.95);
    }
}

.bah-baslik-sarmal {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.bah-baslik-sol {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.bah-baslik-baslik {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    color: var(--bah-metin-ana);
}

.bah-baslik-satir {
    color: var(--bah-metin-ana);
}

.bah-baslik-vurgu {
    color: var(--bah-vurgu);
    font-size: 0.9em;
}

.bah-baslik-aciklama {
    font-size: 1rem;
    color: var(--bah-metin-ikincil);
    margin-bottom: 2rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.bah-baslik-istatistikler {
    display: flex;
    justify-content: center;
    gap: 1.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.bah-baslik-oge {
    text-align: center;
}

.bah-istat-sayi {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--bah-vurgu);
}

.bah-istat-metin {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bah-metin-ikincil);
}

.bah-baslik-eylem {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
}

.bah-buton-baslik-birincil,
.bah-buton-baslik-ikincil {
    padding: 1rem 2.2rem;
    font-size: 1.02rem;
    border-radius: 999px;
}

.bah-buton-baslik-birincil {
    background: radial-gradient(circle at 0 0, rgba(255,255,255,0.18), transparent 55%),
                linear-gradient(135deg, var(--bah-vurgu), var(--bah-vurgu-ikincil));
    box-shadow: 0 14px 34px rgba(8, 18, 31, 0.25);
    color: #ffffff;
}

.bah-buton-baslik-birincil:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(8, 18, 31, 0.32);
}

.bah-buton-baslik-ikincil {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(7, 186, 219, 0.55);
    color: var(--bah-metin-ana);
    box-shadow: 0 8px 24px rgba(7, 186, 219, 0.18);
}

.bah-buton-baslik-ikincil:hover {
    border-color: var(--bah-vurgu);
    color: var(--bah-vurgu);
    background-color: #ffffff;
}

/* Bölüm Başlıkları */
.bah-bolum-baslik {
    text-align: center;
    margin: 3rem 0 2rem;
}

.bah-bolum-baslik-metin {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--bah-metin-ana);
    margin-bottom: 0.75rem;
}

.bah-bolum-ayirici {
    width: 80px;
    height: 4px;
    margin: 0 auto;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--bah-vurgu), var(--bah-vurgu-ikincil));
    box-shadow: 0 0 0 1px rgba(8, 18, 31, 0.02);
}

/* Hakkında Alanı */
.bah-hakkinda-alani {
    margin-bottom: 4rem;
}

/* Giriş Kartı */
.bah-giris-karti {
    background: var(--bah-kutu-arka);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--bah-golge-kutu);
    border: 1px solid var(--bah-cizgi-acik);
}

.bah-giris-baslik {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bah-metin-ana);
    margin-bottom: 1rem;
    text-align: center;
}

.bah-giris-metin {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--bah-metin-ikincil);
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}

.bah-marka-ismi {
    color: var(--bah-vurgu);
    font-weight: 700;
}

/* Özellik Kartları */
.bah-ozellik-izgara {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.bah-ozellik-karti {
    background-color: var(--bah-kutu-arka);
    border-radius: 16px;
    padding: 1.75rem 1.5rem 1.8rem;
    text-align: center;
    box-shadow: var(--bah-golge-kutu);
    border: 1px solid var(--bah-cizgi-acik);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bah-ozellik-karti:hover {
    transform: translateY(-4px);
    box-shadow: var(--bah-golge-koyu);
    border-color: rgba(250, 161, 28, 0.45);
}

.bah-ozellik-simge {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.bah-ozellik-gorsel {
    max-width: 260px;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.bah-ozellik-baslik {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--bah-metin-ana);
}

.bah-ozellik-metin {
    color: var(--bah-metin-ikincil);
    font-size: 0.96rem;
}

.bah-ozellik-eylem {
    margin-top: 1.5rem;
}

.bah-ozellik-buton {
    min-width: 180px;
}

/* Bonus Tablosu */
.bah-tablo-karti {
    background-color: var(--bah-kutu-arka);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--bah-golge-kutu);
    border: 1px solid var(--bah-cizgi-acik);
}

.bah-tablo-baslik {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--bah-metin-ana);
    margin-bottom: 1.5rem;
    text-align: center;
}

.bah-tablo-sarmal {
    overflow-x: auto;
    border-radius: 10px;
}

.bah-bilgi-tablosu {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
}

.bah-bilgi-tablosu thead {
    background: linear-gradient(135deg, rgba(250, 161, 28, 0.12), rgba(7, 186, 219, 0.08));
}

.bah-bilgi-tablosu th {
    padding: 0.9rem;
    text-align: left;
    font-weight: 600;
    color: var(--bah-metin-ana);
    font-size: 0.9rem;
    border-bottom: 2px solid rgba(8, 18, 31, 0.08);
}

.bah-bilgi-tablosu td {
    padding: 0.85rem;
    color: var(--bah-metin-ikincil);
    border-bottom: 1px solid rgba(8, 18, 31, 0.06);
    font-size: 0.9rem;
}

.bah-bilgi-tablosu tbody tr:hover {
    background-color: rgba(7, 186, 219, 0.03);
}

/* CTA Buton Alanı */
.bah-cta-alani {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0 0 2.5rem;
    align-items: stretch;
}

.bah-cta-birincil,
.bah-cta-ikincil {
    padding: 0.9rem 1.4rem;
    font-size: 1rem;
    border-radius: 999px;
    font-weight: 700;
}

.bah-cta-ikincil {
    background-color: transparent;
    border: 1px solid rgba(8, 18, 31, 0.16);
    color: var(--bah-metin-ana);
}

.bah-cta-ikincil:hover {
    border-color: var(--bah-vurgu);
    color: var(--bah-vurgu);
    background-color: rgba(250, 161, 28, 0.05);
}

/* Ödeme Kartı */
.bah-odeme-karti {
    background-color: var(--bah-kutu-arka);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--bah-golge-kutu);
    border: 1px solid var(--bah-cizgi-acik);
}

.bah-odeme-baslik {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    text-align: center;
}

.bah-odeme-izgara {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.bah-odeme-oge {
    background-color: #f8fbff;
    border-radius: 14px;
    padding: 1.1rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    border: 1px solid rgba(8, 18, 31, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.bah-odeme-oge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(8, 18, 31, 0.14);
    border-color: rgba(7, 186, 219, 0.5);
}

.bah-odeme-simge {
    font-size: 1.9rem;
    flex-shrink: 0;
}

.bah-odeme-bilgi h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.bah-odeme-bilgi p {
    font-size: 0.9rem;
    color: var(--bah-metin-ikincil);
    margin-bottom: 0.1rem;
}

.bah-odeme-sure {
    color: var(--bah-vurgu);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Spor Kartı */
.bah-spor-karti {
    background-color: var(--bah-kutu-arka);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--bah-golge-kutu);
    border: 1px solid var(--bah-cizgi-acik);
}

.bah-spor-baslik {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    text-align: center;
}

.bah-spor-liste {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.bah-spor-oge {
    background-color: #f8fbff;
    border-radius: 12px;
    padding: 1rem 1rem;
    border-left: 4px solid var(--bah-vurgu);
    transition: transform 0.2s ease;
}

.bah-spor-oge:hover {
    transform: translateX(4px);
}

.bah-spor-isim {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
}

.bah-spor-ligler {
    color: var(--bah-metin-ikincil);
    font-size: 0.96rem;
}

/* Casino Kartı */
.bah-casino-karti {
    background-color: var(--bah-kutu-arka);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--bah-golge-kutu);
    border: 1px solid var(--bah-cizgi-acik);
}

.bah-casino-baslik {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    text-align: center;
}

.bah-casino-izgara {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.bah-casino-tur {
    background-color: #f8fbff;
    border-radius: 14px;
    padding: 1.1rem 1rem;
    border: 1px solid rgba(8, 18, 31, 0.06);
}

.bah-casino-baslik-satir {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid rgba(7, 186, 219, 0.3);
}

.bah-oyun-simge {
    font-size: 1.8rem;
}

.bah-casino-baslik-satir h4 {
    font-size: 1.05rem;
    margin: 0;
}

.bah-oyun-liste {
    list-style: none;
}

.bah-oyun-liste li {
    color: var(--bah-metin-ikincil);
    font-size: 0.95rem;
    padding: 0.4rem 0;
    padding-left: 1.4rem;
    position: relative;
}

.bah-oyun-liste li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--bah-vurgu);
    font-weight: 700;
}

/* Güvenlik Kartı */
.bah-guvenlik-karti {
    background-color: var(--bah-kutu-arka);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--bah-golge-kutu);
    border: 1px solid var(--bah-cizgi-acik);
}

.bah-guvenlik-baslik {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    text-align: center;
}

.bah-guvenlik-liste {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.bah-guvenlik-oge {
    display: flex;
    gap: 1rem;
    background-color: #f8fbff;
    border-radius: 14px;
    padding: 1rem 1rem;
    align-items: flex-start;
    border-left: 4px solid var(--bah-vurgu-ikincil);
}

.bah-guvenlik-numara {
    background: linear-gradient(135deg, var(--bah-vurgu-ikincil), var(--bah-vurgu));
    color: #ffffff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.bah-guvenlik-icerik h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.bah-guvenlik-icerik p {
    color: var(--bah-metin-ikincil);
    margin: 0;
}

/* Sorumlu Oyun Kartı */
.bah-sorumlu-karti {
    background-color: var(--bah-kutu-arka);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--bah-golge-kutu);
    border: 1px solid var(--bah-cizgi-acik);
}

.bah-sorumlu-baslik {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    text-align: center;
}

.bah-sorumlu-izgara {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
}

.bah-sorumlu-oge {
    background-color: #f8fbff;
    border-radius: 14px;
    padding: 1rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(8, 18, 31, 0.06);
}

.bah-sorumlu-simge {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.bah-sorumlu-oge p {
    color: var(--bah-metin-ikincil);
    margin: 0;
}

/* SSS Bölümü */
.bah-sss-alani {
    margin-top: 3.5rem;
}

.bah-sss-sarmal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.bah-sss-oge {
    background-color: var(--bah-kutu-arka);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(8, 18, 31, 0.12);
    border: 1px solid var(--bah-cizgi-acik);
    transition: box-shadow 0.2s ease;
}

.bah-sss-oge:hover {
    box-shadow: 0 6px 22px rgba(8, 18, 31, 0.18);
}

.bah-sss-oge-ic {
    display: flex;
    flex-direction: column;
}

.bah-sss-sol {
    width: 100%;
}

.bah-soru-dugmesi {
    width: 100%;
    padding: 1.2rem 1.2rem;
    background-color: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--bah-metin-ana);
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.bah-soru-dugmesi:hover {
    background-color: rgba(7, 186, 219, 0.06);
}

.bah-soru-sembol {
    font-size: 1.5rem;
    color: var(--bah-vurgu);
    font-weight: 300;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.bah-sss-oge-ic.bah-aktif .bah-soru-sembol {
    transform: rotate(45deg);
}

.bah-cevap-kapsayici {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.bah-cevap-kapsayici.bah-aktif {
    max-height: 900px;
}

.bah-cevap-ic {
    padding: 0 1.2rem 1.2rem 1.2rem;
}

.bah-cevap-metin {
    color: var(--bah-metin-ikincil);
    line-height: 1.8;
}

.bah-cevap-metin p {
    margin: 0;
}

/* Alt Kısım */
.bah-alt-alan {
    background: var(--bah-ana-renk);
    margin-top: 3.5rem;
}

.bah-alt-ust {
    padding: 3rem 0 2.5rem;
    border-bottom: 1px solid rgba(8, 18, 31, 0.08);
}

.bah-alt-icerik {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: flex-start;
}

.bah-alt-marka {
    max-width: 520px;
}

.bah-alt-logo {
    margin-bottom: 1rem;
}

.bah-alt-marka-baslik {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--bah-vurgu);
    margin: 0;
    letter-spacing: -0.4px;
}

.bah-alt-marka-aciklama {
    color: var(--bah-metin-ikincil);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.97rem;
}

.bah-alt-rozetler {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.bah-alt-rozet {
    padding: 0.5rem 1.1rem;
    background: linear-gradient(135deg, rgba(250, 161, 28, 0.14), rgba(7, 186, 219, 0.08));
    color: var(--bah-metin-ana);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid rgba(250, 161, 28, 0.65);
}

.bah-alt-rozet-link {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.bah-alt-rozet-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(8, 18, 31, 0.2);
    border-color: var(--bah-vurgu);
}

/* Alt Linkler */
.bah-alt-link-izgara {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.bah-alt-sutun-baslik {
    color: var(--bah-metin-ana);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(250, 161, 28, 0.6);
}

.bah-alt-link-liste {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.bah-alt-link {
    color: var(--bah-metin-ikincil);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    padding: 0.2rem 0;
    position: relative;
    transition: color 0.2s ease, transform 0.2s ease;
}

.bah-alt-link::before {
    content: '→';
    color: var(--bah-vurgu);
    margin-right: 0.4rem;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateX(-4px);
    display: inline-block;
}

.bah-alt-link:hover {
    color: var(--bah-vurgu);
    transform: translateX(4px);
}

.bah-alt-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Alt Alt Kısım */
.bah-alt-alt {
    padding: 1.8rem 0 2rem;
    background-color: rgba(8, 18, 31, 0.02);
}

.bah-alt-alt-icerik {
    text-align: center;
}

.bah-alt-kopya {
    color: var(--bah-metin-ikincil);
    margin-bottom: 0.7rem;
    font-size: 0.86rem;
}

.bah-alt-uyari {
    color: var(--bah-metin-ikincil);
    font-size: 0.82rem;
    line-height: 1.7;
}

.bah-alt-uyari strong {
    color: var(--bah-vurgu);
}

/* Responsive – Mobile‑first yaklaşımla daha geniş ekranlar için kırılımlar */
@media (min-width: 480px) {
    .bah-kapsayici {
        padding: 0 20px;
    }

    .bah-logo-gorsel {
        height: 46px;
    }

    .bah-baslik-baslik {
        font-size: 2.1rem;
    }

    .bah-baslik-eylem {
        flex-direction: row;
        justify-content: center;
    }

    .bah-cta-alani {
        flex-direction: row;
        justify-content: center;
    }

    .bah-cta-birincil,
    .bah-cta-ikincil {
        width: auto;
    }
}

@media (min-width: 768px) {
    .bah-menu-anahtari {
        display: none;
    }

    .bah-ust-gezinti {
        display: flex;
        flex: 1;
        justify-content: center;
    }

    .bah-ust-butonlar {
        display: flex;
    }

    .bah-ust-icerik {
        gap: 1.5rem;
    }

    .bah-logo-gorsel {
        height: 58px;
    }

    .bah-buton {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .bah-baslik-alani {
        padding: 3.5rem 0 4rem;
        min-height: 520px;
    }

    .bah-baslik-baslik {
        font-size: 2.6rem;
    }

    .bah-baslik-istatistikler {
        gap: 2.5rem;
    }

    .bah-istat-sayi {
        font-size: 2.1rem;
    }

    .bah-giris-karti,
    .bah-tablo-karti,
    .bah-odeme-karti,
    .bah-spor-karti,
    .bah-casino-karti,
    .bah-guvenlik-karti,
    .bah-sorumlu-karti {
        padding: 2.25rem 2rem;
    }

    .bah-ozellik-izgara {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bah-odeme-izgara {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bah-casino-izgara {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bah-sorumlu-izgara {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bah-alt-icerik {
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
    }

    .bah-alt-link-izgara {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.5rem;
    }
}

@media (min-width: 992px) {
    .bah-baslik-sarmal {
        grid-template-columns: 1fr;
    }

    .bah-baslik-sol {
        text-align: center;
    }

    .bah-baslik-baslik {
        font-size: 3rem;
    }

    .bah-baslik-aciklama {
        font-size: 1.05rem;
    }

    .bah-istat-sayi {
        font-size: 2.3rem;
    }

    .bah-sss-sarmal {
        gap: 1.2rem;
    }
}

