/* BDMBet Casino — stylesheet */

:root{
    --bg-dark:       #0a1628;
    --bg-deep:       #050b17;
    --bg-panel:      #0f1d35;
    --bg-panel-2:    #152a4a;
    --gold:          #f0c14b;
    --gold-2:        #d4a24c;
    --gold-soft:     #e9b949;
    --gold-dark:     #8a6516;
    --cream:         #f8ecc9;
    --text:          #e8edf5;
    --text-dim:      #aab4c6;
    --line:          rgba(240,193,75,.18);
    --shadow:        0 20px 50px rgba(0,0,0,.45);
    --radius:        14px;
    --radius-lg:     22px;
    --maxw:          1180px;
    --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-head:     'Playfair Display', Georgia, serif;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
    margin:0;
    font-family:var(--font);
    color:var(--text);
    background:
        radial-gradient(1200px 600px at 80% -10%, rgba(240,193,75,.08), transparent 60%),
        radial-gradient(900px 500px at -10% 20%, rgba(212,162,76,.06), transparent 55%),
        var(--bg-deep);
    line-height:1.7;
    font-size:16px;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

img{max-width:100%;display:block;height:auto}
a{color:var(--gold);text-decoration:none;transition:.2s}
a:hover{color:var(--cream)}

.container{max-width:var(--maxw);margin:0 auto;padding:0 20px}

.visually-hidden{
    position:absolute;
    width:1px;height:1px;
    padding:0;margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}

.section-games{
    background:linear-gradient(180deg, transparent, rgba(240,193,75,.03));
}

/* Header */
.site-header{
    position:sticky;top:0;z-index:50;
    background:rgba(10,22,40,.88);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border-bottom:1px solid var(--line);
}
.header-inner{
    display:flex;align-items:center;justify-content:space-between;
    padding:14px 20px;max-width:var(--maxw);margin:0 auto;
    gap:16px;
}
.brand{display:flex;align-items:center;text-decoration:none;transition:filter .2s;flex-shrink:0}
.brand:hover{filter:brightness(1.1) drop-shadow(0 0 10px rgba(240,193,75,.3))}
.brand-logo{
    height:42px;
    width:auto;
    object-fit:contain;
    display:block;
}
.header-cta{
    padding:11px 24px;
    font-size:14px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    flex-shrink:0;
}
.header-cta i{font-size:12px}
.header-cta::after{
    content:"";
    display:inline-block;
    width:8px;height:8px;
    border-radius:50%;
    background:#22c55e;
    margin-left:4px;
    box-shadow:0 0 0 0 rgba(34,197,94,.6);
    animation:pulse-dot 2s infinite;
}
@keyframes pulse-dot{
    0%{box-shadow:0 0 0 0 rgba(34,197,94,.6)}
    70%{box-shadow:0 0 0 8px rgba(34,197,94,0)}
    100%{box-shadow:0 0 0 0 rgba(34,197,94,0)}
}

/* Buttons */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:13px 28px;
    font-weight:700;
    font-size:15px;
    letter-spacing:.5px;
    border-radius:50px;
    text-decoration:none;
    cursor:pointer;
    border:none;
    transition:transform .25s, box-shadow .25s, filter .25s;
    text-transform:uppercase;
    white-space:nowrap;
    font-family:var(--font);
    line-height:1;
}
.btn-primary{
    color:#231400;
    background:linear-gradient(135deg,#f7d878 0%,#f0c14b 40%,#d4a24c 70%,#a87518 100%);
    box-shadow:0 8px 24px rgba(240,193,75,.35), inset 0 1px 0 rgba(255,255,255,.5);
}
.btn-primary:hover{transform:translateY(-2px);filter:brightness(1.08);box-shadow:0 12px 30px rgba(240,193,75,.5)}
.btn-primary:active{transform:translateY(0)}
.btn-ghost{
    color:var(--gold);
    background:transparent;
    border:1.5px solid var(--gold);
    padding:11px 26px;
}
.btn-ghost:hover{background:var(--gold);color:#231400}

/* Hero */
.hero{
    position:relative;
    padding:32px 20px 48px;
    overflow:hidden;
}
.hero-inner{max-width:var(--maxw);margin:0 auto}
.hero-banner{
    position:relative;
    border-radius:var(--radius-lg);
    overflow:hidden;
    box-shadow:var(--shadow), 0 0 0 1px var(--line);
    background:#0a1628;
}
.hero-banner img{
    width:100%;
    height:auto;
    display:block;
    object-fit:contain;
}

.hero-content{
    margin-top:36px;
    text-align:center;
    max-width:860px;
    margin-left:auto;
    margin-right:auto;
}
.hero h1{
    font-family:var(--font-head);
    font-size:clamp(28px,4.2vw,52px);
    line-height:1.18;
    margin:0 0 18px;
    color:#fff;
    letter-spacing:-.5px;
}
.hero h1 .accent{
    background:linear-gradient(135deg,#f7d878,#f0c14b 50%,#b8811f);
    -webkit-background-clip:text;background-clip:text;color:transparent;
}
.hero-sub{
    font-size:clamp(15px,1.6vw,18px);
    color:#c6cfe0;
    max-width:640px;
    margin:0 auto 28px;
    line-height:1.7;
}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap;justify-content:center}

.hero-badges{
    display:flex;flex-wrap:wrap;gap:10px;
    margin-top:26px;
    justify-content:center;
}
.badge{
    display:inline-flex;align-items:center;gap:8px;
    padding:8px 16px;
    border-radius:50px;
    background:rgba(240,193,75,.08);
    border:1px solid var(--line);
    font-size:13px;color:var(--gold);font-weight:600;
    white-space:nowrap;
}
.badge i{font-size:12px}

/* Intro */
.intro{
    max-width:var(--maxw);
    margin:0 auto;padding:20px 20px 0;
}
.intro .article p{
    font-size:17px;
    color:#d8dfee;
    line-height:1.8;
}

/* Sections */
.section{padding:56px 20px}
.section-title{
    font-family:var(--font-head);
    font-size:clamp(26px,3.4vw,38px);
    text-align:center;
    margin:0 0 14px;
    color:#fff;
    line-height:1.2;
}
.section-title .accent{
    background:linear-gradient(135deg,#f7d878,#f0c14b 50%,#b8811f);
    -webkit-background-clip:text;background-clip:text;color:transparent;
}
.section-lead{
    text-align:center;max-width:720px;margin:0 auto 40px;
    color:var(--text-dim);font-size:16px;
}

/* Article */
.article{
    max-width:900px;margin:0 auto;
}
.article p{
    font-size:16.5px;
    color:#d8dfee;
    margin:0 0 22px;
    line-height:1.85;
}
.article p strong{color:var(--gold-soft);font-weight:600}
.article h2{
    font-family:var(--font-head);
    color:#fff;
    font-size:clamp(22px,2.6vw,30px);
    margin:52px 0 18px;
    padding-left:18px;
    border-left:4px solid var(--gold);
    scroll-margin-top:90px;
    line-height:1.3;
}
.article h2:first-child{margin-top:0}

/* Lists */
.bullet-list,
.num-list{
    margin:0 0 24px;
    padding:0 0 0 4px;
    list-style:none;
    counter-reset:numlist;
}
.bullet-list li,
.num-list li{
    position:relative;
    padding:10px 0 10px 40px;
    color:#d8dfee;
    font-size:16px;
    line-height:1.7;
    border-bottom:1px solid rgba(240,193,75,.08);
}
.bullet-list li:last-child,
.num-list li:last-child{border-bottom:none}

.bullet-list li::before{
    content:"\f00c"; /* FA check */
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    position:absolute;
    left:0; top:11px;
    width:24px; height:24px;
    border-radius:50%;
    background:linear-gradient(135deg,#f7d878,#d4a24c);
    color:#231400;
    font-size:11px;
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 3px 8px rgba(240,193,75,.3);
}

.num-list{counter-reset:numlist}
.num-list li{counter-increment:numlist}
.num-list li::before{
    content:counter(numlist);
    position:absolute;
    left:0; top:9px;
    width:26px; height:26px;
    border-radius:50%;
    background:linear-gradient(135deg,#f7d878,#d4a24c);
    color:#231400;
    font-weight:700;
    font-size:13px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 10px rgba(240,193,75,.3);
}

.article ul strong,
.article ol strong,
.article li strong{color:var(--gold-soft);font-weight:600}

/* Tables */
.table-wrap{
    margin:0 0 28px;
    overflow-x:auto;
    border-radius:var(--radius);
    border:1px solid var(--line);
    background:linear-gradient(180deg, var(--bg-panel) 0%, var(--bg-panel-2) 100%);
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    -webkit-overflow-scrolling:touch;
}
.info-table{
    width:100%;
    min-width:520px;
    border-collapse:collapse;
    font-size:15px;
    color:#e3e9f5;
}
.info-table thead th{
    background:linear-gradient(135deg, rgba(240,193,75,.18), rgba(240,193,75,.05));
    color:var(--gold);
    font-weight:600;
    text-align:left;
    padding:14px 18px;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.8px;
    border-bottom:1px solid var(--line);
}
.info-table tbody th{
    text-align:left;
    font-weight:600;
    color:var(--cream);
    padding:14px 18px;
    width:38%;
    background:rgba(240,193,75,.03);
    border-bottom:1px solid rgba(255,255,255,.04);
    vertical-align:top;
}
.info-table tbody td{
    padding:14px 18px;
    border-bottom:1px solid rgba(255,255,255,.04);
    color:#d8dfee;
    vertical-align:top;
}
.info-table tbody tr:last-child th,
.info-table tbody tr:last-child td{border-bottom:none}
.info-table tbody tr:hover td,
.info-table tbody tr:hover th{background:rgba(240,193,75,.04)}

/* Features */
.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:22px;
    max-width:var(--maxw);margin:0 auto;
    align-items:stretch;
}
.feature{
    background:linear-gradient(180deg, var(--bg-panel) 0%, var(--bg-panel-2) 100%);
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:28px 24px;
    position:relative;
    overflow:hidden;
    transition:transform .3s, border-color .3s, box-shadow .3s;
    display:flex;
    flex-direction:column;
}
.feature::before{
    content:"";
    position:absolute;top:0;left:0;right:0;height:3px;
    background:linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity:.5;
}
.feature:hover{
    transform:translateY(-4px);
    border-color:var(--gold-2);
    box-shadow:0 16px 40px rgba(0,0,0,.35);
}
.feature-icon{
    width:56px;height:56px;border-radius:14px;
    background:linear-gradient(135deg,#f7d878,#d4a24c 60%,#8a6516);
    display:flex;align-items:center;justify-content:center;
    font-size:22px;color:#1a1200;margin-bottom:18px;
    box-shadow:0 6px 18px rgba(240,193,75,.3), inset 0 1px 0 rgba(255,255,255,.4);
    flex-shrink:0;
}
.feature h3{
    margin:0 0 10px;color:#fff;font-size:19px;
    font-family:var(--font-head);
    line-height:1.3;
}
.feature p{
    margin:0;color:var(--text-dim);font-size:14.5px;line-height:1.7;
    flex-grow:1;
}

/* Games */
.games-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:18px;max-width:var(--maxw);margin:0 auto;
    align-items:stretch;
}
.game-card{
    background:var(--bg-panel);
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:28px 20px;
    text-align:center;
    transition:.3s;
    display:flex;
    flex-direction:column;
    align-items:center;
}
.game-card:hover{
    border-color:var(--gold);
    background:var(--bg-panel-2);
    transform:translateY(-3px);
}
.game-card .icon{
    width:96px;height:96px;
    display:flex;align-items:center;justify-content:center;
    margin-bottom:14px;
    transition:.3s;
    filter:drop-shadow(0 6px 16px rgba(240,193,75,.25));
}
.game-card .icon img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}
.game-card:hover .icon{
    transform:scale(1.08) translateY(-3px);
    filter:drop-shadow(0 10px 22px rgba(240,193,75,.45));
}
.game-card h4{margin:0 0 8px;color:#fff;font-size:17px;line-height:1.3}
.game-card p{margin:0;font-size:13.5px;color:var(--text-dim);line-height:1.6;flex-grow:1}

/* Payments */
.pay-strip{
    display:flex;flex-wrap:wrap;justify-content:center;gap:12px;
    max-width:var(--maxw);margin:0 auto;
}
.pay-item{
    display:inline-flex;align-items:center;justify-content:center;
    padding:14px 22px;
    background:#fff;
    border:1px solid rgba(255,255,255,.1);
    border-radius:10px;
    transition:.25s;
    min-width:110px;
    height:56px;
    box-shadow:0 4px 14px rgba(0,0,0,.25);
}
.pay-item img{
    height:26px;
    width:auto;
    max-width:90px;
    object-fit:contain;
    display:block;
}
.pay-item:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 24px rgba(240,193,75,.2);
}

/* FAQ */
.faq{max-width:820px;margin:0 auto}
.faq details{
    background:var(--bg-panel);
    border:1px solid var(--line);
    border-radius:12px;
    padding:18px 22px;
    margin-bottom:12px;
    transition:.2s;
}
.faq details[open]{border-color:var(--gold-2);background:var(--bg-panel-2)}
.faq summary{
    cursor:pointer;
    font-weight:600;
    color:#fff;
    font-size:16px;
    list-style:none;
    display:flex;justify-content:space-between;align-items:center;gap:12px;
    line-height:1.4;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
    content:"+";color:var(--gold);font-size:24px;font-weight:300;
    transition:transform .2s;
    flex-shrink:0;
}
.faq details[open] summary::after{transform:rotate(45deg)}
.faq details p{margin:14px 0 0;color:var(--text-dim);font-size:15px;line-height:1.75}

/* CTA strip */
.cta-strip{
    margin:72px auto 0;
    max-width:var(--maxw);
    text-align:center;
    padding:56px 24px;
    border-radius:var(--radius-lg);
    background:
        radial-gradient(500px 200px at 50% 0%, rgba(240,193,75,.2), transparent 70%),
        linear-gradient(135deg, #0a1628 0%, #152a4a 100%);
    border:1px solid var(--line);
    position:relative;overflow:hidden;
}
.cta-strip h2{
    font-family:var(--font-head);
    font-size:clamp(24px,3vw,34px);
    color:#fff;margin:0 0 14px;line-height:1.2;
}
.cta-strip p{color:var(--text-dim);margin:0 0 26px;font-size:16px}

/* Footer */
.site-footer{
    margin-top:80px;
    background:#050b17;
    border-top:1px solid var(--line);
    padding:40px 20px 24px;
}
.footer-inner{
    max-width:var(--maxw);margin:0 auto;
    display:flex;flex-wrap:wrap;justify-content:space-between;gap:24px;
    align-items:center;
}
.footer-brand{display:flex;align-items:center}
.footer-logo{
    height:38px;
    width:auto;
    object-fit:contain;
    opacity:.95;
}
.footer-links{display:flex;gap:22px;flex-wrap:wrap}
.footer-links a{color:var(--text-dim);font-size:14px}
.footer-links a:hover{color:var(--gold)}
.footer-legal{
    max-width:var(--maxw);margin:28px auto 0;
    padding-top:22px;border-top:1px solid rgba(255,255,255,.05);
    font-size:12.5px;color:#6c7689;text-align:center;line-height:1.7;
}
.footer-legal p{margin:0 0 8px}
.age-badge{
    display:inline-flex;align-items:center;justify-content:center;
    width:32px;height:32px;border-radius:50%;
    background:#c0392b;color:#fff;font-weight:800;font-size:12px;
    margin-right:8px;vertical-align:middle;
    flex-shrink:0;
}

/* Responsive */
@media (max-width: 1024px){
    .features{grid-template-columns:repeat(2,1fr)}
    .games-grid{grid-template-columns:repeat(3,1fr)}
}

@media (max-width: 860px){
    .hero{padding:20px 14px 36px}
    .hero-content{margin-top:28px;padding:0 4px}
    .section{padding:44px 16px}
    .footer-inner{flex-direction:column;text-align:center}
    .cta-strip{padding:44px 20px;margin-top:56px}
    .article h2{margin:42px 0 16px;scroll-margin-top:80px}
}

@media (max-width: 640px){
    body{font-size:15.5px}
    .header-inner{padding:12px 16px;gap:10px}
    .brand-logo{height:34px}
    .header-cta{padding:10px 16px;font-size:13px}
    .header-cta i{display:none}
    .header-cta::after{width:7px;height:7px;margin-left:2px}

    .hero{padding:16px 12px 32px}
    .hero-banner{border-radius:16px}
    .hero-content{margin-top:24px}
    .hero h1{font-size:26px;line-height:1.2}
    .hero-sub{font-size:15px;margin-bottom:22px}
    .hero-cta{gap:10px}
    .hero-cta .btn{flex:1;min-width:140px;padding:13px 20px;font-size:13.5px}
    .hero-badges{gap:8px;margin-top:22px}
    .badge{font-size:12px;padding:7px 13px}

    .section{padding:36px 14px}
    .section-title{font-size:24px}
    .section-lead{font-size:14.5px;margin-bottom:28px}

    .article p{font-size:15.5px;line-height:1.75}
    .article h2{font-size:20px;margin:36px 0 14px;padding-left:14px;border-left-width:3px}

    .features{grid-template-columns:1fr;gap:14px}
    .feature{padding:22px 18px}
    .feature-icon{width:48px;height:48px;font-size:19px;margin-bottom:14px}
    .feature h3{font-size:17px}

    .games-grid{grid-template-columns:repeat(2,1fr);gap:12px}
    .game-card{padding:22px 14px}
    .game-card .icon{width:76px;height:76px;margin-bottom:12px}
    .game-card h4{font-size:15px}
    .game-card p{font-size:13px}

    .pay-strip{gap:8px}
    .pay-item{padding:10px 14px;min-width:90px;height:48px}
    .pay-item img{height:22px;max-width:72px}

    .bullet-list li,
    .num-list li{font-size:15px;padding:9px 0 9px 34px}
    .bullet-list li::before{width:22px;height:22px;top:10px;font-size:10px}
    .num-list li::before{width:23px;height:23px;top:8px;font-size:12px}

    .info-table{font-size:13.5px}
    .info-table thead th,
    .info-table tbody th,
    .info-table tbody td{padding:11px 13px}

    .faq details{padding:16px 18px}
    .faq summary{font-size:15px}
    .faq summary::after{font-size:22px}

    .cta-strip{padding:36px 18px;margin-top:40px}
    .cta-strip h2{font-size:22px}
    .cta-strip p{font-size:14.5px}

    .site-footer{padding:32px 16px 20px;margin-top:56px}
    .footer-links{gap:14px;justify-content:center}
    .footer-legal{font-size:12px}
}

@media (max-width: 380px){
    .header-inner{padding:10px 12px}
    .brand-logo{height:30px}
    .header-cta{padding:9px 14px;font-size:12.5px}
    .hero h1{font-size:23px}
    .hero-cta{flex-direction:column;width:100%}
    .hero-cta .btn{width:100%}
    .games-grid{grid-template-columns:1fr}
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce){
    *{animation-duration:.01ms !important;transition-duration:.01ms !important}
}
