*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
:root{
    --bg:#0a0e13;
    --bg-soft:#11181f;
    --bg-card:#16212b;
    --bg-card-2:#1a2631;
    --bg-elev:#202f3c;
    --line:rgba(255,255,255,.08);
    --line-strong:rgba(255,255,255,.14);
    --text:#f5f7fa;
    --muted:rgba(245,247,250,.72);
    --accent:#00e701;
    --accent-hover:#33ff33;
    --accent-glow:rgba(0,231,1,.24);
    --sidebar-w:280px;
    --radius:18px;
    --radius-lg:24px;
    --shadow:0 12px 30px rgba(0,0,0,.24);
}
body{
    font-family:'Inter',sans-serif;
    color:var(--text);
    min-height:100vh;
    overflow-x:hidden;
    background:var(--bg);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,textarea,select{font:inherit}
.container{max-width:1200px;margin:0 auto;padding:0 24px}

.main-content{margin-left:var(--sidebar-w);min-height:100vh;position:relative;isolation:isolate}
.main-content::before{
    content:"";
    position:fixed;
    top:0;left:var(--sidebar-w);right:0;bottom:0;
    z-index:-1;
    pointer-events:none;
    background:
            radial-gradient(circle at 20% 12%, rgba(32, 55, 76, 0.81), transparent 18%),
            radial-gradient(circle at 82% 10%, rgba(255,255,255,.03), transparent 14%),
            linear-gradient(180deg, #151e29 0%, #202b39 45%, #172230 100%);
}

.top-navbar{display:none;position:fixed;top:0;left:0;right:0;height:60px;z-index:999;align-items:center;justify-content:space-between;padding:0 16px;background:rgba(10,14,19,.92);backdrop-filter:blur(16px);border-bottom:1px solid var(--line)}
.left-section{display:flex;align-items:center}
.top-logo,.logo{font-size:24px;font-weight:900;letter-spacing:.04em;color:var(--text)}
.menu-button{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:4px;width:44px;height:44px;border-radius:10px;cursor:pointer;border:1px solid var(--line-strong);background:var(--bg-soft)}
.hamburger-line{width:20px;height:2px;background:rgba(255,255,255,.92);border-radius:2px;transition:all .3s ease}
.mobile-overlay{position:fixed;inset:0;background:rgba(0,0,0,.55);z-index:998;opacity:0;visibility:hidden;transition:all .25s ease}
.mobile-overlay.active{opacity:1;visibility:visible}
body.menu-open{overflow:hidden}

.sidebar{position:fixed;top:0;left:0;height:100vh;width:var(--sidebar-w);z-index:1000;overflow-y:auto;background:linear-gradient(180deg, #0d1218, #1a2430);backdrop-filter:blur(18px);border-right:1px solid var(--line);box-shadow:8px 0 28px rgba(0,0,0,.24);transition:transform .3s ease}
.sidebar-header{padding:22px 18px;border-bottom:1px solid var(--line)}
.logo-link{display:inline-block}.logo-section{display:flex;align-items:center;gap:10px}
.nav-menu{list-style:none;padding:16px 0}.nav-menu li{margin-bottom:4px}
.nav-item{display:flex;align-items:center;justify-content:space-between;width:100%;padding:14px 18px;color:rgba(245,247,250,.86);font-size:15px;font-weight:700;border:none;background:none;cursor:pointer;transition:all .2s ease;text-align:left}
.nav-item:hover{background:rgba(255,255,255,.04);color:#fff}
.nav-item[aria-current="page"]{background:rgba(255,255,255,.05);color:#fff;border-right:3px solid var(--accent)}
.dropdown-icon{width:16px;height:16px;transition:transform .2s ease}.nav-dropdown.active .dropdown-icon{transform:rotate(180deg)}
.dropdown-menu{list-style:none;margin:6px 14px 0;padding:0;border-radius:12px;background:rgba(255,255,255,.03);border:1px solid var(--line);display:none;overflow:hidden}
.nav-dropdown.active .dropdown-menu{display:block}
.dropdown-menu a{display:block;padding:12px 16px;color:rgba(245,247,250,.72);font-size:14px;font-weight:600}
.dropdown-menu a:hover{background:rgba(255,255,255,.05);color:#fff}

.hero-mobile-style{position:relative;padding:34px 0 22px;overflow:hidden;background:transparent}
.hero-mobile-style__wrap{position:relative;z-index:2;display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,420px);gap:30px;align-items:center}
.hero-mobile-style__media{display:flex;justify-content:center;align-items:center;order:2}
.hero-mobile-style__portrait-ring{width:min(100%,430px);aspect-ratio:1/1;border-radius:999px;padding:8px;background:linear-gradient(135deg, rgba(66, 168, 15, 0.89), rgba(27, 170, 12, 0.93));box-shadow:0 18px 40px rgba(0,0,0,.24)}
.hero-mobile-style__portrait{width:100%;height:100%;object-fit:cover;object-position:center top;border-radius:999px;background:linear-gradient(135deg,#18212b,#0f151c)}
.hero-mobile-style__content{text-align:center;order:1}
.hero-mobile-style__title{margin:0 0 10px;font-size:clamp(52px,7vw,98px);line-height:.92;font-weight:900;letter-spacing:.02em;text-transform:uppercase;color:var(--text);text-shadow:0 10px 28px rgba(0,0,0,.28)}
.hero-mobile-style__eyebrow{margin:0 0 18px;font-size:13px;line-height:1;font-weight:900;letter-spacing:.24em;text-transform:uppercase;color:rgba(245,247,250,.8)}
.hero-mobile-style__text{max-width:760px;margin:0 auto 24px;font-size:16px;line-height:1.75;color:var(--muted)}
.hero-mobile-style__cta{margin-bottom:28px;display:flex;justify-content:center;gap:12px;flex-wrap:wrap}
.hero-mobile-style__main-btn,.cta-button{display:inline-flex;align-items:center;justify-content:center;min-width:190px;min-height:54px;padding:0 24px;border-radius:14px;font-size:14px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;color:#071008;background:linear-gradient(180deg,#59ff59 0%, #00e701 52%, #00c800 100%);border:1px solid rgba(255,255,255,.14);box-shadow:0 10px 22px rgba(0,231,1,.20), inset 0 1px 0 rgba(255,255,255,.22);transition:transform .2s ease, box-shadow .2s ease, filter .2s ease}
.hero-mobile-style__main-btn:hover,.casino-card:hover .cta-button{transform:translateY(-2px);filter:brightness(1.03);box-shadow:0 16px 34px rgba(0,231,1,.28), inset 0 1px 0 rgba(255,255,255,.26)}
.hero-mobile-style__socials{display:flex;flex-wrap:wrap;justify-content:center;gap:12px}
.hero-mobile-style__social-card{display:flex;align-items:center;gap:14px;min-height:64px;padding:12px 18px;border-radius:18px;background:var(--bg-soft);border:1px solid var(--line);color:#fff;box-shadow:var(--shadow);transition:transform .2s ease, box-shadow .2s ease}
.hero-mobile-style__social-card:hover{transform:translateY(-3px);box-shadow:0 18px 30px rgba(0,0,0,.28)}
.hero-mobile-style__social-icon{width:38px;height:38px;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;font-size:18px;color:#fff;flex:0 0 auto}
.hero-mobile-style__social-icon--kick{background:var(--accent);color:#061007}
.hero-mobile-style__social-icon--instagram{background:linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4)}
.hero-mobile-style__social-label{font-size:16px;font-weight:800;color:#fff}

.casino-hero__live{display:inline-flex;align-items:center;gap:10px;margin:0 0 14px;padding:10px 14px;border-radius:999px;background:rgba(255,255,255,.04);border:1px solid var(--line);color:#fff;font-size:12px;font-weight:900;letter-spacing:.14em;text-transform:uppercase}
.casino-hero__live-dot{width:8px;height:8px;border-radius:999px;background:var(--accent);box-shadow:0 0 0 4px rgba(0,231,1,.12)}
.casino-hero__stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin:0 0 24px}
.casino-hero__stat{padding:16px;border-radius:16px;background:var(--bg-soft);border:1px solid var(--line);box-shadow:var(--shadow)}
.casino-hero__stat-label{display:block;margin-bottom:7px;font-size:11px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;color:rgba(245,247,250,.58)}
.casino-hero__stat-value{display:block;font-size:16px;line-height:1.4;color:#fff;font-weight:900}
.casino-hero__ghost-btn{display:inline-flex;align-items:center;justify-content:center;min-width:190px;min-height:54px;padding:0 22px;border-radius:14px;border:1px solid var(--line-strong);background:var(--bg-soft);color:#fff;font-size:14px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;transition:.2s ease}
.casino-hero__ghost-btn:hover{background:var(--bg-card);transform:translateY(-2px)}

.home-section,.casino-section{padding:56px 0;position:relative;z-index:1}
.section-header{text-align:center;margin-bottom:28px}
.section-title{font-size:clamp(2rem,4vw,3.2rem);font-weight:900;letter-spacing:.03em;margin-bottom:12px;color:var(--text)}
.section-subtitle{font-size:1rem;color:var(--muted);font-weight:600;max-width:780px;margin:0 auto;line-height:1.7}

.casino-ticker{max-width:1100px;margin:18px auto 0;overflow:hidden;border-radius:16px;background:var(--bg-soft);border:1px solid var(--line);box-shadow:var(--shadow)}
.casino-ticker__track{display:flex;gap:24px;padding:14px 18px;flex-wrap:wrap;align-items:center;justify-content:center}
.casino-ticker__track span{color:#fff;font-size:13px;font-weight:800;white-space:nowrap}
.casino-topline{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;max-width:1100px;margin:0 auto 18px}
.casino-topline__item{display:flex;align-items:center;justify-content:center;gap:10px;padding:14px 16px;border-radius:16px;background:var(--bg-soft);border:1px solid var(--line);font-size:14px;font-weight:800;text-align:center;box-shadow:var(--shadow)}
.casino-topline__item i{color:var(--accent)}

.casino-cards{display:flex;flex-direction:column;gap:16px;max-width:1100px;margin:0 auto}
.casino-card-link{display:block;transition:transform .2s ease}
.casino-card-link:hover{transform:scale(1.005)}
.casino-card{display:grid;grid-template-columns:1fr auto;align-items:center;gap:18px;padding:18px;border-radius:20px;background:linear-gradient(180deg,var(--bg-card),var(--bg-soft));backdrop-filter:blur(12px);border:1px solid rgba(0,231,1,.16);box-shadow:0 10px 24px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.03);position:relative;overflow:hidden;transition:all .28s ease;animation:offerPulse 3.4s ease-in-out infinite}
.casino-card:hover{transform:translateY(-3px);border-color:rgba(0,231,1,.24);box-shadow:0 16px 34px rgba(0,0,0,.28), 0 0 22px rgba(0,231,1,.10), inset 0 1px 0 rgba(255,255,255,.04);animation-play-state:paused}
.casino-card__head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:10px}
.casino-card__badge{display:inline-flex;align-items:center;justify-content:center;padding:7px 11px;border-radius:999px;background:rgba(0,231,1,.08);border:1px solid rgba(0,231,1,.18);color:#b7ffb8;font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase}
.casino-card__rating{display:inline-flex;align-items:center;justify-content:center;padding:7px 11px;border-radius:999px;background:rgba(255,255,255,.04);border:1px solid var(--line);color:#fff;font-size:11px;font-weight:900}
.casino-info{display:grid;grid-template-columns:180px 1fr;align-items:center;gap:18px;min-width:0;width:100%}
.casino-logo{width:180px;height:90px;display:flex;align-items:center;justify-content:center;flex-shrink:0;overflow:hidden;border-radius:14px;background:transparent;border:none}
.casino-logo-img{width:180px;height:90px;object-fit:contain;object-position:center;filter:drop-shadow(0 8px 18px rgba(0,0,0,.22));background:transparent}
.casino-content{min-width:0;width:100%}
.casino-title{font-size:18px;font-weight:900;letter-spacing:.04em;text-transform:uppercase;margin-bottom:10px;color:#fff}
.casino-offers{display:grid;grid-template-columns:1fr 1fr;gap:14px;max-width:600px;width:100%;margin-bottom:10px}
.offer-item{text-align:center;padding:10px 12px;border-radius:12px;background:rgba(255,255,255,.04);border:1px solid var(--line);width:100%}
.offer-value{display:block;font-size:18px;font-weight:900;color:#fff;line-height:1.1}
.offer-label{display:block;margin-top:4px;font-size:10px;font-weight:900;letter-spacing:.14em;color:rgba(255,255,255,.58);text-transform:uppercase}
.casino-features{display:flex;gap:10px 14px;flex-wrap:wrap;margin-top:4px}
.feature{font-size:13px;font-weight:700;color:var(--muted)}
.casino-cta{display:flex;align-items:center;justify-content:center;min-width:220px}
.cta-button{width:220px;white-space:nowrap}
.offers-note{margin-top:18px;text-align:center;font-weight:700;color:var(--muted)}

@keyframes offerPulse{
    0%,100%{
        border-color: rgb(0, 231, 1);
        box-shadow:
                0 10px 24px rgba(0,0,0,.24),
                0 0 0 rgba(0,231,1,0),
                inset 0 1px 0 rgba(255,255,255,.03);
    }
    50%{
        border-color: rgba(0, 231, 1, 0.57);
        box-shadow:
                0 12px 28px rgba(0,0,0,.26),
                0 0 18px rgba(0,231,1,.12),
                inset 0 1px 0 rgba(255,255,255,.04);
    }
}

.casino-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    pointer-events:none;
    background:radial-gradient(circle at 50% 50%, rgba(0,231,1,.06), transparent 62%);
    opacity:.55;
}

.casino-card::before{
    content:"";
    position:absolute;
    top:0;bottom:0;left:-30%;
    width:24%;
    pointer-events:none;
    background:linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
    transform:skewX(-18deg);
    animation:shineMove 4.2s ease-in-out infinite;
}

@keyframes shineMove{
    0%, 78%{transform:translateX(0) skewX(-18deg); opacity:0}
    82%{opacity:.55}
    100%{transform:translateX(520%) skewX(-18deg); opacity:0}
}
.casino-card .cta-button{
    position:relative;
    background:linear-gradient(180deg, rgba(93, 255, 93, 0.85) 0%, rgba(25, 243, 25, 0.84) 52%, #00d900 100%) !important;
    color:#041006 !important;
    border:1px solid rgba(255,255,255,.16);
    box-shadow:0 8px 18px rgba(0,231,1,.18), inset 0 1px 0 rgba(255,255,255,.24);
}

.casino-card .cta-button:hover{
    box-shadow:0 12px 22px rgba(0,231,1,.22), inset 0 1px 0 rgba(255,255,255,.28);
}

.casino-card .cta-button::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    background:linear-gradient(180deg, rgba(255,255,255,.16), transparent 44%);
    pointer-events:none;
}

.quick-links-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;max-width:1100px}
.photo-card{position:relative;overflow:hidden;border-radius:20px;min-height:200px;display:block;color:#fff;isolation:isolate;box-shadow:var(--shadow);background-size:cover;background-position:right;background-repeat:no-repeat;border:1px solid var(--line)}
.photo-card--one{background-image:url("../img/pasut.webp")}
.photo-card--two{background-image:url("../img/pasut-stream.webp")}
.photo-card--three{background-image:url("../img/stream-casinos.webp")}
.photo-card::before{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg, rgba(8,10,13,.14) 0%, rgba(8,10,13,.42) 55%, rgba(8,10,13,.82) 100%)}
.photo-card__overlay{display:none!important}
.photo-card__content{position:absolute;inset:0;z-index:2;display:flex;align-items:center;justify-content:center;text-align:center;padding:18px}
.photo-card__content h3{margin:0;font-size:18px;font-weight:900;letter-spacing:.1em;text-transform:uppercase;color:#fff;text-shadow:0 8px 24px rgba(0,0,0,.45)}
.photo-card:hover{transform:translateY(-4px);box-shadow:0 24px 56px rgba(0,0,0,.32)}

.content-card,.faq-shell{max-width:960px;margin:24px auto 0;padding:32px;border-radius:20px;background:linear-gradient(180deg,var(--bg-card),var(--bg-soft));box-shadow:var(--shadow);backdrop-filter:blur(12px);border:1px solid var(--line)}
.content-card p{font-size:16px;line-height:1.8;margin-bottom:14px;color:rgba(245,247,250,.86)}
.content-card a,.faq-answer a{color:#8fffa0;border-bottom:1px solid rgba(143,255,160,.34);transition:.2s ease}
.content-card a:hover,.faq-answer a:hover{color:#fff;border-bottom-color:rgba(255,255,255,.56)}
.first-paragraph{color:#fff;font-size:17px}
.feature-highlight{background:rgba(255,255,255,.04);border-left:4px solid var(--accent);padding:14px 18px;margin-top:18px;border-radius:12px}
.faq-item{background:rgba(255,255,255,.03);border:1px solid var(--line);border-radius:12px;margin-bottom:14px;overflow:hidden;box-shadow:0 6px 18px rgba(0,0,0,.18)}
.faq-question{width:100%;text-align:left;padding:18px 22px;background:none;border:none;outline:none;color:#fff;font-weight:900;font-size:15px;cursor:pointer;position:relative}
.faq-question::after{content:"+";position:absolute;right:22px;font-size:18px;transition:transform .3s ease}
.faq-item.active .faq-question::after{transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;padding:0 22px;color:rgba(255,255,255,.85);transition:max-height .3s ease,padding .3s ease}
.faq-item.active .faq-answer{max-height:320px;padding:12px 22px 18px}

.footer{margin-top:56px;padding:56px 0 28px;background:linear-gradient(180deg,#0d1218,#0a0e13);border-top:1px solid var(--line);backdrop-filter:blur(14px)}
.footer-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:34px;margin-bottom:30px}
.footer-column h3{font-size:13px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;margin-bottom:14px;color:#fff}
.footer-column ul{list-style:none}.footer-column ul li{margin-bottom:10px}
.footer-column ul li a{color:rgba(245,247,250,.84);font-weight:700;font-size:14px;transition:color .2s ease}
.footer-column ul li a:hover{color:#fff!important}
.footer-column ul li span{color:rgba(245,247,250,.54);font-size:12px;margin-left:8px;font-weight:800}
.footer-disclaimer{margin-top:28px;padding:18px 20px;border-radius:18px;background:rgba(255,255,255,.03);border:1px solid var(--line)}
.footer-disclaimer p{margin:0;font-size:13px;line-height:1.75;color:rgba(245,247,250,.58)}
.footer-bottom-new{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:16px;padding-top:22px;border-top:1px solid var(--line)}
.footer-help{display:flex;align-items:center;gap:10px;flex-wrap:nowrap}
.help-link{display:inline-flex;align-items:center;justify-content:center;width:auto;min-width:132px;height:46px;padding:6px 10px;border-radius:10px;text-decoration:none;background:rgba(255,255,255,.04);border:1px solid var(--line);box-sizing:border-box}
.help-link img{display:block;width:auto;height:auto;max-width:134px;max-height:43px;object-fit:contain}
.footer-center-brand{font-size:18px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;color:#fff;text-align:center}
.footer-right-copy{display:flex;align-items:center;justify-content:flex-end;gap:10px;font-size:13px;font-weight:800;color:rgba(245,247,250,.54);white-space:nowrap}
.footer-right-copy .age{color:#8fffa0;font-weight:900}

@media (max-width:1024px){
    .main-content{margin-left:0;padding-top:70px}
    .main-content::before{left:0}
    .sidebar{transform:translateX(-100%)}
    .sidebar.active{transform:translateX(0)}
    .top-navbar{display:flex}
    .quick-links-grid{grid-template-columns:1fr 1fr}
    .footer-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:981px){
    .casino-card{display:flex;flex-direction:column;align-items:stretch;text-align:center;padding:16px 14px;gap:14px}
    .casino-info{display:flex;flex-direction:column;align-items:center;width:100%;gap:12px}
    .casino-logo{width:200px;height:100px}.casino-logo-img{width:200px;height:100px}
    .casino-offers{grid-template-columns:1fr 1fr;width:100%;max-width:520px;margin-left:auto;margin-right:auto}
    .casino-features{justify-content:center}
    .casino-cta{width:100%;justify-content:center;min-width:0}
    .cta-button{width:100%;min-width:0;max-width:360px}
}
@media (max-width:768px){
    .hero-mobile-style{padding:20px 0 22px}
    .hero-mobile-style__wrap{grid-template-columns:1fr;gap:18px}
    .hero-mobile-style__media{order:1}.hero-mobile-style__content{order:2}
    .hero-mobile-style__portrait-ring{width:min(100%,270px);padding:6px}
    .hero-mobile-style__title{font-size:42px}
    .hero-mobile-style__eyebrow{font-size:12px;letter-spacing:.14em}
    .hero-mobile-style__text{font-size:15px;line-height:1.7}
    .hero-mobile-style__social-card{min-height:60px;padding:12px 14px;border-radius:16px}
    .hero-mobile-style__social-label{font-size:15px}
    .casino-hero__live{margin:0 auto 14px}
    .casino-hero__stats,.casino-topline{grid-template-columns:1fr}
    .quick-links-grid{grid-template-columns:1fr}
    .content-card,.faq-shell{padding:24px 18px}
    .photo-card{min-height:150px}
    .footer-grid{grid-template-columns:1fr;gap:26px;text-align:center}
    .footer-bottom-new{grid-template-columns:1fr;text-align:center;gap:14px}
    .footer-help{flex-wrap:wrap;justify-content:center}
    .footer-right-copy{justify-content:center;flex-wrap:wrap;white-space:normal;line-height:1.4}
    .footer-disclaimer{margin-top:22px;padding:16px 14px;border-radius:16px}
    .footer-disclaimer p{font-size:12px;line-height:1.7}
}
@media (max-width:520px){
    .casino-logo{width:180px;height:90px}.casino-logo-img{width:180px;height:90px}
    .casino-offers{grid-template-columns:1fr;max-width:100%}
    .feature{text-align:center;width:100%}
    .hero-mobile-style__title{font-size:36px}
    .section-title{font-size:32px}
    .hero-mobile-style__social-card{min-height:56px;padding:10px 12px;gap:10px}
    .hero-mobile-style__social-icon{width:34px;height:34px;font-size:16px}
    .hero-mobile-style__social-label{font-size:14px}
}
@media (min-width: 982px) {
    .casino-card{
        border-radius:24px;
        background:
                linear-gradient(180deg, rgba(255,255,255,.11) 0%, rgba(255,255,255,.03) 14%, rgba(255,255,255,0) 26%),
                linear-gradient(135deg, rgba(36,50,66,.94) 0%, rgba(33, 48, 66, 0.96) 58%, rgba(28, 45, 66, 0.99) 100%);
        border:1px solid rgba(255,255,255,.11);
        box-shadow:
                0 14px 30px rgba(0,0,0,.25),
                0 0 0 1px rgba(255,255,255,.02),
                inset 0 1px 0 rgba(255,255,255,.04);
        overflow:hidden;
        transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }

    .casino-card::before{
        content:"";
        position:absolute;
        top:-35%;
        left:-16%;
        width:34%;
        height:180%;
        background:linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.08), rgba(255,255,255,0));
        transform:rotate(18deg);
        pointer-events:none;
        opacity:.5;
    }

    .casino-card::after{
        content:"";
        position:absolute;
        inset:0;
        border-radius:inherit;
        pointer-events:none;
        background:
                radial-gradient(circle at 85% 50%, rgba(0,231,1,.06), transparent 20%);
    }

    .casino-card:hover{
        transform:translateY(-4px);
        border-color:rgba(0,231,1,.22);

        background:
                linear-gradient(180deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.045) 16%, rgba(255,255,255,0) 30%),
                linear-gradient(135deg, rgba(42,58,76,.96) 0%, rgba(50, 74, 97, 0.98) 58%, rgba(35, 56, 80, 0.99) 100%);

        box-shadow:
                0 20px 40px rgba(0,0,0,.28),
                0 0 22px rgba(0,231,1,.10),
                inset 0 1px 0 rgba(255,255,255,.06);
    }

    .offer-item{
        background:
                linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.015)),
                rgba(255,255,255,.025);
        border:1px solid rgba(255,255,255,.09);
    }

    .casino-card .cta-button{
        background:linear-gradient(180deg, #6bff6b 0%, #1ef11e 58%, #00c900 100%) !important;
        color:#041006 !important;
        box-shadow:
                0 10px 20px rgba(0,231,1,.18),
                0 0 16px rgba(0,231,1,.08),
                inset 0 1px 0 rgba(255,255,255,.24);
    }
}

@media (max-width:1024px){
    .top-logo{
        background:linear-gradient(
                180deg,
                #ffffff 0%,
                #ffffff 50%,
                #dc143c 50%,
                #dc143c 100%
        );
        -webkit-background-clip:text;
        -webkit-text-fill-color:transparent;
        background-clip:text;
        color:transparent;
    }
}
.photo-card__content{
    position:absolute;
    inset:0;
    z-index:2;

    display:flex;
    align-items:flex-end; /* ↓ опускаем вниз */
    justify-content:center;

    padding:18px 18px 22px; /* чуть отступ снизу */
}
.photo-card::before{
    background:linear-gradient(
            180deg,
            rgba(0,0,0,0) 40%,
            rgba(0,0,0,.55) 100%
    );
}

.photo-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    min-height:180px;
    display:block;
    color:#fff;
    isolation:isolate;
    box-shadow:var(--shadow);
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    border:none; /* убираем светлую линию */
    outline:none;
}

.photo-card::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(
            180deg,
            rgba(8,10,13,.08) 0%,
            rgba(8,10,13,.28) 48%,
            rgba(8,10,13,.72) 100%
    );
    border-radius:inherit;
}

.photo-card__content{
    position:absolute;
    inset:0;
    z-index:2;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    padding:18px 18px 28px;
}

.photo-card--one{background-image:url("../img/pasut.webp");background-position:center 34%;}
.photo-card--two{background-image:url("../img/pasut-stream.webp");background-position:center center;}
.photo-card--three{background-image:url("../img/stream-casinos.webp");background-position:right center;}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}
.offer-item{
    position:relative;
    text-align:center;
    padding:10px 12px;
    border-radius:12px;

    background:
            linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.015)),
            rgba(255,255,255,.025);

    border:1px solid rgba(255,255,255,.10);

    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.05),
            0 0 0 rgba(0,231,1,0);

    transition: all .25s ease;
}
.offer-item::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    pointer-events:none;

    background:
            radial-gradient(circle at 50% 0%, rgba(255,255,255,.12), transparent 60%),
            radial-gradient(circle at 50% 100%, rgba(0,231,1,.08), transparent 70%);

    opacity:.6;
}
.offer-item:hover{
    border-color:rgba(0,231,1,.22);

    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.06),
            0 0 12px rgba(0,231,1,.12),
            0 0 22px rgba(0,231,1,.06);
}

.about-intro{
    padding:40px 0 24px;
}

.about-intro__grid{
    display:grid;
    grid-template-columns:minmax(320px,420px) minmax(0,1fr);
    gap:28px;
    align-items:stretch;
}

.about-intro__photo-card,
.about-intro__content-card{
    border-radius:24px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            rgba(21,30,41,.9);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.26);
    overflow:hidden;
}

.about-intro__photo-card{
    min-height:100%;
}

.about-intro__photo{
    width:100%;
    height:100%;
    min-height:520px;
    object-fit:cover;
    object-position:center top;
    display:block;
}

.about-intro__content-card{
    padding:30px 30px 26px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.about-intro__eyebrow{
    margin:0 0 10px;
    font-size:12px;
    font-weight:900;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:rgba(245,247,250,.62);
}

.about-intro__title{
    margin:0 0 16px;
    font-size:clamp(34px,5vw,58px);
    line-height:1;
    font-weight:900;
    color:#fff;
}

.about-intro__lead{
    margin:0 0 22px;
    font-size:16px;
    line-height:1.8;
    color:rgba(245,247,250,.82);
    max-width:760px;
}

.about-intro__facts{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
}

.about-intro__fact{
    padding:16px 18px;
    border-radius:18px;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.07);
}

.about-intro__fact-label{
    display:block;
    margin-bottom:6px;
    font-size:11px;
    font-weight:900;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:rgba(245,247,250,.54);
}

.about-intro__fact-value{
    display:block;
    font-size:15px;
    line-height:1.5;
    font-weight:800;
    color:#fff;
}

@media (max-width: 900px){
    .about-intro__grid{
        grid-template-columns:1fr;
    }

    .about-intro__photo{
        min-height:360px;
    }

    .about-intro__facts{
        grid-template-columns:1fr;
    }
}
.about-intro__fact--full{
    grid-column:1 / -1;
}
html, body{
    overflow-x:hidden;
}

.about-intro{
    overflow:hidden;
}

.about-intro__grid{
    min-width:0;
}

.about-intro__photo-card,
.about-intro__content-card,
.about-intro__facts,
.about-intro__fact{
    min-width:0;
}

@media (max-width: 900px){
    .about-intro{
        padding:20px 0 10px;
    }

    .about-intro__grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .about-intro__photo-card{
        max-width:100%;
    }

    .about-intro__photo{
        min-height:auto;
        height:clamp(350px, 62vw, 430px);
        width:100%;
        object-fit:cover;
        object-position:center top;
    }

    .about-intro__content-card{
        padding:24px 20px 22px;
        text-align:center;
    }

    .about-intro__eyebrow{
        text-align:center;
    }

    .about-intro__title{
        text-align:center;
        font-size:clamp(34px, 9vw, 52px);
    }

    .about-intro__lead{
        text-align:center;
        margin-left:auto;
        margin-right:auto;
    }

    .about-intro__facts{
        grid-template-columns:1fr;
    }

    .about-intro__fact,
    .about-intro__fact--full{
        grid-column:auto;
    }
}
.casino-hero__stat{
    text-align:center;
    align-items:center;
    justify-content:center;
}

.casino-hero__stat-label,
.casino-hero__stat-value{
    text-align:center;
}

.updates-hero{
    padding:34px 0 10px;
}

.updates-hero__box{
    max-width:1100px;
    margin:0 auto;
    padding:34px 32px;
    border-radius:24px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            rgba(21,30,41,.92);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.24);
}

.updates-hero__eyebrow{
    margin:0 0 12px;
    font-size:12px;
    font-weight:900;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:rgba(245,247,250,.58);
}

.updates-hero__title{
    margin:0 0 14px;
    font-size:clamp(34px,5vw,58px);
    line-height:1;
    font-weight:900;
    color:#fff;
}

.updates-hero__text{
    margin:0;
    max-width:860px;
    color:rgba(245,247,250,.82);
    font-size:16px;
    line-height:1.8;
}

.updates-topics__grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
    max-width:1100px;
    margin:0 auto;
}

.updates-topic-card{
    padding:24px 22px;
    border-radius:22px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            rgba(21,30,41,.92);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.22);
}

.updates-topic-card__label{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:12px;
    padding:7px 11px;
    border-radius:999px;
    background:rgba(0,231,1,.08);
    border:1px solid rgba(0,231,1,.18);
    color:#b7ffb8;
    font-size:10px;
    font-weight:900;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.updates-topic-card h3{
    margin:0 0 10px;
    font-size:21px;
    line-height:1.25;
    font-weight:900;
    color:#fff;
}

.updates-topic-card p{
    margin:0;
    color:rgba(245,247,250,.8);
    line-height:1.8;
    font-size:15px;
}

.updates-overview__card{
    max-width:1000px;
}

.updates-line__list{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    gap:16px;
}

.updates-line__item{
    position:relative;
    display:grid;
    grid-template-columns:26px minmax(0,1fr);
    gap:16px;
    padding:22px 22px;
    border-radius:22px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            rgba(21,30,41,.92);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.22);
}

.updates-line__bullet{
    width:14px;
    height:14px;
    margin-top:6px;
    border-radius:999px;
    background:var(--accent);
    box-shadow:0 0 0 6px rgba(0,231,1,.12);
}

.updates-line__body h3{
    margin:0 0 8px;
    font-size:20px;
    line-height:1.25;
    font-weight:900;
    color:#fff;
}

.updates-line__body p{
    margin:0;
    color:rgba(245,247,250,.8);
    line-height:1.8;
    font-size:15px;
}

@media (max-width:768px){
    .updates-hero{
        padding:20px 0 10px;
    }

    .updates-hero__box{
        padding:24px 18px;
    }

    .updates-hero__title{
        font-size:clamp(30px,9vw,44px);
    }

    .updates-topics__grid{
        grid-template-columns:1fr;
    }

    .updates-topic-card{
        padding:20px 18px;
    }

    .updates-line__item{
        grid-template-columns:22px minmax(0,1fr);
        gap:12px;
        padding:20px 18px;
    }
}

.updates-photo-strip{
    padding-top:8px;
    padding-bottom:10px;
}

.updates-photo-strip__card{
    position:relative;
    max-width:1100px;
    margin:0 auto;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.24);
    background:rgba(21,30,41,.92);
}

.updates-photo-strip__image{
    display:block;
    width:100%;
    height:clamp(260px, 38vw, 460px);
    object-fit:cover;
    object-position:center;
}

.updates-photo-strip__overlay{
    position:absolute;
    inset:auto 0 0 0;
    padding:22px 24px;
    background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(8,10,13,.78) 100%);
}

.updates-photo-strip__caption{
    margin:0;
    max-width:1100px;
    color:#fff;
    font-size:16px;
    line-height:1.7;
    font-weight:700;
    text-align: center;
}

@media (max-width:768px){
    .updates-photo-strip__image{
        height:clamp(220px, 52vw, 320px);
    }

    .updates-photo-strip__overlay{
        padding:16px 16px 18px;
    }

    .updates-photo-strip__caption{
        font-size:14px;
        line-height:1.6;
    }
}

.updates-hero{
    text-align:center;
}

.updates-hero__wrap{
    margin:0 auto;
}

.updates-hero__eyebrow{
    text-align:center;
}

.updates-hero__title{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
}

.updates-hero__text{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
}
.updates-topics__grid{
    text-align:center;
}

.updates-topic-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.updates-topic-card__label{
    margin:0 auto 12px;
}

.updates-topic-card h3{
    text-align:center;
}

.updates-topic-card p{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
}
.updates-news-hero{
    padding:34px 0 10px;
}

.updates-news-hero__grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(360px,480px);
    gap:20px;
    align-items:stretch;
}

.updates-news-hero__content,
.updates-news-hero__photo-card,
.updates-headline-card,
.updates-stream-topics__column{
    border-radius:24px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            rgba(21,30,41,.92);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.24);
}

.updates-news-hero__content{
    padding:34px 32px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.updates-news-hero__eyebrow{
    margin:0 0 12px;
    font-size:12px;
    font-weight:900;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:rgba(245,247,250,.58);
}

.updates-news-hero__title{
    margin:0 0 14px;
    font-size:clamp(34px,5vw,58px);
    line-height:1;
    font-weight:900;
    color:#fff;
}

.updates-news-hero__text{
    margin:0;
    color:rgba(245,247,250,.82);
    font-size:16px;
    line-height:1.8;
    max-width:760px;
}

.updates-news-hero__photo-card{
    position:relative;
    overflow:hidden;
    min-height:100%;
}

.updates-news-hero__photo{
    display:block;
    width:100%;
    height:100%;
    min-height:320px;
    object-fit:cover;
    object-position:center;
}

.updates-news-hero__photo-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:18px 20px;
    background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(8,10,13,.8) 100%);
}

.updates-news-hero__photo-overlay p{
    margin:0;
    color:#fff;
    font-size:15px;
    line-height:1.6;
    font-weight:700;
}

.updates-headlines__grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
    max-width:1100px;
    margin:0 auto;
}

.updates-headline-card{
    padding:24px 22px;
}

.updates-headline-card__badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:12px;
    padding:7px 11px;
    border-radius:999px;
    background:rgba(0,231,1,.08);
    border:1px solid rgba(0,231,1,.18);
    color:#b7ffb8;
    font-size:10px;
    font-weight:900;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.updates-headline-card h3{
    margin:0 0 10px;
    font-size:22px;
    line-height:1.25;
    font-weight:900;
    color:#fff;
}

.updates-headline-card p{
    margin:0;
    color:rgba(245,247,250,.82);
    font-size:15px;
    line-height:1.8;
}

.updates-analysis__card{
    max-width:1000px;
}

.updates-stream-topics__grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
    max-width:1100px;
    margin:0 auto;
}

.updates-stream-topics__column{
    padding:26px 24px;
}

.updates-stream-topics__column h3{
    margin:0 0 16px;
    font-size:24px;
    line-height:1.2;
    font-weight:900;
    color:#fff;
}

.updates-stream-topics__list{
    margin:0;
    padding-left:20px;
    color:rgba(245,247,250,.82);
}

.updates-stream-topics__list li{
    margin-bottom:12px;
    line-height:1.75;
    font-size:15px;
}

@media (max-width: 980px){
    .updates-news-hero__grid,
    .updates-headlines__grid,
    .updates-stream-topics__grid{
        grid-template-columns:1fr;
    }
}

@media (max-width: 768px){
    .updates-news-hero{
        padding:20px 0 10px;
    }

    .updates-news-hero__content{
        padding:24px 18px;
    }

    .updates-news-hero__title{
        font-size:clamp(30px,9vw,44px);
    }

    .updates-headline-card,
    .updates-stream-topics__column{
        padding:20px 18px;
    }

    .updates-news-hero__photo{
        min-height:240px;
    }
}

.casinos-intro{
    padding:34px 0 10px;
}

.casinos-intro__box{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);
    gap:18px;
}

.casinos-intro__left,
.casinos-intro__right,
.casinos-reason-card{
    border-radius:24px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            rgba(21,30,41,.92);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.24);
}

.casinos-intro__left{
    padding:34px 32px;
}

.casinos-intro__right{
    padding:18px;
    display:grid;
    gap:14px;
    align-content:center;
}

.casinos-intro__eyebrow{
    margin:0 0 12px;
    font-size:12px;
    font-weight:900;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:rgba(245,247,250,.58);
}

.casinos-intro__title{
    margin:0 0 14px;
    font-size:clamp(34px,5vw,58px);
    line-height:1;
    font-weight:900;
    color:#fff;
}

.casinos-intro__text{
    margin:0;
    max-width:780px;
    color:rgba(245,247,250,.82);
    font-size:16px;
    line-height:1.8;
}

.casinos-intro__mini{
    padding:18px 20px;
    border-radius:18px;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.07);
}

.casinos-intro__mini-label{
    display:block;
    margin-bottom:6px;
    font-size:11px;
    font-weight:900;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:rgba(245,247,250,.54);
}

.casinos-intro__mini-value{
    display:block;
    font-size:15px;
    line-height:1.5;
    font-weight:800;
    color:#fff;
}

.casinos-reasons__grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
    max-width:1100px;
    margin:0 auto;
}

.casinos-reason-card{
    padding:24px 20px;
    text-align:center;
}

.casinos-reason-card h3{
    margin:0 0 10px;
    font-size:21px;
    line-height:1.25;
    font-weight:900;
    color:#fff;
}

.casinos-reason-card p{
    margin:0;
    color:rgba(245,247,250,.8);
    line-height:1.8;
    font-size:15px;
}

.casinos-guide__card{
    max-width:1000px;
}

@media (max-width: 1100px){
    .casinos-reasons__grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width: 1024px){
    .casinos-intro__box{
        grid-template-columns:1fr;
    }
}

@media (max-width: 768px){
    .casinos-intro{
        padding:20px 0 10px;
    }

    .casinos-intro__left{
        padding:24px 18px;
    }

    .casinos-intro__right{
        padding:18px;
    }

    .casinos-intro__title{
        font-size:clamp(30px,9vw,44px);
    }

    .casinos-reasons__grid{
        grid-template-columns:1fr;
    }

    .casinos-reason-card{
        padding:20px 18px;
    }
}

.updates-stream-topics__list a,.faq-answer a{color:#8fffa0;border-bottom:1px solid rgba(143,255,160,.34);transition:.2s ease}
.updates-stream-topics__list a:hover,.faq-answer a:hover{color:#fff;border-bottom-color:rgba(255,255,255,.56)}

.casinos-media-feature{
    position:relative;
    max-width:1100px;
    margin:0 auto;
    border-radius:30px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 28px 70px rgba(0,0,0,.34);
    background:rgba(16,25,36,.92);
}

.casinos-media-feature__image{
    display:block;
    width:100%;
    height:520px;
    object-fit:contain;
    object-position:center;
    background:#0b1622; /* чтобы не было пустых краёв белых */
}

.casinos-media-feature__panel{
    position:absolute;
    left:28px;
    bottom:28px;
    width:min(520px, calc(100% - 56px));
    padding:22px 22px;
    border-radius:22px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.06), transparent),
            linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01)),
            rgba(14,22,33,.86);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.28);
}

.casinos-media-feature__eyebrow{
    display:inline-block;
    margin:0 0 8px;
    font-size:11px;
    font-weight:900;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:rgba(245,247,250,.6);
}

.casinos-media-feature__panel h2{
    margin:0 0 10px;
    font-size:clamp(22px,3.2vw,34px);
    line-height:1.1;
    font-weight:900;
    color:#fff;
}

.casinos-media-feature__panel p{
    margin:0 0 12px;
    color:rgba(245,247,250,.86);
    line-height:1.75;
    font-size:15px;
}

.casinos-media-feature__panel p:last-child{
    margin-bottom:0;
}

.casinos-media-feature__panel a{
    color:var(--gold);
    font-weight:700;
    text-decoration:none;
}

.casinos-media-feature__panel a:hover{
    text-decoration:underline;
}

@media (max-width: 900px){
    .casinos-media-feature__image{
        height:360px;
    }

    .casinos-media-feature__panel{
        position:static;
        width:100%;
        border-radius:0 0 30px 30px;
        padding:22px 18px;
        background:
                linear-gradient(180deg, rgba(255,255,255,.06), transparent),
                linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01)),
                rgba(14,22,33,.96);
        box-shadow:none;
        border-top:1px solid rgba(255,255,255,.08);
        border-left:none;
        border-right:none;
        border-bottom:none;
    }
}

@media (max-width: 768px){
    .casinos-media-feature{
        border-radius:24px;
    }

    .casinos-media-feature__image{
        height:260px;
    }

    .casinos-media-feature__panel{
        border-radius:0 0 24px 24px;
    }

    .casinos-media-feature__panel h2{
        font-size:28px;
    }
}

.bonuses-hero{
    padding:34px 0 18px;
}

.bonuses-hero__wrap{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
    gap:20px;
}

.bonuses-hero__content,
.bonuses-hero__stat,
.bonus-compare__card,
.bonus-strip__item{
    border-radius:24px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            rgba(21,30,41,.92);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.24);
}

.bonuses-hero__content{
    padding:34px 32px;
}

.bonuses-hero__eyebrow{
    margin:0 0 12px;
    font-size:12px;
    font-weight:900;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:rgba(245,247,250,.58);
}

.bonuses-hero__title{
    margin:0 0 14px;
    font-size:clamp(34px,5vw,58px);
    line-height:1;
    font-weight:900;
    color:#fff;
}

.bonuses-hero__text{
    margin:0;
    color:rgba(245,247,250,.84);
    font-size:16px;
    line-height:1.8;
}

.bonuses-hero__stats{
    display:grid;
    gap:14px;
}

.bonuses-hero__stat{
    padding:20px 22px;
}

.bonuses-hero__stat-label{
    display:block;
    margin-bottom:7px;
    font-size:11px;
    font-weight:900;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:rgba(245,247,250,.54);
}

.bonuses-hero__stat-value{
    display:block;
    font-size:16px;
    line-height:1.5;
    font-weight:800;
    color:#fff;
}

.bonus-strip{
    padding-top:0;
}

.bonus-strip__grid{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
}

.bonus-strip__item{
    padding:22px 18px;
    text-align:center;
}

.bonus-strip__value{
    display:block;
    font-size:34px;
    line-height:1;
    font-weight:900;
    color:#fff;
    margin-bottom:8px;
}

.bonus-strip__label{
    display:block;
    font-size:13px;
    font-weight:800;
    color:rgba(245,247,250,.68);
    text-transform:uppercase;
    letter-spacing:.08em;
}

.bonus-compare__grid{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}

.bonus-compare__card{
    padding:24px 22px;
}

.bonus-compare__card h3{
    margin:0 0 10px;
    font-size:22px;
    line-height:1.25;
    font-weight:900;
    color:#fff;
}

.bonus-compare__card p{
    margin:0;
    color:rgba(245,247,250,.82);
    font-size:15px;
    line-height:1.8;
}

.bonus-content__card{
    max-width:1000px;
}

@media (max-width:1024px){
    .bonuses-hero__wrap{
        grid-template-columns:1fr;
    }
}

@media (max-width:900px){
    .bonus-strip__grid,
    .bonus-compare__grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:768px){
    .bonuses-hero{
        padding:20px 0 14px;
    }

    .bonuses-hero__content{
        padding:24px 18px;
    }

    .bonuses-hero__title{
        font-size:clamp(30px,9vw,44px);
    }

    .bonuses-hero__stat{
        padding:18px;
    }

    .bonus-strip__value{
        font-size:30px;
    }

    .bonus-compare__card{
        padding:20px 18px;
    }
}

.bonuses-hero{
    padding:34px 0 14px;
}

.bonuses-hero__box{
    max-width:980px;
    margin:0 auto;
    padding:36px 30px;
    text-align:center;
    border-radius:28px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            rgba(21,30,41,.92);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.24);
}

.bonuses-hero__eyebrow{
    margin:0 0 12px;
    font-size:12px;
    font-weight:900;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:rgba(245,247,250,.58);
}

.bonuses-hero__title{
    margin:0 0 14px;
    font-size:clamp(34px,5vw,58px);
    line-height:1;
    font-weight:900;
    color:#fff;
}

.bonuses-hero__text{
    max-width:760px;
    margin:0 auto;
    color:rgba(245,247,250,.84);
    font-size:16px;
    line-height:1.8;
}

.bonuses-hero__tags{
    max-width:980px;
    margin:18px auto 0;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.bonuses-hero__tag{
    padding:12px 16px;
    border-radius:999px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    font-size:13px;
    font-weight:800;
}

@media (max-width:768px){
    .bonuses-hero{
        padding:20px 0 12px;
    }

    .bonuses-hero__box{
        padding:24px 18px;
        border-radius:24px;
    }

    .bonuses-hero__title{
        font-size:clamp(30px,9vw,42px);
    }
}

.slots-hero{
    padding:34px 0 18px;
}

.slots-hero__wrap{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0,1.15fr) minmax(280px,.85fr);
    gap:20px;
}

.slots-hero__content,
.slots-hero__pill,
.slots-focus__card,
.game-card{
    border-radius:24px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            rgba(21,30,41,.92);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.24);
}

.slots-hero__content{
    padding:34px 32px;
}

.slots-hero__eyebrow{
    margin:0 0 12px;
    font-size:12px;
    font-weight:900;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:rgba(245,247,250,.58);
}

.slots-hero__title{
    margin:0 0 14px;
    font-size:clamp(34px,5vw,58px);
    line-height:1;
    font-weight:900;
    color:#fff;
}

.slots-hero__text{
    margin:0;
    color:rgba(245,247,250,.84);
    font-size:16px;
    line-height:1.8;
}

.slots-hero__side{
    display:flex;
    flex-wrap:wrap;
    align-content:flex-start;
    gap:12px;
}

.slots-hero__pill{
    padding:14px 16px;
    font-size:13px;
    font-weight:800;
    color:#fff;
}

.slots-focus__grid{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
}

.slots-focus__card{
    padding:26px 24px;
}

.slots-focus__card h3{
    margin:0 0 10px;
    font-size:24px;
    font-weight:900;
    color:#fff;
}

.slots-focus__card p{
    margin:0;
    color:rgba(245,247,250,.82);
    line-height:1.8;
}

.games-grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
}

.game-card{
    overflow:hidden;
    display:flex;
    flex-direction:column;
    height:100%;
}

.game-card__image-wrap{
    position:relative;
    overflow:hidden;
    aspect-ratio: 16 / 10;
    background:rgba(255,255,255,.04);
}

.game-card__image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .35s ease;
}

.game-card:hover .game-card__image{
    transform:scale(1.04);
}

.game-card__type{
    position:absolute;
    left:14px;
    top:14px;
    padding:8px 10px;
    border-radius:999px;
    background:rgba(8,16,24,.76);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.game-card__body{
    padding:20px 18px 18px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.game-card__body h3{
    margin:0 0 6px;
    font-size:22px;
    line-height:1.2;
    font-weight:900;
    color:#fff;
}

.game-card__provider{
    margin:0 0 10px;
    color:rgba(245,247,250,.62);
    font-size:13px;
    font-weight:700;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.game-card__text{
    margin:0 0 16px;
    color:rgba(245,247,250,.82);
    line-height:1.75;
    font-size:15px;
    flex:1;
}

.game-card__button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:0 18px;
    border-radius:14px;
    background:linear-gradient(180deg,#ffcc4d,#ffb400);
    color:#151515;
    font-weight:900;
    text-decoration:none;
    box-shadow:0 10px 24px rgba(255,180,0,.22);
    transition:transform .18s ease, box-shadow .18s ease;
}

.game-card__button:hover{
    transform:translateY(-1px);
    box-shadow:0 14px 28px rgba(255,180,0,.28);
}

.slots-content__card{
    max-width:1000px;
}

@media (max-width:1100px){
    .games-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width:1024px){
    .slots-hero__wrap{
        grid-template-columns:1fr;
    }
}

@media (max-width:900px){
    .slots-focus__grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:768px){
    .slots-hero{
        padding:20px 0 14px;
    }

    .slots-hero__content{
        padding:24px 18px;
    }

    .slots-hero__title{
        font-size:clamp(30px,9vw,44px);
    }

    .games-grid{
        grid-template-columns:1fr;
    }

    .slots-focus__card{
        padding:22px 18px;
    }

    .game-card__body{
        padding:18px 16px 16px;
    }
}
.slots-hero{
    padding:34px 0 18px;
}

.slots-hero__box{
    max-width:980px;
    margin:0 auto;
    padding:36px 30px;
    text-align:center;
    border-radius:28px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            rgba(21,30,41,.92);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.24);
}

.slots-hero__eyebrow{
    margin:0 0 12px;
    font-size:12px;
    font-weight:900;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:rgba(245,247,250,.58);
}

.slots-hero__title{
    margin:0 0 14px;
    font-size:clamp(34px,5vw,58px);
    line-height:1;
    font-weight:900;
    color:#fff;
}

.slots-hero__text{
    max-width:760px;
    margin:0 auto;
    color:rgba(245,247,250,.84);
    font-size:16px;
    line-height:1.8;
}

.slots-hero__tags{
    max-width:980px;
    margin:18px auto 0;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.slots-hero__pill{
    padding:12px 16px;
    border-radius:999px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    font-size:13px;
    font-weight:800;
}

.slots-focus__grid{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
}

.slots-focus__card{
    padding:26px 24px;
    border-radius:24px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            rgba(21,30,41,.92);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.24);
    text-align:center;
}

.slots-focus__card h3{
    margin:0 0 10px;
    font-size:24px;
    font-weight:900;
    color:#fff;
}

.slots-focus__card p{
    margin:0;
    color:rgba(245,247,250,.82);
    line-height:1.8;
}

.games-grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
}

.game-card{
    overflow:hidden;
    display:flex;
    flex-direction:column;
    height:100%;
    border-radius:24px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            rgba(21,30,41,.92);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.24);
}

.game-card__image-wrap{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    aspect-ratio:16 / 10;
    background:#0d1722;
    padding:10px;
}

.game-card__image{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    display:block;
}

.game-card__type{
    position:absolute;
    left:14px;
    top:14px;
    padding:8px 10px;
    border-radius:999px;
    background:rgba(8,16,24,.76);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.game-card__body{
    padding:20px 18px 18px;
    display:flex;
    flex-direction:column;
    flex:1;
    text-align:center;
}

.game-card__body h3{
    margin:0 0 6px;
    font-size:22px;
    line-height:1.2;
    font-weight:900;
    color:#fff;
}

.game-card__provider{
    margin:0 0 10px;
    color:rgba(245,247,250,.62);
    font-size:13px;
    font-weight:700;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.game-card__text{
    margin:0 0 16px;
    color:rgba(245,247,250,.82);
    line-height:1.75;
    font-size:15px;
    flex:1;
}

.game-card__button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:0 18px;
    border-radius:14px;
    background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
    border:1px solid rgba(255,255,255,.10);
    color:#fff;
    font-weight:900;
    text-decoration:none;
    transition:transform .18s ease, background .18s ease, border-color .18s ease;
}

.game-card__button:hover{
    transform:translateY(-1px);
    background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
    border-color:rgba(255,255,255,.16);
}

.slots-content__card{
    max-width:1000px;
}

@media (max-width:1100px){
    .games-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width:900px){
    .slots-focus__grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:768px){
    .slots-hero{
        padding:20px 0 14px;
    }

    .slots-hero__box{
        padding:24px 18px;
        border-radius:24px;
    }

    .slots-hero__title{
        font-size:clamp(30px,9vw,44px);
    }

    .games-grid{
        grid-template-columns:1fr;
    }

    .slots-focus__card{
        padding:22px 18px;
    }

    .game-card__body{
        padding:18px 16px 16px;
    }
}
.games-grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
}

.game-card{
    overflow:hidden;
    display:flex;
    flex-direction:column;
    height:100%;
    border-radius:24px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            rgba(21,30,41,.94);
    border:1px solid rgba(37,255,74,.85);
    box-shadow:
            0 0 0 1px rgba(37,255,74,.18) inset,
            0 16px 38px rgba(0,0,0,.28),
            0 0 22px rgba(37,255,74,.08);
}

.game-card__image-wrap{
    position:relative;
    height:220px;
    overflow:hidden;
    background:#08131d;
}

.game-card__image{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}

.game-card__type{
    position:absolute;
    left:14px;
    top:14px;
    padding:8px 10px;
    border-radius:999px;
    background:rgba(6,16,25,.82);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
    z-index:2;
}

.game-card__body{
    padding:18px 18px 18px;
    display:flex;
    flex-direction:column;
    flex:1;
    text-align:center;
}

.game-card__body h3{
    margin:0 0 6px;
    font-size:20px;
    line-height:1.2;
    font-weight:900;
    color:#fff;
}

.game-card__provider{
    margin:0 0 12px;
    color:rgba(245,247,250,.62);
    font-size:13px;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.game-card__text{
    margin:0 0 18px;
    color:rgba(245,247,250,.86);
    line-height:1.7;
    font-size:15px;
    flex:1;
}

.game-card__button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    width:100%;
    border-radius:16px;
    text-decoration:none;
    font-size:16px;
    font-weight:900;
    color:#07110a;
    background:linear-gradient(180deg, #5cff52 0%, #18ef16 55%, #09d900 100%);
    box-shadow:
            0 10px 24px rgba(27,255,39,.26),
            0 0 18px rgba(27,255,39,.22);
    transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.game-card__button:hover{
    transform:translateY(-1px);
    filter:brightness(1.03);
    box-shadow:
            0 14px 28px rgba(27,255,39,.30),
            0 0 22px rgba(27,255,39,.28);
}
@media (max-width:1100px){
    .games-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width:768px){
    .games-grid{
        grid-template-columns:1fr;
    }

    .game-card__image-wrap{
        height:210px;
    }

    .game-card__body{
        padding:16px;
    }

    .game-card__body h3{
        font-size:19px;
    }

    .game-card__text{
        font-size:14px;
    }

    .game-card__button{
        min-height:50px;
        font-size:15px;
    }
}
@media (max-width:1100px){
    .games-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width:768px){
    .games-grid{
        grid-template-columns:1fr;
    }

    .game-card{
        padding:16px 16px 18px;
    }

    .game-card__poster{
        width:min(170px, 100%);
    }

    .game-card__body h3{
        font-size:19px;
    }

    .game-card__text{
        font-size:14px;
    }

    .game-card__button{
        min-height:50px;
        font-size:15px;
    }
}
.games-grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
}

.game-card{
    overflow:hidden;
    display:flex;
    flex-direction:column;
    height:100%;
    border-radius:24px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            rgba(21,30,41,.94);
    border:1px solid rgba(37,255,74,.85);
    box-shadow:
            0 0 0 1px rgba(37,255,74,.18) inset,
            0 16px 38px rgba(0,0,0,.28),
            0 0 22px rgba(37,255,74,.08);
}

.game-card__image-wrap{
    position:relative;
    width:100%;
    aspect-ratio: 4 / 3;
    overflow:hidden;
    background:#0b1620;
}

.game-card__image{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    display:block;
    background:#0b1620;
}

.game-card__type{
    position:absolute;
    left:14px;
    top:14px;
    padding:8px 10px;
    border-radius:999px;
    background:rgba(6,16,25,.82);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
    z-index:2;
}

.game-card__body{
    padding:18px 18px 18px;
    display:flex;
    flex-direction:column;
    flex:1;
    text-align:center;
}

.game-card__body h3{
    margin:0 0 6px;
    font-size:20px;
    line-height:1.2;
    font-weight:900;
    color:#fff;
}

.game-card__provider{
    margin:0 0 12px;
    color:rgba(245,247,250,.62);
    font-size:13px;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.game-card__text{
    margin:0 0 18px;
    color:rgba(245,247,250,.86);
    line-height:1.7;
    font-size:15px;
    flex:1;
}

.game-card__button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    width:100%;
    border-radius:16px;
    text-decoration:none;
    font-size:16px;
    font-weight:900;
    color:#07110a;
    background:linear-gradient(180deg, #5cff52 0%, #18ef16 55%, #09d900 100%);
    box-shadow:
            0 10px 24px rgba(27,255,39,.26),
            0 0 18px rgba(27,255,39,.22);
    transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.game-card__button:hover{
    transform:translateY(-1px);
    filter:brightness(1.03);
    box-shadow:
            0 14px 28px rgba(27,255,39,.30),
            0 0 22px rgba(27,255,39,.28);
}

@media (max-width:1100px){
    .games-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width:768px){
    .games-grid{
        grid-template-columns:1fr;
    }

    .game-card__body{
        padding:16px;
    }

    .game-card__body h3{
        font-size:19px;
    }

    .game-card__text{
        font-size:14px;
    }

    .game-card__button{
        min-height:50px;
        font-size:15px;
    }
}

.games-grid-section {
    padding: 56px 0;
}

.games-grid-section .section-header {
    margin-bottom: 24px;
    text-align: center;
}

.games-grid-section .section-title {
    margin: 0 0 10px;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.1;
}

.games-grid-section .section-subtitle {
    max-width: 820px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.slot-card {
    min-width: 0;
}

.slot-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.slot-card__media {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 3 / 4;
    background: #171717;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.slot-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.slot-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
}

.slot-card__badge--live {
    background: rgba(118, 43, 255, 0.72);
}

.slot-card__badge--show {
    background: rgba(255, 78, 121, 0.72);
}

.slot-card__content {
    margin-top: 10px;
    padding: 0 6px;
    text-align: center;
}

.slot-card__title {
    margin: 0;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.slot-card__provider {
    margin: 6px 0 0;
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.72;
}

.slot-card:hover .slot-card__img,
.slot-card:focus-within .slot-card__img {
    transform: scale(1.06);
    filter: saturate(1.08);
}

.slot-card:hover .slot-card__media,
.slot-card:focus-within .slot-card__media {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    transform: translateY(-2px);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

@media (max-width: 1199px) {
    .slots-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 899px) {
    .slots-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .games-grid-section {
        padding: 42px 0;
    }

    .slots-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .slot-card__media {
        border-radius: 16px;
    }

    .slot-card__title {
        font-size: 15px;
    }

    .slot-card__provider {
        font-size: 12px;
    }

    .slot-card__badge {
        top: 10px;
        left: 10px;
        min-height: 26px;
        padding: 0 9px;
        font-size: 10px;
    }
}

@media (max-width: 380px) {
    .slots-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .slot-card__content {
        margin-top: 8px;
        padding: 0 2px;
    }

    .slot-card__title {
        font-size: 14px;
    }
}

.contact-hero{
    padding:34px 0 18px;
}

.contact-hero__panel{
    max-width:1140px;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0,1.15fr) minmax(280px,.85fr);
    gap:20px;
    align-items:stretch;
}

.contact-hero__left,
.contact-hero__mini-card,
.contact-info-card,
.contact-form-card,
.contact-note__card,
.contact-cooperation__box{
    border-radius:28px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            rgba(21,30,41,.92);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.24);
}

.contact-hero__left{
    padding:34px 30px;
}

.contact-hero__eyebrow,
.contact-cooperation__eyebrow{
    margin:0 0 12px;
    font-size:12px;
    font-weight:900;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:rgba(245,247,250,.58);
}

.contact-hero__title{
    margin:0 0 14px;
    font-size:clamp(34px,5vw,58px);
    line-height:1;
    font-weight:900;
    color:#fff;
}

.contact-hero__text{
    margin:0;
    color:rgba(245,247,250,.84);
    font-size:16px;
    line-height:1.8;
    max-width:760px;
}

.contact-hero__right{
    display:grid;
    gap:16px;
}

.contact-hero__mini-card{
    padding:24px 22px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.contact-hero__mini-label{
    font-size:12px;
    font-weight:900;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:rgba(245,247,250,.56);
    margin-bottom:8px;
}

.contact-hero__mini-value{
    color:#fff;
    font-size:18px;
    line-height:1.5;
    font-weight:800;
}

.contact-main__grid{
    max-width:1140px;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
    gap:22px;
}

.contact-info-card{
    padding:28px 24px;
}

.contact-info-card h2{
    margin:0 0 12px;
    font-size:34px;
    line-height:1.05;
    font-weight:900;
    color:#fff;
}

.contact-info-card__lead{
    margin:0 0 24px;
    color:rgba(245,247,250,.84);
    line-height:1.8;
}

.contact-info-list{
    display:grid;
    gap:16px;
}

.contact-info-item{
    display:grid;
    grid-template-columns:54px minmax(0,1fr);
    gap:14px;
    align-items:flex-start;
    padding:16px;
    border-radius:20px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.06);
}

.contact-info-item__icon{
    width:54px;
    height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:rgba(255,255,255,.05);
    color:#fff;
    font-size:20px;
}

.contact-info-item h3{
    margin:0 0 6px;
    font-size:20px;
    font-weight:900;
    color:#fff;
}

.contact-info-item p{
    margin:0;
    color:rgba(245,247,250,.8);
    line-height:1.75;
}

.contact-form-card{
    padding:28px 24px;
}

.contact-form{
    display:grid;
    gap:18px;
}

.contact-form__row{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}

.contact-form__field{
    display:grid;
    gap:8px;
}

.contact-form__field label{
    color:#fff;
    font-size:14px;
    font-weight:800;
}

.contact-form__field input,
.contact-form__field textarea{
    width:100%;
    border:none;
    outline:none;
    padding:16px 16px;
    border-radius:18px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    font:inherit;
    resize:vertical;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder{
    color:rgba(245,247,250,.45);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus{
    border-color:rgba(255,255,255,.16);
    background:rgba(255,255,255,.06);
}

.contact-form__submit{
    min-height:56px;
    border:none;
    border-radius:18px;
    padding:0 20px;
    font:inherit;
    font-size:16px;
    font-weight:900;
    color:#07110a;
    background:linear-gradient(180deg, #5cff52 0%, #18ef16 55%, #09d900 100%);
    box-shadow:
            0 10px 24px rgba(27,255,39,.26),
            0 0 18px rgba(27,255,39,.22);
    cursor:pointer;
    transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.contact-form__submit:hover{
    transform:translateY(-1px);
    filter:brightness(1.03);
    box-shadow:
            0 14px 28px rgba(27,255,39,.30),
            0 0 22px rgba(27,255,39,.28);
}

.contact-note__grid{
    max-width:1140px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
}

.contact-note__card{
    padding:24px 22px;
}

.contact-note__card h3{
    margin:0 0 10px;
    font-size:22px;
    line-height:1.2;
    font-weight:900;
    color:#fff;
}

.contact-note__card p{
    margin:0;
    color:rgba(245,247,250,.82);
    line-height:1.8;
}

.contact-cooperation__box{
    max-width:1000px;
    margin:0 auto;
    padding:30px 28px;
}

.contact-cooperation__content h2{
    margin:0 0 14px;
    font-size:38px;
    line-height:1.05;
    font-weight:900;
    color:#fff;
}

.contact-cooperation__content p{
    margin:0 0 14px;
    color:rgba(245,247,250,.84);
    line-height:1.85;
}

.contact-cooperation__content p:last-child{
    margin-bottom:0;
}

@media (max-width:1024px){
    .contact-hero__panel,
    .contact-main__grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:900px){
    .contact-note__grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:768px){
    .contact-hero{
        padding:20px 0 14px;
    }

    .contact-hero__left,
    .contact-form-card,
    .contact-info-card,
    .contact-note__card,
    .contact-cooperation__box,
    .contact-hero__mini-card{
        border-radius:24px;
    }

    .contact-hero__left{
        padding:24px 18px;
    }

    .contact-hero__title{
        font-size:clamp(30px,9vw,44px);
    }

    .contact-main__grid{
        gap:18px;
    }

    .contact-info-card,
    .contact-form-card{
        padding:22px 18px;
    }

    .contact-form__row{
        grid-template-columns:1fr;
        gap:14px;
    }

    .contact-note__card{
        padding:20px 18px;
    }

    .contact-cooperation__box{
        padding:24px 18px;
    }

    .contact-cooperation__content h2{
        font-size:30px;
    }
}

.policy-hero{
    padding:34px 0 18px;
}

.policy-hero__box,
.policy-summary__card,
.policy-toc,
.policy-article,
.policy-article__section{
    border-radius:28px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            rgba(21,30,41,.92);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.24);
}

.policy-hero__box{
    max-width:1100px;
    margin:0 auto;
    padding:34px 30px;
    text-align:center;
}

.policy-hero__eyebrow{
    margin:0 0 12px;
    font-size:12px;
    font-weight:900;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:rgba(245,247,250,.58);
}

.policy-hero__title{
    margin:0 0 14px;
    font-size:clamp(34px,5vw,58px);
    line-height:1;
    font-weight:900;
    color:#fff;
}

.policy-hero__text{
    max-width:760px;
    margin:0 auto;
    color:rgba(245,247,250,.84);
    font-size:16px;
    line-height:1.8;
}

.policy-hero__meta{
    margin-top:18px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.policy-hero__meta span{
    padding:10px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    font-size:13px;
    font-weight:800;
}

.policy-summary__grid{
    max-width:1140px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
}

.policy-summary__card{
    padding:24px 22px;
}

.policy-summary__card h3{
    margin:0 0 10px;
    font-size:22px;
    line-height:1.2;
    font-weight:900;
    color:#fff;
}

.policy-summary__card p{
    margin:0;
    color:rgba(245,247,250,.82);
    line-height:1.8;
}

.policy-layout{
    max-width:1140px;
    margin:0 auto;
    display:grid;
    grid-template-columns:300px minmax(0,1fr);
    gap:22px;
    align-items:start;
}

.policy-toc{
    padding:24px 22px;
    position:sticky;
    top:24px;
}

.policy-toc h2{
    margin:0 0 14px;
    font-size:24px;
    font-weight:900;
    color:#fff;
}

.policy-toc ul{
    list-style:none;
    margin:0;
    padding:0;
    display:grid;
    gap:10px;
}

.policy-toc a{
    display:block;
    padding:12px 14px;
    border-radius:16px;
    text-decoration:none;
    color:rgba(245,247,250,.86);
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    transition:background .18s ease, border-color .18s ease;
}

.policy-toc a:hover{
    background:rgba(255,255,255,.05);
    border-color:rgba(255,255,255,.09);
}

.policy-article{
    padding:18px;
    display:grid;
    gap:18px;
}

.policy-article__section{
    padding:26px 24px;
}

.policy-article__section h2{
    margin:0 0 12px;
    font-size:30px;
    line-height:1.08;
    font-weight:900;
    color:#fff;
}

.policy-article__section p{
    margin:0 0 14px;
    color:rgba(245,247,250,.84);
    line-height:1.9;
}

.policy-article__section p:last-child{
    margin-bottom:0;
}

@media (max-width:1024px){
    .policy-layout{
        grid-template-columns:1fr;
    }

    .policy-toc{
        position:static;
    }
}

@media (max-width:900px){
    .policy-summary__grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:768px){
    .policy-hero{
        padding:20px 0 14px;
    }

    .policy-hero__box,
    .policy-summary__card,
    .policy-toc,
    .policy-article,
    .policy-article__section{
        border-radius:24px;
    }

    .policy-hero__box{
        padding:24px 18px;
    }

    .policy-hero__title{
        font-size:clamp(30px,9vw,44px);
    }

    .policy-toc{
        padding:20px 18px;
    }

    .policy-article{
        padding:0;
        gap:14px;
        background:none;
        border:none;
        box-shadow:none;
    }

    .policy-article__section{
        padding:22px 18px;
    }

    .policy-article__section h2{
        font-size:24px;
    }
}

.policy-article a,.faq-answer a{color:#8fffa0;border-bottom:1px solid rgba(143,255,160,.34);transition:.2s ease}
.policy-article a:hover,.faq-answer a:hover{color:#fff;border-bottom-color:rgba(255,255,255,.56)}

.cookies-hero{
    padding:34px 0 18px;
}

.cookies-hero__box,
.cookies-overview__card,
.cookies-toc,
.cookies-article,
.cookies-article__section{
    border-radius:28px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            rgba(21,30,41,.92);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.24);
}

.cookies-hero__box{
    max-width:1100px;
    margin:0 auto;
    padding:34px 30px;
    text-align:center;
}

.cookies-hero__eyebrow{
    margin:0 0 12px;
    font-size:12px;
    font-weight:900;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:rgba(245,247,250,.58);
}

.cookies-hero__title{
    margin:0 0 14px;
    font-size:clamp(34px,5vw,58px);
    line-height:1;
    font-weight:900;
    color:#fff;
}

.cookies-hero__text{
    max-width:760px;
    margin:0 auto;
    color:rgba(245,247,250,.84);
    font-size:16px;
    line-height:1.8;
}

.cookies-hero__meta{
    margin-top:18px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.cookies-hero__meta span{
    padding:10px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    font-size:13px;
    font-weight:800;
}

.cookies-overview__grid{
    max-width:1140px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
}

.cookies-overview__card{
    padding:24px 22px;
}

.cookies-overview__card h3{
    margin:0 0 10px;
    font-size:22px;
    line-height:1.2;
    font-weight:900;
    color:#fff;
}

.cookies-overview__card p{
    margin:0;
    color:rgba(245,247,250,.82);
    line-height:1.8;
}

.cookies-layout{
    max-width:1140px;
    margin:0 auto;
    display:grid;
    grid-template-columns:300px minmax(0,1fr);
    gap:22px;
    align-items:start;
}

.cookies-toc{
    padding:24px 22px;
    position:sticky;
    top:24px;
}

.cookies-toc h2{
    margin:0 0 14px;
    font-size:24px;
    font-weight:900;
    color:#fff;
}

.cookies-toc ul{
    list-style:none;
    margin:0;
    padding:0;
    display:grid;
    gap:10px;
}

.cookies-toc a{
    display:block;
    padding:12px 14px;
    border-radius:16px;
    text-decoration:none;
    color:rgba(245,247,250,.86);
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    transition:background .18s ease, border-color .18s ease;
}

.cookies-toc a:hover{
    background:rgba(255,255,255,.05);
    border-color:rgba(255,255,255,.09);
}

.cookies-article{
    padding:18px;
    display:grid;
    gap:18px;
}

.cookies-article__section{
    padding:26px 24px;
}

.cookies-article__section h2{
    margin:0 0 12px;
    font-size:30px;
    line-height:1.08;
    font-weight:900;
    color:#fff;
}

.cookies-article__section p{
    margin:0 0 14px;
    color:rgba(245,247,250,.84);
    line-height:1.9;
}

.cookies-article__section p:last-child{
    margin-bottom:0;
}

@media (max-width:1024px){
    .cookies-layout{
        grid-template-columns:1fr;
    }

    .cookies-toc{
        position:static;
    }
}

@media (max-width:900px){
    .cookies-overview__grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:768px){
    .cookies-hero{
        padding:20px 0 14px;
    }

    .cookies-hero__box,
    .cookies-overview__card,
    .cookies-toc,
    .cookies-article,
    .cookies-article__section{
        border-radius:24px;
    }

    .cookies-hero__box{
        padding:24px 18px;
    }

    .cookies-hero__title{
        font-size:clamp(30px,9vw,44px);
    }

    .cookies-toc{
        padding:20px 18px;
    }

    .cookies-article{
        padding:0;
        gap:14px;
        background:none;
        border:none;
        box-shadow:none;
    }

    .cookies-article__section{
        padding:22px 18px;
    }

    .cookies-article__section h2{
        font-size:24px;
    }
}
.main-content a,.faq-answer a{color:#8fffa0;border-bottom:1px solid rgba(143,255,160,.34);transition:.2s ease}
.main-content a:hover,.faq-answer a:hover{color:#fff;border-bottom-color:rgba(255,255,255,.56)}
.quick-link-card.photo-card {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.terms-hero{
    padding:34px 0 18px;
}

.terms-hero__box,
.terms-summary__card,
.terms-toc,
.terms-article,
.terms-article__section{
    border-radius:28px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            rgba(21,30,41,.92);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.24);
}

.terms-hero__box{
    max-width:1100px;
    margin:0 auto;
    padding:34px 30px;
    text-align:center;
}

.terms-hero__eyebrow{
    margin:0 0 12px;
    font-size:12px;
    font-weight:900;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:rgba(245,247,250,.58);
}

.terms-hero__title{
    margin:0 0 14px;
    font-size:clamp(34px,5vw,58px);
    line-height:1;
    font-weight:900;
    color:#fff;
}

.terms-hero__text{
    max-width:760px;
    margin:0 auto;
    color:rgba(245,247,250,.84);
    font-size:16px;
    line-height:1.8;
}

.terms-hero__meta{
    margin-top:18px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.terms-hero__meta span{
    padding:10px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    font-size:13px;
    font-weight:800;
}

.terms-summary__grid{
    max-width:1140px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
}

.terms-summary__card{
    padding:24px 22px;
}

.terms-summary__card h3{
    margin:0 0 10px;
    font-size:22px;
    line-height:1.2;
    font-weight:900;
    color:#fff;
}

.terms-summary__card p{
    margin:0;
    color:rgba(245,247,250,.82);
    line-height:1.8;
}

.terms-layout{
    max-width:1140px;
    margin:0 auto;
    display:grid;
    grid-template-columns:300px minmax(0,1fr);
    gap:22px;
    align-items:start;
}

.terms-toc{
    padding:24px 22px;
    position:sticky;
    top:24px;
}

.terms-toc h2{
    margin:0 0 14px;
    font-size:24px;
    font-weight:900;
    color:#fff;
}

.terms-toc ul{
    list-style:none;
    margin:0;
    padding:0;
    display:grid;
    gap:10px;
}

.terms-toc a{
    display:block;
    padding:12px 14px;
    border-radius:16px;
    text-decoration:none;
    color:rgba(245,247,250,.86);
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    transition:background .18s ease, border-color .18s ease;
}

.terms-toc a:hover{
    background:rgba(255,255,255,.05);
    border-color:rgba(255,255,255,.09);
}

.terms-article{
    padding:18px;
    display:grid;
    gap:18px;
}

.terms-article__section{
    padding:26px 24px;
}

.terms-article__section h2{
    margin:0 0 12px;
    font-size:30px;
    line-height:1.08;
    font-weight:900;
    color:#fff;
}

.terms-article__section p{
    margin:0 0 14px;
    color:rgba(245,247,250,.84);
    line-height:1.9;
}

.terms-article__section p:last-child{
    margin-bottom:0;
}

@media (max-width:1024px){
    .terms-layout{
        grid-template-columns:1fr;
    }

    .terms-toc{
        position:static;
    }
}

@media (max-width:900px){
    .terms-summary__grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:768px){
    .terms-hero{
        padding:20px 0 14px;
    }

    .terms-hero__box,
    .terms-summary__card,
    .terms-toc,
    .terms-article,
    .terms-article__section{
        border-radius:24px;
    }

    .terms-hero__box{
        padding:24px 18px;
    }

    .terms-hero__title{
        font-size:clamp(30px,9vw,44px);
    }

    .terms-toc{
        padding:20px 18px;
    }

    .terms-article{
        padding:0;
        gap:14px;
        background:none;
        border:none;
        box-shadow:none;
    }

    .terms-article__section{
        padding:22px 18px;
    }

    .terms-article__section h2{
        font-size:24px;
    }
}