:root{
    --bg:#241f5d;
    --bg-top:#5443b4;
    --bg-mid:#392f87;
    --bg-bottom:#241f5d;

    --panel:rgba(20,16,48,.82);
    --panel-2:rgba(27,20,63,.82);
    --panel-3:rgba(32,24,74,.84);

    --text:#f3f5ff;
    --muted:#d6dcf3;
    --line:rgba(255,255,255,.11);

    --brand1:#7c5cff;
    --brand2:#35d6ff;
    --brand3:#f472b6;

    --gold1:#ffe27a;
    --gold2:#ffc93a;
    --gold3:#f2b300;

    --shadow:0 18px 44px rgba(0,0,0,.28);
    --shadow-strong:0 24px 54px rgba(0,0,0,.38);

    --radius:22px;
    --container:1240px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
    margin:0;
    color:var(--text);
    background:
            radial-gradient(1200px 520px at 15% 0%, rgba(255,255,255,.08), transparent 60%),
            radial-gradient(900px 420px at 85% 8%, rgba(255,255,255,.05), transparent 60%),
            linear-gradient(180deg, var(--bg-top) 0%, #46389f 22%, var(--bg-mid) 48%, #2d256b 72%, var(--bg-bottom) 100%);
    font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

a{
    color:#b9ecff;
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

.container{
    max-width:var(--container);
    margin:0 auto;
    padding:0 20px;
}

.narrow{
    max-width:920px;
    margin:0 auto;
}

/* HEADER */
.site-header{
    position:sticky;
    top:0;
    z-index:50;
    backdrop-filter:blur(14px);
    background:rgba(9,12,24,.62);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.header-row{
    min-height:74px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none !important;
}

.brand-mark{
    width:36px;
    height:36px;
    display:grid;
    place-items:center;
    border-radius:12px;
    font-weight:900;
    color:#fff;
    background:linear-gradient(135deg,var(--brand1),var(--brand2));
    box-shadow:0 10px 26px rgba(124,92,255,.28);
}

.brand-text{
    font-weight:800;
    font-size:1.5rem;
    letter-spacing:.02em;
    color:#fff;
}

.main-nav{
    display:none;
    align-items:center;
    gap:24px;
}

.main-nav a{
    color:#e1e6ff;
    text-decoration:none !important;
    opacity:.9;
}

.main-nav a:hover,
.main-nav a.is-active{
    opacity:1;
    color:#fff;
}

.header-cta{
    display:none;
}

.burger{
    display:inline-flex;
    flex-direction:column;
    gap:4px;
    background:transparent;
    border:0;
    cursor:pointer;
    padding:0;
}

.burger span{
    width:24px;
    height:2px;
    border-radius:2px;
    background:#dce7ff;
}

/* GLOBAL BUTTONS */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border-radius:14px;
    padding:12px 18px;
    font-weight:800;
    border:0;
    text-decoration:none !important;
    transition:transform .16s ease, filter .16s ease, box-shadow .16s ease;
}

.btn:hover{
    transform:translateY(-1px);
    text-decoration:none;
}

.btn-primary{
    color:#fff;
    background:linear-gradient(90deg,var(--brand1),var(--brand2));
    box-shadow:0 14px 30px rgba(53,214,255,.16), 0 10px 26px rgba(124,92,255,.22);
}

.btn-ghost{
    color:#eef2ff;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.14);
}

.btn-ghost:hover{
    background:rgba(255,255,255,.08);
}

/* TOP UK OFFERS */
.offers-section{
    padding:56px 0 36px;
    background:transparent;
    border:0;
}

.offers-shell{
    padding:26px;
    border-radius:28px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.04), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            var(--panel-2);
    border:1px solid rgba(255,255,255,.09);
    box-shadow:var(--shadow);
    backdrop-filter:blur(10px);
}

.section-label,
.group-label span,
.group-label.alt span{
    display:inline-flex;
    align-items:center;
    min-height:42px;
    padding:8px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.10) !important;
    border:1px solid rgba(255,255,255,.12) !important;
    color:#fff !important;
    font-size:14px;
    font-weight:800;
    backdrop-filter:blur(10px);
}

.section-label{
    margin-bottom:10px;
}

.offers-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.offer-card{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    min-height:245px;
    background:#000;
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 14px 34px rgba(0,0,0,.34);
    transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.offer-card:hover{
    transform:translateY(-4px);
    border-color:rgba(255,255,255,.16);
    box-shadow:
            0 20px 44px rgba(0,0,0,.44),
            0 0 22px rgba(124,92,255,.12);
}

.offer-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    filter:none;
}

.offer-card::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:78px;
    background:linear-gradient(to top, rgba(0,0,0,.28), rgba(0,0,0,.06) 55%, transparent 100%);
    pointer-events:none;
}

/* UNIVERSAL GOLD CTA */
.claim-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:178px;
    padding:14px 30px;
    border-radius:999px;
    background:linear-gradient(180deg, var(--gold1) 0%, var(--gold2) 55%, var(--gold3) 100%);
    color:#111;
    font-weight:900;
    font-size:15px;
    letter-spacing:.02em;
    text-decoration:none !important;
    text-transform:uppercase;
    box-shadow:
            inset 0 2px 0 rgba(255,255,255,.45),
            0 8px 18px rgba(255,200,0,.35),
            0 0 0 rgba(255,215,90,0);
    transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.claim-btn:hover{
    filter:brightness(1.04);
    text-decoration:none !important;
    box-shadow:
            inset 0 2px 0 rgba(255,255,255,.5),
            0 12px 26px rgba(255,200,0,.45),
            0 0 26px rgba(255,220,110,.35);
}

/* UK CARD BUTTON */
.offer-card > .claim-btn{
    position:absolute;
    left:50%;
    bottom:18px;
    transform:translateX(-50%);
    z-index:3;
    animation:claimPulse 1.7s ease-in-out infinite;
}

.offer-card > .claim-btn:hover{
    transform:translateX(-50%) scale(1.08);
}

@keyframes claimPulse{
    0%{
        transform:translateX(-50%) scale(1);
        box-shadow:
                inset 0 2px 0 rgba(255,255,255,.45),
                0 8px 18px rgba(255,200,0,.30),
                0 0 0 rgba(255,215,90,0);
    }
    50%{
        transform:translateX(-50%) scale(1.06);
        box-shadow:
                inset 0 2px 0 rgba(255,255,255,.5),
                0 12px 28px rgba(255,200,0,.44),
                0 0 24px rgba(255,220,110,.32);
    }
    100%{
        transform:translateX(-50%) scale(1);
        box-shadow:
                inset 0 2px 0 rgba(255,255,255,.45),
                0 8px 18px rgba(255,200,0,.30),
                0 0 0 rgba(255,215,90,0);
    }
}

/* HERO */
.hero{
    padding:clamp(46px,8vw,102px) 0 34px;
}

.hero-grid{
    display:grid;
    gap:26px;
    align-items:center;
}

.hero-copy h1{
    margin:0 0 14px;
    font-size:clamp(34px,6vw,68px);
    line-height:1.03;
    letter-spacing:-.03em;
    color:#f4f6ff;
}

.eyebrow{
    margin:0 0 12px;
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.14em;
    color:#ddd2ff;
}

.hero-lead{
    margin:0;
    max-width:760px;
    color:var(--muted);
    font-size:clamp(16px,2.1vw,19px);
    line-height:1.7;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:24px;
}

.hero-tags{
    list-style:none;
    padding:0;
    margin:22px 0 0;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.hero-tags li{
    padding:10px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.10);
    color:#edf2ff;
    font-size:13px;
    font-weight:700;
}

.hero-card{
    position:relative;
}

.hero-card-inner{
    border-radius:28px;
    overflow:hidden;
}

/* COMMON PANELS */
.hero-card-inner,
.info-card,
.feature-panel,
.faq-item,
.social-card{
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            var(--panel);
    border:1px solid rgba(255,255,255,.11);
    box-shadow:var(--shadow);
    backdrop-filter:blur(10px);
}

.avatar-shell{
    padding:18px 18px 0;
}

.avatar-shell img{
    width:100%;
    aspect-ratio:4/4.8;
    object-fit:cover;
    border-radius:20px;
    background:#0c1021;
}

.hero-metrics{
    padding:18px;
    display:grid;
    gap:12px;
}

.metric{
    padding:14px 16px;
    border-radius:16px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
}

.metric-label{
    display:block;
    margin-bottom:4px;
    color:#c5cce6;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.metric-value{
    display:block;
    color:#fff;
    font-weight:800;
    line-height:1.45;
}

/* CONTENT SECTIONS */
.section{
    padding:28px 0 38px;
}

.section-head{
    margin-bottom:18px;
}

.section-head.center{
    text-align:center;
}

.section-head h2{
    margin:0 0 10px;
    font-size:clamp(26px,4vw,42px);
    line-height:1.08;
    letter-spacing:-.02em;
}

.section-head p{
    margin:0;
    color:var(--muted);
    line-height:1.8;
}

.intro .section-head p + p{
    margin-top:18px;
}

/* EU OFFERS */
.offers{
    padding-top:12px;
}

.offers-group{
    margin-top:22px;
}

.group-label{
    margin:0 0 14px;
}

.offer-row{
    display:grid;
    grid-template-columns:150px 1fr 1fr 1fr 1.2fr auto;
    gap:18px;
    align-items:center;
    margin-top:14px;
    padding:16px 18px;
    color:var(--text);
    border-radius:22px;
    border:1px solid rgba(255,255,255,.10);
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            var(--panel-2);
    box-shadow:var(--shadow);
    text-decoration:none !important;
    transition:transform .16s ease, border-color .16s ease, box-shadow .16s ease;
    backdrop-filter:blur(8px);
}

.offer-row:hover{
    transform:translateY(-2px);
    border-color:rgba(255,255,255,.16);
    box-shadow:
            0 22px 42px rgba(0,0,0,.34),
            0 0 18px rgba(255,255,255,.05);
}

.offer-logo{
    height:64px;
    display:grid;
    place-items:center;
}

.offer-logo img{
    max-width:90%;
    max-height:72%;
    object-fit:contain;
}

.offer-col{
    display:grid;
    gap:4px;
}

.offer-k{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.09em;
    color:#c5cce6;
}

.offer-v{
    font-size:16px;
    font-weight:800;
    line-height:1.25;
}

.offer-features{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.offer-features span{
    padding:8px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
    color:#eef2ff;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
}

.offer-cta{
    display:flex;
    justify-content:flex-end;
}

.offer-cta .claim-btn{
    position:static;
    transform:none;
    min-width:128px;
    padding:12px 16px;
    font-size:14px;
    animation:claimPulseRow 1.9s ease-in-out infinite;
}

.offer-cta .claim-btn:hover{
    transform:scale(1.06);
}

@keyframes claimPulseRow{
    0%{
        transform:scale(1);
        box-shadow:
                inset 0 2px 0 rgba(255,255,255,.45),
                0 8px 18px rgba(255,200,0,.30),
                0 0 0 rgba(255,215,90,0);
    }
    50%{
        transform:scale(1.05);
        box-shadow:
                inset 0 2px 0 rgba(255,255,255,.5),
                0 12px 28px rgba(255,200,0,.42),
                0 0 20px rgba(255,220,110,.26);
    }
    100%{
        transform:scale(1);
        box-shadow:
                inset 0 2px 0 rgba(255,255,255,.45),
                0 8px 18px rgba(255,200,0,.30),
                0 0 0 rgba(255,215,90,0);
    }
}

.tnc{
    margin:18px 0 0;
    text-align:center;
    color:#d6dcf3;
    font-size:13px;
}

/* CARDS / INFO */
.cards-3{
    display:grid;
    gap:18px;
}

.info-card{
    padding:22px;
}

.info-card h2{
    margin:0 0 10px;
    font-size:24px;
}

.info-card p{
    margin:0;
    color:var(--muted);
    line-height:1.8;
}

/* FEATURE */
.feature-grid{
    display:grid;
    gap:20px;
    align-items:start;
}

.feature-copy h2{
    margin:0 0 12px;
    font-size:clamp(28px,4vw,44px);
    line-height:1.08;
}

.feature-copy p{
    margin:0;
    color:var(--muted);
    line-height:1.8;
}

.feature-copy p + p{
    margin-top:18px;
}

.feature-panel{
    padding:18px;
}

.mini-list{
    display:grid;
    gap:12px;
}

.mini-item{
    padding:14px 16px;
    border-radius:16px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
}

.mini-k{
    display:block;
    margin-bottom:4px;
    font-size:12px;
    color:#c5cce6;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.mini-v{
    display:block;
    font-weight:800;
}

/* SOCIALS */
.social-grid{
    display:grid;
    gap:16px;
}

.social-card{
    display:flex;
    flex-direction:column;
    gap:6px;
    padding:20px;
    text-decoration:none !important;
    transition:transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.social-card:hover{
    text-decoration:none;
    transform:translateY(-2px);
    border-color:rgba(255,255,255,.18);
    box-shadow:var(--shadow-strong);
}

.social-name{
    font-size:20px;
    font-weight:800;
    color:#fff;
}

.social-desc{
    color:var(--muted);
    line-height:1.6;
}

/* FAQ */
.faq-list{
    display:grid;
    gap:16px;
}

.faq-item{
    padding:22px;
}

.faq-item h3{
    margin:0 0 10px;
    font-size:22px;
}

.faq-item p{
    margin:0;
    color:var(--muted);
    line-height:1.8;
}

/* FOOTER */
.site-footer{
    padding:42px 0 54px;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-brand{
    display:inline-block;
    margin-bottom:18px;
    font-size:28px;
    font-weight:900;
    color:#fff;
    text-decoration:none !important;
}

.footer-links{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px 16px;
    margin-bottom:14px;
}

.footer-links a{
    padding:10px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.09);
    color:#eef2ff;
    text-decoration:none !important;
}

.footer-copy,
.footer-note{
    margin:8px 0 0;
    text-align:center;
    color:var(--muted);
    line-height:1.7;
}

/* MOBILE MENU */
.main-nav.is-open{
    position:fixed;
    top:76px;
    left:16px;
    right:16px;
    display:flex;
    flex-direction:column;
    gap:8px;
    padding:14px;
    border-radius:18px;
    background:rgba(17,22,45,.96);
    border:1px solid rgba(255,255,255,.11);
    box-shadow:0 24px 54px rgba(0,0,0,.42);
    backdrop-filter:blur(12px);
}

.main-nav.is-open a{
    padding:12px 12px;
    border-radius:12px;
}

.main-nav.is-open a:hover{
    background:rgba(255,255,255,.05);
}

:focus-visible{
    outline:2px solid var(--brand2);
    outline-offset:2px;
}

/* RESPONSIVE */
@media (min-width:860px){
    .main-nav{display:flex}
    .burger{display:none}
    .header-cta{display:inline-flex}
}

@media (min-width:980px){
    .hero-grid{
        grid-template-columns:1.08fr .92fr;
    }

    .cards-3{
        grid-template-columns:repeat(3,1fr);
    }

    .feature-grid{
        grid-template-columns:1.05fr .95fr;
    }

    .social-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

@media (max-width:1120px){
    .offer-row{
        grid-template-columns:130px 1fr 1fr 1fr;
    }

    .offer-features{
        grid-column:1/-1;
    }

    .offer-cta{
        grid-column:1/-1;
        justify-content:flex-start;
    }
}

@media (max-width:900px){
    .offers-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width:720px){
    .hero{
        padding-top:34px;
    }

    .offer-row{
        grid-template-columns:1fr 1fr;
        gap:12px;
        padding:16px;
    }

    .offer-logo{
        grid-column:1/-1;
        height:72px;
    }

    .offer-features,
    .offer-cta{
        grid-column:1/-1;
    }

    .offer-cta{
        justify-content:center;
    }

    .offer-cta .claim-btn{
        width:100%;
    }

    .section{
        padding:20px 0 28px;
    }
}

@media (max-width:600px){
    .offers-grid{
        grid-template-columns:1fr;
    }

    .claim-btn{
        min-width:170px;
    }
}
.offers-shell{
    padding:26px;
    border-radius:28px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.04), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            var(--panel-2);
    border:1px solid rgba(255,255,255,.09);
    box-shadow:var(--shadow);
    backdrop-filter:blur(10px);
}


/* EU offers redesign */
.eu-offers-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:16px;
}

.eu-offer-card{
    display:flex;
    flex-direction:column;
    gap:12px;
    padding:16px 18px 18px;
    border-radius:24px;
    border:1px solid rgba(255,255,255,.10);
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            rgba(27,20,63,.82);
    box-shadow:0 14px 32px rgba(0,0,0,.24);
    color:var(--text);
    text-decoration:none !important;
    transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    backdrop-filter:blur(8px);
}

.eu-offer-card:hover{
    transform:translateY(-3px);
    border-color:rgba(255,255,255,.16);
    box-shadow:
            0 18px 38px rgba(0,0,0,.30),
            0 0 18px rgba(255,255,255,.04);
}

.eu-offer-logo{
    height:58px;
    display:grid;
    place-items:center;
    text-align:center;
    margin-bottom:2px;
}

.eu-offer-logo img{
    max-width:185px;
    max-height:60px;
    object-fit:contain;
    margin:0 auto;
}

.eu-offer-meta{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:10px 14px;
}

.eu-offer-col{
    display:grid;
    gap:3px;
    min-width:0;
}

.eu-k{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.09em;
    color:#c5cce6;
    line-height:1.1;
}

.eu-v{
    font-size:14px;
    font-weight:800;
    line-height:1.25;
    color:#fff;
    word-break:break-word;
}

.eu-offer-tags{
    display:flex;
    flex-wrap:wrap;
    gap:7px;
    margin-top:2px;
}

.eu-offer-tags span{
    padding:7px 10px;
    border-radius:999px;
    font-size:11px;
    font-weight:700;
    color:#eef2ff;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    line-height:1.1;
}

.eu-offer-cta{
    display:flex;
    justify-content:center;
}

.claim-btn--inline{
    position:static;
    transform:none;
    min-width:150px;
    padding:12px 16px;
    font-size:14px;
    animation:claimPulseRow 1.9s ease-in-out infinite;
}

.claim-btn--inline:hover{
    transform:scale(1.05);
}

/* tablet */
@media (max-width: 980px){
    .eu-offers-grid{
        grid-template-columns:1fr;
    }
}

/* mobile */
@media (max-width: 720px){
    .eu-offer-card{
        padding:16px;
        border-radius:22px;
        gap:12px;
        text-align:center;
    }

    .eu-offer-logo{
        height:62px;
        margin-bottom:0;
    }

    .eu-offer-logo img{
        max-width:220px;
        max-height:60px;
    }

    .eu-offer-meta{
        grid-template-columns:1fr;
        gap:10px;
    }

    .eu-offer-col{
        justify-items:center;
        text-align:center;
    }

    .eu-k,
    .eu-v{
        text-align:center;
    }

    .eu-offer-tags{
        justify-content:center;
    }

    .eu-offer-cta{
        justify-content:center;
    }

    .claim-btn--inline{
        width:100%;
        min-width:0;
        max-width:280px;
    }
}

/* very small mobile */
@media (max-width: 420px){
    .eu-offer-card{
        padding:14px;
    }

    .eu-offer-tags span{
        font-size:10.5px;
        padding:7px 9px;
    }

    .eu-v{
        font-size:13.5px;
    }
}
.eu-offers-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:16px;
    max-width:1000px; /* ВАЖНО */
    margin:0 auto; /* центрирование */
}
@media (min-width:1200px){
    .eu-offers-grid{
        grid-template-columns:repeat(3, 1fr);
        max-width:1200px;
    }
}
.eu-offer-card{
    padding:14px 16px 16px;
    gap:10px;
}
.claim-btn--inline{
    min-width:130px;
    padding:10px 14px;
    font-size:13px;
}
@media (max-width: 768px){
    .eu-offers-grid{
        grid-template-columns:1fr; /* одна карточка */
        max-width:480px; /* чтобы не растягивалась */
        margin:0 auto;
    }
}
.group-label.alt{
    text-align:center;
}

.group-label.alt span{
    margin:0 auto;
}
.eu-offer-card{
    text-align:center;
}
.eu-offer-col{
    justify-items:center;
    text-align:center;
}
.eu-offer-tags{
    justify-content:center;
}

.hero{
    padding:60px 0 40px;
}

.hero-grid{
    display:grid;
    gap:32px;
    align-items:center;
}

.hero-copy{
    max-width:620px;
}

.hero-copy h1{
    font-size:clamp(32px,5vw,54px);
    line-height:1.1;
    margin-bottom:14px;
}

.hero-lead{
    font-size:16px;
    line-height:1.7;
    max-width:520px;
}

.hero-actions{
    margin-top:20px;
}

.hero-visual{
    border-radius:22px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.1);
    box-shadow:0 20px 60px rgba(0,0,0,.4);
}

.hero-visual img{
    width:100%;
    display:block;
}
@media (max-width:900px){
    .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-copy{
        margin:0 auto;
    }

    .hero-actions{
        justify-content:center;
        display:flex;
    }
}

.site-header{
    position:sticky;
    top:0;
    z-index:100;
    backdrop-filter:blur(14px);
    background:rgba(28, 22, 72, .88);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.header-row{
    position:relative;
    min-height:74px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none !important;
    flex:0 0 auto;
}

.brand-mark{
    width:36px;
    height:36px;
    display:grid;
    place-items:center;
    border-radius:12px;
    font-weight:900;
    color:#fff;
    background:linear-gradient(135deg,#7c5cff,#35d6ff);
    box-shadow:0 10px 26px rgba(124,92,255,.28);
}

.brand-text{
    font-weight:800;
    color:#fff;
    white-space:nowrap;
}

.main-nav{
    display:none;
    align-items:center;
    gap:24px;
}

.main-nav a{
    color:#eef2ff;
    text-decoration:none !important;
    opacity:.92;
}

.main-nav a:hover,
.main-nav a.is-active{
    opacity:1;
    color:#fff;
}

.header-cta{
    display:none;
}

.burger{
    display:inline-flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    width:44px;
    height:44px;
    background:transparent;
    border:0;
    padding:0;
    cursor:pointer;
    border-radius:10px;
    flex:0 0 auto;
    z-index:110;
}

.burger span{
    width:24px;
    height:2px;
    border-radius:2px;
    background:#e9eeff;
    transition:transform .18s ease, opacity .18s ease;
}

.burger[aria-expanded="true"] span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2){
    opacity:0;
}
.burger[aria-expanded="true"] span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

.main-nav.is-open{
    position:absolute;
    top:calc(100% + 10px);
    left:0;
    right:0;
    display:flex;
    flex-direction:column;
    gap:8px;
    padding:14px;
    border-radius:18px;
    background:rgba(20,16,48,.98);
    border:1px solid rgba(255,255,255,.11);
    box-shadow:0 24px 54px rgba(0,0,0,.42);
    backdrop-filter:blur(12px);
    z-index:105;
}

.main-nav.is-open a{
    display:block;
    padding:12px 14px;
    border-radius:12px;
}

.main-nav.is-open a:hover{
    background:rgba(255,255,255,.05);
    text-decoration:none;
}

@media (min-width: 861px){
    .main-nav{
        display:flex;
    }

    .burger{
        display:none;
    }

    .header-cta{
        display:inline-flex;
    }
}

.offers-grid--eu{
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
    margin-top:16px;
}

.offers-grid--eu .offer-card{
    min-height:220px;
}

.offers-grid--eu .claim-btn{
    min-width:160px;
    padding:12px 22px;
    font-size:14px;
}

@media (max-width: 1100px){
    .offers-grid--eu{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width: 768px){
    .offers-grid--eu{
        grid-template-columns:1fr;
        max-width:480px;
        margin:16px auto 0;
    }

    .offers-grid--eu .offer-card{
        min-height:210px;
    }

    .offers-grid--eu .claim-btn{
        min-width:170px;
    }
}
.offers-grid--eu{
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
}

.offer-card--centered{
    grid-column:2 / 3;
}

@media (max-width:1100px){
    .offers-grid--eu{
        grid-template-columns:repeat(2, 1fr);
    }

    .offer-card--centered{
        grid-column:1 / -1;
        justify-self:center;
        width:min(100%, 420px);
    }
}

@media (max-width:768px){
    .offers-grid--eu{
        grid-template-columns:1fr;
    }

    .offer-card--centered{
        grid-column:auto;
        width:100%;
    }
}

.offers-label-wrap{
    display:flex;
    justify-content:center;
    margin-bottom:12px;
}

.section-label--big{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:12px 26px;
    border-radius:999px;
    background:linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.08));
    border:1px solid rgba(255,255,255,.14);
    color: #ffdf4b !important;
    font-size:22px;
    font-weight:900;
    letter-spacing:.01em;
    box-shadow:
            0 10px 24px rgba(0,0,0,.18),
            inset 0 1px 0 rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
}

.offers-shell{
    padding:28px;
    border-radius:28px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.04), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            rgba(27,20,63,.82);
    border:1px solid rgba(255,255,255,.09);
    box-shadow:0 18px 44px rgba(0,0,0,.28);
    backdrop-filter:blur(10px);
}

.offers-shell--eu{
    margin-top:26px;
}

.offers-grid--eu{
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
}

.offer-card--centered{
    grid-column:2 / 3;
}

@media (max-width:1100px){
    .offers-grid--eu{
        grid-template-columns:repeat(2, 1fr);
    }

    .offer-card--centered{
        grid-column:1 / -1;
        justify-self:center;
        width:min(100%, 420px);
    }
}

@media (max-width:768px){
    .section-label--big{
        min-height:46px;
        padding:10px 22px;
        font-size:22px;
    }

    .offers-shell{
        padding:18px;
        border-radius:22px;
    }

    .offers-grid--eu{
        grid-template-columns:1fr;
        max-width:480px;
        margin:0 auto;
    }

    .offer-card--centered{
        grid-column:auto;
        width:100%;
    }
}
.offers-shell--main{
    padding:42px 32px;
    border-radius:32px;

    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01)),
            rgba(27,20,63,.88);

    border:1px solid rgba(255,255,255,.1);
    box-shadow:0 30px 70px rgba(0,0,0,.35);

}

.section-head--offers{
    margin-bottom:30px;
}

.section-head--offers h2{
    font-size:36px;
    font-weight:900;
}

.section-head--offers p{
    max-width:700px;
    margin:12px auto 0;
    color: #ffffff;
    opacity:.85;
}
.offers-shell-inner{
    margin-top:40px;
    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.08);
}

@media (max-width:768px){

    .offers-shell--main{
        padding:24px 16px;
        border-radius:22px;
    }

    .section-head--offers h2{
        font-size:26px;
    }

    .section-head--offers p{
        font-size:14px;
    }
}


/* premium section heading */
.section-head--premium h2{
    font-size:clamp(30px, 4vw, 46px);
    font-weight:900;
    letter-spacing:-.03em;
}

.section-head--premium p{
    max-width:760px;
    margin:12px auto 0;
    color:#d7dcf2;
}

/* premium panels */
.premium-panel,
.premium-card,
.social-card,
.faq-item{
    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,16,50,.84);
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 20px 44px rgba(0,0,0,.30);
    backdrop-filter:blur(10px);
}

/* premium highlights */
.premium-highlights{
    padding-top:34px;
}

.premium-cards{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:20px;
}

.premium-card{
    position:relative;
    padding:24px;
    border-radius:26px;
    overflow:hidden;
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.premium-card:hover{
    transform:translateY(-4px);
    border-color:rgba(255,255,255,.16);
    box-shadow:0 24px 54px rgba(0,0,0,.38);
}

.premium-card--violet::before,
.premium-card--pink::before,
.premium-card--cyan::before{
    content:"";
    position:absolute;
    inset:auto -20% -20% -20%;
    height:140px;
    filter:blur(42px);
    opacity:.35;
    pointer-events:none;
}

.premium-card--violet::before{
    background:radial-gradient(circle, rgba(124,92,255,.95) 0%, transparent 65%);
}

.premium-card--pink::before{
    background:radial-gradient(circle, rgba(244,114,182,.95) 0%, transparent 65%);
}

.premium-card--cyan::before{
    background:radial-gradient(circle, rgba(53,214,255,.95) 0%, transparent 65%);
}

.premium-icon{
    width:56px;
    height:56px;
    display:grid;
    place-items:center;
    border-radius:16px;
    margin-bottom:16px;
    font-size:26px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
}

.premium-card h3{
    margin:0 0 10px;
    font-size:24px;
    font-weight:900;
}

.premium-card p{
    margin:0 0 18px;
    color:#d7dcf2;
    line-height:1.75;
}

.premium-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#fff;
    font-weight:800;
    text-decoration:none !important;
}

.premium-link::after{
    content:"→";
    font-size:16px;
}

/* feature premium */
.feature--premium{
    padding-top:18px;
}

.feature-grid{
    display:grid;
    gap:22px;
    align-items:stretch;
}

.feature-copy.premium-panel,
.feature-panel.premium-panel{
    padding:26px;
    border-radius:28px;
}

.feature-copy h2{
    margin:0 0 12px;
    font-size:clamp(30px, 4vw, 46px);
    line-height:1.08;
}

.feature-copy p{
    color:#d7dcf2;
    line-height:1.8;
}

.feature-copy p + p{
    margin-top:16px;
}

.feature-badges{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:20px;
}

.feature-badges span{
    padding:10px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.09);
    color:#eef2ff;
    font-size:13px;
    font-weight:800;
}

.mini-list{
    display:grid;
    gap:12px;
}

.mini-item{
    padding:16px;
    border-radius:18px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
}

.mini-k{
    display:block;
    margin-bottom:5px;
    font-size:12px;
    color:#cfd5ef;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.mini-v{
    display:block;
    font-weight:900;
    color:#fff;
}

/* socials premium */
.socials--premium{
    padding-top:24px;
}

.social-grid--premium{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:18px;
}

.social-card{
    position:relative;
    padding:22px;
    border-radius:24px;
    display:flex;
    flex-direction:column;
    gap:10px;
    text-decoration:none !important;
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    overflow:hidden;
}

.social-card:hover{
    transform:translateY(-4px);
    border-color:rgba(255,255,255,.16);
    box-shadow:0 24px 54px rgba(0,0,0,.34);
}

.social-badge{
    align-self:flex-start;
    padding:7px 10px;
    border-radius:999px;
    font-size:11px;
    font-weight:900;
    letter-spacing:.06em;
    text-transform:uppercase;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
    color:#fff;
}

.social-name{
    font-size:24px;
    font-weight:900;
    color:#fff;
}

.social-desc{
    color:#d7dcf2;
    line-height:1.7;
}

.social-card--kick::before,
.social-card--instagram::before,
.social-card--discord::before,
.social-card--youtube::before,
.social-card--tiktok::before,
.social-card--news::before{
    content:"";
    position:absolute;
    inset:auto -25% -25% -25%;
    height:140px;
    filter:blur(44px);
    opacity:.28;
    pointer-events:none;
}

.social-card--kick::before{
    background:radial-gradient(circle, rgba(53,214,255,.95) 0%, transparent 65%);
}
.social-card--instagram::before{
    background:radial-gradient(circle, rgba(244,114,182,.95) 0%, transparent 65%);
}
.social-card--discord::before{
    background:radial-gradient(circle, rgba(124,92,255,.95) 0%, transparent 65%);
}
.social-card--youtube::before{
    background:radial-gradient(circle, rgba(255,80,80,.95) 0%, transparent 65%);
}
.social-card--tiktok::before{
    background:radial-gradient(circle, rgba(53,214,255,.95) 0%, transparent 65%);
}
.social-card--news::before{
    background:radial-gradient(circle, rgba(255,200,0,.95) 0%, transparent 65%);
}

/* faq premium */
.faq--premium .faq-list{
    display:grid;
    gap:18px;
}

.faq-item{
    padding:24px;
    border-radius:24px;
}

.faq-item h3{
    margin:0 0 10px;
    font-size:24px;
    font-weight:900;
}

.faq-item p{
    margin:0;
    color:#d7dcf2;
    line-height:1.8;
}

/* footer premium */
.site-footer{
    padding:54px 0 62px;
    border-top:1px solid rgba(255,255,255,.08);
    background:
            linear-gradient(180deg, rgba(255,255,255,.02), transparent),
            rgba(18,14,44,.65);
    backdrop-filter:blur(10px);
}

.footer-brand{
    display:inline-block;
    margin-bottom:20px;
    font-size:32px;
    font-weight:900;
    color:#fff;
    text-decoration:none !important;
}

.footer-links{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px 16px;
    margin-bottom:16px;
}

.footer-links a{
    padding:10px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.09);
    color:#eef2ff;
    text-decoration:none !important;
    font-weight:700;
}

.footer-copy,
.footer-note{
    margin:8px 0 0;
    text-align:center;
    color:#d7dcf2;
    line-height:1.7;
}

/* responsive */
@media (min-width:980px){
    .feature-grid{
        grid-template-columns:1.08fr .92fr;
    }
}

@media (max-width:980px){
    .premium-cards{
        grid-template-columns:1fr;
    }

    .social-grid--premium{
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width:720px){
    .feature-copy.premium-panel,
    .feature-panel.premium-panel,
    .premium-card,
    .social-card,
    .faq-item{
        padding:18px;
        border-radius:22px;
    }

    .social-grid--premium{
        grid-template-columns:1fr;
    }

    .premium-icon{
        width:50px;
        height:50px;
        font-size:22px;
    }

    .premium-card h3,
    .social-name,
    .faq-item h3{
        font-size:22px;
    }

    .feature-copy h2{
        font-size:28px;
    }
}

.social-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:10px;
}

.social-icon{
    width:48px;
    height:48px;
    border-radius:14px;
    display:grid;
    place-items:center;

    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);

    box-shadow:0 6px 18px rgba(0,0,0,.3);
}

.social-icon img{
    width:48px;
    height:48px;
    object-fit:contain;
}
.social-card--kick .social-icon{
    background:rgba(53,214,255,.15);
    box-shadow:0 0 18px rgba(53,214,255,.35);
}

.social-card--youtube .social-icon{
    background:rgba(255,0,0,.15);
    box-shadow:0 0 18px rgba(255,0,0,.35);
}

.social-card--instagram .social-icon{
    background:rgba(244,114,182,.15);
    box-shadow:0 0 18px rgba(244,114,182,.35);
}

.social-card--discord .social-icon{
    background:rgba(124,92,255,.15);
    box-shadow:0 0 18px rgba(124,92,255,.35);
}

.social-card--tiktok .social-icon{
    background:rgba(53,214,255,.15);
    box-shadow:0 0 18px rgba(53,214,255,.35);
}

.social-card--news .social-icon{
    background:rgba(255,200,0,.15);
    box-shadow:0 0 18px rgba(255,200,0,.35);
}
.social-card:hover .social-icon{
    transform:scale(1.08);
}

.social-icon{
    transition:all .2s ease;
}
.socials--premium{
    padding-top:24px;
}

.section-head--premium h2{
    font-size:clamp(30px, 4vw, 46px);
    font-weight:900;
    letter-spacing:-.03em;
}

.section-head--premium p{
    max-width:760px;
    margin:12px auto 0;
    color:#d7dcf2;
}

.social-grid--premium{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:18px;
}

.social-card{
    position:relative;
    padding:22px;
    border-radius:24px;
    display:flex;
    flex-direction:column;
    gap:10px;
    text-decoration:none !important;
    overflow:hidden;

    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,16,50,.84);

    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 20px 44px rgba(0,0,0,.30);
    backdrop-filter:blur(10px);

    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.social-card:hover{
    transform:translateY(-4px);
    border-color:rgba(255,255,255,.16);
    box-shadow:0 24px 54px rgba(0,0,0,.34);
    text-decoration:none;
}

.social-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:10px;
}

.social-icon{
    width:48px;
    height:48px;
    border-radius:14px;
    display:grid;
    place-items:center;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 6px 18px rgba(0,0,0,.3);
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.social-icon img{
    width:40px;
    height:40px;
    object-fit:contain;
}

.social-card:hover .social-icon{
    transform:scale(1.08);
}

.social-badge{
    align-self:flex-start;
    padding:7px 10px;
    border-radius:999px;
    font-size:11px;
    font-weight:900;
    letter-spacing:.06em;
    text-transform:uppercase;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
    color:#fff;
}

.social-name{
    font-size:24px;
    font-weight:900;
    color:#fff;
}

.social-desc{
    color:#d7dcf2;
    line-height:1.7;
}

.social-card--kick .social-icon{
    background:rgba(53,214,255,.15);
    box-shadow:0 0 18px rgba(53,214,255,.35);
}

.social-card--youtube .social-icon{
    background:rgba(255,0,0,.15);
    box-shadow:0 0 18px rgba(255,0,0,.35);
}

.social-card--instagram .social-icon{
    background:rgba(244,114,182,.15);
    box-shadow:0 0 18px rgba(244,114,182,.35);
}

.social-card--discord .social-icon{
    background:rgba(124,92,255,.15);
    box-shadow:0 0 18px rgba(124,92,255,.35);
}

.social-card--tiktok .social-icon{
    background:rgba(53,214,255,.15);
    box-shadow:0 0 18px rgba(53,214,255,.35);
}

.social-card--news .social-icon{
    background:rgba(255,200,0,.15);
    box-shadow:0 0 18px rgba(255,200,0,.35);
}

.social-card--kick::before,
.social-card--instagram::before,
.social-card--discord::before,
.social-card--youtube::before,
.social-card--tiktok::before,
.social-card--news::before{
    content:"";
    position:absolute;
    inset:auto -25% -25% -25%;
    height:140px;
    filter:blur(44px);
    opacity:.28;
    pointer-events:none;
}

.social-card--kick::before{
    background:radial-gradient(circle, rgba(53,214,255,.95) 0%, transparent 65%);
}
.social-card--instagram::before{
    background:radial-gradient(circle, rgba(244,114,182,.95) 0%, transparent 65%);
}
.social-card--discord::before{
    background:radial-gradient(circle, rgba(124,92,255,.95) 0%, transparent 65%);
}
.social-card--youtube::before{
    background:radial-gradient(circle, rgba(255,80,80,.95) 0%, transparent 65%);
}
.social-card--tiktok::before{
    background:radial-gradient(circle, rgba(53,214,255,.95) 0%, transparent 65%);
}
.social-card--news::before{
    background:radial-gradient(circle, rgba(255,200,0,.95) 0%, transparent 65%);
}

@media (max-width:980px){
    .social-grid--premium{
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width:720px){
    .social-grid--premium{
        grid-template-columns:1fr;
    }

    .social-card{
        padding:18px;
        border-radius:22px;
    }

    .social-name{
        font-size:22px;
    }
}


.hero-inner,
.offers-shell{
    border-radius:28px;
    padding:36px;

    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            rgba(10,12,30,.65);

    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 60px rgba(0,0,0,.4);
    backdrop-filter:blur(12px);
}

.hero-copy h1{
    font-size:clamp(36px, 5vw, 64px);
    font-weight:900;
    letter-spacing:-.03em;
}

.hero-lead{
    font-size:18px;
    color:#cfd6ff;
    max-width:560px;
}

.hero-actions{
    margin-top:24px;
}

.hero-visual img{
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,.5);
}

@media (max-width:720px){
    .hero--premium{
        padding:40px 0;
    }

    .hero-inner{
        padding:22px 18px;
    }

    .hero-copy{
        text-align:center;
    }

    .hero-actions{
        justify-content:center;
    }
}

/* ===== MOBILE HERO FIX ===== */
@media (max-width: 768px){

    .hero.hero--premium{
        padding:12px 0 22px !important;
        background:transparent !important;
        border:0 !important;
    }

    .hero .container,
    .offers .container,
    .section .container{
        padding-left:14px !important;
        padding-right:14px !important;
    }

    .hero-inner{
        padding:18px 16px 20px !important;
        border-radius:22px !important;
        background:
                linear-gradient(180deg, rgba(255,255,255,.04), transparent),
                rgba(10,12,30,.72) !important;
        border:1px solid rgba(255,255,255,.08) !important;
        box-shadow:0 14px 34px rgba(0,0,0,.30) !important;
    }

    .hero-grid{
        grid-template-columns:1fr !important;
        gap:18px !important;
        align-items:start !important;
    }

    .hero-copy{
        max-width:100% !important;
        text-align:center !important;
    }

    .eyebrow{
        margin:0 0 10px !important;
        font-size:11px !important;
        line-height:1.2 !important;
        letter-spacing:.12em !important;
    }

    .hero-copy h1{
        margin:0 0 12px !important;
        font-size:clamp(28px, 9vw, 42px) !important;
        line-height:1.05 !important;
        letter-spacing:-.03em !important;
        text-align:center !important;
    }

    .hero-lead{
        max-width:100% !important;
        margin:0 auto !important;
        font-size:15px !important;
        line-height:1.65 !important;
        text-align:center !important;
    }

    .hero-actions{
        display:flex !important;
        justify-content:center !important;
        margin-top:18px !important;
    }

    .hero-actions .btn{
        min-width:140px !important;
        padding:12px 18px !important;
    }

    .hero-visual{
        padding:0 !important;
        border:0 !important;
        background:transparent !important;
        box-shadow:none !important;
    }

    .hero-visual img{
        width:100% !important;
        display:block !important;
        border-radius:18px !important;
        aspect-ratio:4 / 2.25 !important;
        object-fit:cover !important;
        box-shadow:0 14px 30px rgba(0,0,0,.32) !important;
    }
}

.hero.hero--premium{
    padding:12px 0 28px;
    background:transparent;
}

.hero-inner{
    border-radius:28px;
    padding:28px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), transparent),
            rgba(10,12,30,.72);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 14px 34px rgba(0,0,0,.30);
    backdrop-filter:blur(12px);
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
}

.hero-copy{
    text-align:center;
}

.hero-copy h1{
    margin:0 0 12px;
    font-size:clamp(28px, 9vw, 42px);
    line-height:1.05;
    letter-spacing:-.03em;
}

.hero-lead{
    margin:0 auto;
    max-width:100%;
    font-size:15px;
    line-height:1.65;
}

.hero-actions{
    display:flex;
    justify-content:center;
    margin-top:18px;
}

.hero-visual img{
    width:100%;
    display:block;
    border-radius:18px;
    aspect-ratio:4 / 2.25;
    object-fit:cover;
    box-shadow:0 14px 30px rgba(0,0,0,.32);
}

@media (min-width: 901px){
    .hero.hero--premium{
        padding:48px 0 36px;
    }

    .hero-inner{
        padding:36px 28px;
    }

    .hero-grid{
        grid-template-columns:1.05fr .95fr;
        gap:28px;
        align-items:center;
    }

    .hero-copy{
        text-align:left;
    }

    .hero-copy h1{
        font-size:clamp(42px, 5vw, 64px);
    }

    .hero-lead{
        margin:0;
        max-width:560px;
        font-size:18px;
    }

    .hero-actions{
        justify-content:flex-start;
    }

    .hero-visual img{
        aspect-ratio:4 / 3;
    }
}

@media (max-width: 768px){
    .container{
        padding-left:14px;
        padding-right:14px;
    }

    .hero-inner{
        padding:18px 16px 20px;
        border-radius:22px;
    }
}
.brand-mark{
    width:55px;
    height:55px;
    border-radius:10px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#6f5cff,#35d6ff);
}

.brand-mark img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.header-cta{
    background:linear-gradient(180deg,#ffd86b,#ffb800);
    color:#1a1200;
    font-weight:700;
    border-radius:999px;
    padding:10px 18px;
    box-shadow:0 6px 18px rgba(255,185,0,.35);
    transition:.25s;
}

.header-cta:hover{
    transform:translateY(-1px);
    box-shadow:0 10px 24px rgba(255,185,0,.5);
}
.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:34px;
    align-items:center;
}

.hero-copy{
    max-width:560px;
    margin:0 auto;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.hero-copy h1{
    margin:0 0 14px;
    font-size:clamp(38px,4.4vw,62px);
    line-height:1.02;
    letter-spacing:-.03em;
    font-weight:900;
}

.hero-lead{
    margin:0;
    max-width:500px;
    font-size:18px;
    line-height:1.65;
    color:#d6dcf3;
    text-align:center;
}

.hero-actions{
    display:flex;
    justify-content:center;
    margin-top:24px;
}

.eyebrow{
    margin:0 0 12px;
    text-align:center;
}

@media (max-width: 900px){
    .hero-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .hero-copy{
        max-width:100%;
    }

    .hero-copy h1{
        font-size:clamp(30px, 8vw, 44px);
    }

    .hero-lead{
        max-width:100%;
        font-size:16px;
    }
}
.btn-gold{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 22px;
    border-radius:999px;

    background:linear-gradient(180deg,#ffe27a 0%, #ffc93a 55%, #f2b300 100%);
    color:#111;
    font-weight:800;
    font-size:15px;

    box-shadow:
            inset 0 2px 0 rgba(255,255,255,.45),
            0 10px 22px rgba(255,200,0,.35);

    transition:.25s;
    text-decoration:none;
}

.btn-gold:hover{
    transform:translateY(-1px);
    box-shadow:
            inset 0 2px 0 rgba(255,255,255,.5),
            0 14px 30px rgba(255,200,0,.45);
}

.premium-highlights{
    padding-top:34px;
}

.premium-cards{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:20px;
}

.premium-card{
    position:relative;
    display:block;
    min-height:360px;
    border-radius:28px;
    overflow:hidden;
    text-decoration:none !important;
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 20px 44px rgba(0,0,0,.30);
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    background-color:#1a173f;
}

.premium-card:hover{
    transform:translateY(-4px);
    border-color:rgba(255,255,255,.16);
    box-shadow:0 26px 54px rgba(0,0,0,.38);
    text-decoration:none;
}

.premium-card--image{
    background-size:cover;
    background-position:left;
    background-repeat:no-repeat;
}

.premium-card--casinos{
    background-image:url("img/tjr-casinos.webp");
}

.premium-card--about{
    background-image:url("img/tjr-money1.webp");
}

.premium-card--bonuses{
    background-image:url("img/tjr-games.webp");
    background-position:right;
}

.premium-card__overlay{
    position:absolute;
    inset:0;
    background:
            linear-gradient(180deg, rgba(8,10,24,.18) 0%, rgba(8,10,24,.80) 38%, rgba(8,10,24,.82) 100%);
}

.premium-card__content{
    position:absolute;
    inset:auto 0 0 0;
    z-index:2;
    padding:24px 22px 22px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.premium-card__content h3{
    margin:0 0 10px;
    font-size:28px;
    line-height:1.1;
    font-weight:900;
    color:#fff;
    letter-spacing:-.02em;
}

.premium-card__content p{
    margin:0 0 18px;
    max-width:320px;
    color:#d9def5;
    line-height:1.7;
    font-size:15px;
}

.premium-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:170px;
    padding:12px 20px;
    border-radius:999px;
    background:linear-gradient(180deg,#ffe27a 0%, #ffc93a 55%, #f2b300 100%);
    color:#111;
    font-weight:900;
    font-size:14px;
    letter-spacing:.02em;
    text-transform:uppercase;
    box-shadow:
            inset 0 2px 0 rgba(255,255,255,.45),
            0 10px 22px rgba(255,200,0,.35);
}

.section-head--premium h2{
    font-size:clamp(30px, 4vw, 46px);
    font-weight:900;
    letter-spacing:-.03em;
}

.section-head--premium p{
    max-width:760px;
    margin:12px auto 0;
    color:#d7dcf2;
    line-height:1.8;
    text-align:center;
}

@media (max-width: 980px){
    .premium-cards{
        grid-template-columns:1fr;
    }

    .premium-card{
        min-height:340px;
    }
}

@media (max-width: 720px){
    .premium-card{
        min-height:320px;
        border-radius:24px;
    }

    .premium-card__content{
        padding:20px 18px 18px;
    }

    .premium-card__content h3{
        font-size:24px;
    }

    .premium-card__content p{
        font-size:14px;
        line-height:1.65;
        max-width:100%;
    }
    .premium-card--about{
        background-position:top;
    }

    .premium-link{
        min-width:160px;
        padding:11px 18px;
        font-size:13px;
    }
}
.premium-card{
    position:relative;
    display:block;
    min-height:360px;
    border-radius:28px;
    overflow:hidden;
    text-decoration:none !important;
    border:none !important;
    box-shadow:0 20px 44px rgba(0,0,0,.30);
    transition:transform .18s ease, box-shadow .18s ease;
    background-color:#12142b;
    isolation:isolate;
}

.premium-card:hover{
    transform:translateY(-4px);
    box-shadow:0 26px 54px rgba(0,0,0,.38);
    text-decoration:none;
}
@media (max-width: 768px){

    /* вся карточка по центру */
    .social-card{
        text-align:center;
        align-items:center;
    }

    /* верхний блок */
    .social-top{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:10px;
        margin-bottom:12px;
    }

    /* иконка */
    .social-icon{
        margin:0 auto;
    }

    /* бейдж (LIVE / SOCIAL и т.д.) */
    .social-badge{
        position:static; /* убираем absolute если был */
        margin-top:6px;
    }

    /* название */
    .social-name{
        display:block;
        text-align:center;
        margin-bottom:6px;
    }

    /* описание */
    .social-desc{
        text-align:center;
        margin:0 auto;
        max-width:280px;
    }
}
.social-card{
    padding:12px 10px;
}
.social-name{
    font-size:15px;
}
.social-desc{
    font-size:12px;
}
/* мобильная сетка */
@media (max-width: 768px){

    .social-grid{
        display:grid;
        grid-template-columns: repeat(2, 1fr);
        gap:10px;
    }

    /* чуть шире экран → 3 в ряд */
    @media (min-width: 480px){
        .social-grid{
            grid-template-columns: repeat(3, 1fr);
        }
    }

    /* карточка */
    .social-card{
        padding:12px 8px;
        border-radius:16px;
        text-align:center;
    }

    /* верх */
    .social-top{
        flex-direction:column;
        align-items:center;
        gap:4px;
        margin-bottom:6px;
    }

    /* иконка */
    .social-icon{
        width:44px;
        height:44px;
    }

    .social-icon img{
        max-width:36px;
    }

    /* бейдж */
    .social-badge{
        position:static;
        font-size:9px;
        padding:2px 6px;
        border-radius:10px;
    }

    /* название */
    .social-name{
        font-size:13.5px;
        margin-bottom:2px;
    }

    /* описание — сокращаем */
    .social-desc{
        font-size:11px;
        line-height:1.25;
        opacity:.8;

        /* ограничение текста */
        display:-webkit-box;
        -webkit-line-clamp:2;
        -webkit-box-orient:vertical;
        overflow:hidden;
    }

}
.site-footer{
    margin-top:40px;
    padding-top:40px;
    background:
            linear-gradient(180deg, #0b0f22 0%, #090b14 100%);
    border-top:1px solid rgba(255,255,255,.06);
}

/* сетка */
.footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr;
    gap:30px;
    padding-bottom:30px;
}

/* бренд */
.footer-brand{
    display:inline-block;
    font-size:24px;
    font-weight:900;
    color:#fff;
    text-decoration:none !important;
    margin-bottom:12px;
}

.footer-desc{
    color:#aeb7da;
    line-height:1.6;
    font-size:14px;
    margin-bottom:16px;
    max-width:320px;
}

/* соцсети */
.footer-socials{
    display:flex;
    gap:10px;
}

.footer-socials a{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    transition:.2s;
}

.footer-socials a:hover{
    background:rgba(255,255,255,.1);
    transform:translateY(-2px);
}

.footer-socials img{
    width:50px;
}

/* колонки */
.footer-col h4{
    margin-bottom:12px;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:#cbd3ff;
}

.footer-col a{
    display:block;
    margin-bottom:8px;
    color:#aeb7da;
    font-size:16px;
    text-decoration:none;
    transition:.2s;
}

.footer-col a:hover{
    color:#fff;
}

/* низ */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,.06);
    padding:18px 0 24px;
    text-align:center;
}

.footer-copy{
    margin:0;
    font-size:13px;
    color:#9aa3c7;
}

.footer-note{
    margin:8px auto 0;
    max-width:700px;
    font-size:12.5px;
    line-height:1.6;
    color:#8f97bd;
}

/* мобилка */
@media (max-width: 768px){
    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-desc{
        margin:0 auto 16px;
    }

    .footer-socials{
        justify-content:center;
    }
}

.tjr-story{
    padding-top:20px;
}

.tjr-story__wrap{
    display:block;
}

.tjr-story__content,
.tjr-story__side{
    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,16,50,.84);
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 20px 44px rgba(0,0,0,.30);
    backdrop-filter:blur(10px);
}

.tjr-story__content{
    padding:30px 28px;
}
.tjr-story__content{
    max-width:1200px;
    margin:0 auto;
}


.tjr-story__content h2{
    max-width:700px;
    margin:0 auto 16px;
    text-align:center;
}

.tjr-story__content p{
    margin:0;
    color:#d7dcf2;
    line-height:1.85;
    font-size:17px;
}

.tjr-story__content p + p{
    margin-top:18px;
}

.tjr-story__actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:24px;
}

@media (max-width: 980px){
    .tjr-story__wrap{
        grid-template-columns:1fr;
    }

    .tjr-story__content h2{
        max-width:100%;
    }
}

@media (max-width: 768px){
    .tjr-story__content,
    .tjr-story__side{
        border-radius:22px;
    }

    .tjr-story__content{
        padding:22px 18px;
    }

    .tjr-story__content h2{
        font-size:clamp(28px, 8vw, 40px);
        margin-bottom:12px;
    }

    .tjr-story__content p{
        font-size:15px;
        line-height:1.7;
    }

    .tjr-story__actions{
        justify-content:center;
    }

    .tjr-story__side{
        padding:16px;
    }

    .tjr-side-card{
        padding:16px 14px;
        border-radius:18px;
        text-align:center;
    }

    .tjr-side-card__v{
        font-size:17px;
    }
}

.tjr-story__actions{
    justify-content:center;
}
.home-intro__box{
    padding:28px 26px;
    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,16,50,.84);
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 20px 44px rgba(0,0,0,.30);
    backdrop-filter:blur(10px);
}

.home-intro__box p{
    margin:0;
    color:#d7dcf2;
    line-height:1.85;
    font-size:17px;
}

.home-intro__box p + p{
    margin-top:18px;
}

.offers-copy{
    max-width:920px;
    margin:18px auto 0;
    text-align:center;
}

.offers-copy p{
    margin:0;
    color:#d7dcf2;
    line-height:1.8;
    font-size:15px;
}

.offer-card__content{
    position:absolute;
    left:16px;
    right:16px;
    bottom:82px;
    z-index:2;
    text-align:center;
}

.offer-card__content h3{
    margin:0 0 6px;
    font-size:22px;
    font-weight:900;
    color:#fff;
    text-shadow:0 2px 10px rgba(0,0,0,.45);
}

.offer-card__content p{
    margin:0;
    font-size:14px;
    line-height:1.45;
    font-weight:700;
    color:#f4f6ff;
    text-shadow:0 2px 10px rgba(0,0,0,.45);
}

.home-content-blocks{
    padding-top:12px;
}

@media (max-width: 768px){
    .home-intro__box{
        padding:22px 18px;
        border-radius:22px;
    }

    .home-intro__box p{
        font-size:15px;
        line-height:1.7;
    }

    .offers-copy p{
        font-size:14px;
    }

    .offer-card__content{
        left:12px;
        right:12px;
        bottom:78px;
    }

    .offer-card__content h3{
        font-size:19px;
    }

    .offer-card__content p{
        font-size:13px;
    }
}
.section-head--offers p{
    max-width:760px;
    margin:12px auto 0;
    color:#d7dcf2;
    line-height:1.75;
}

.offers-shell-inner-simple{
    margin-top:10px;
}

.offers-shell-inner--clean{
    margin-top:34px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,.08);
}

/* убираем текст поверх баннеров */
.offer-card__content{
    display:none !important;
}

/* карточки чуть чище */
.offer-card{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    min-height:245px;
    background:#120f2d;
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 14px 34px rgba(0,0,0,.34);
}

.offer-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* затемнение снизу только под кнопку */
.offer-card::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:88px;
    background:linear-gradient(to top, rgba(0,0,0,.38), rgba(0,0,0,.10) 58%, transparent 100%);
    pointer-events:none;
}

.offers-grid--uk{
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
}

.offers-grid--eu{
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
    margin-top:8px;
}

.offer-card > .claim-btn{
    position:absolute;
    left:50%;
    bottom:18px;
    transform:translateX(-50%);
    z-index:3;
    min-width:170px;
}

.offer-card > .claim-btn:hover{
    transform:translateX(-50%) scale(1.06);
}

@media (max-width:1100px){
    .offers-grid--uk,
    .offers-grid--eu{
        grid-template-columns:repeat(2, 1fr);
    }

    .offer-card--centered{
        grid-column:1 / -1;
        justify-self:center;
        width:min(100%, 420px);
    }
}

@media (max-width:768px){
    .offers-grid--uk,
    .offers-grid--eu{
        grid-template-columns:1fr;
        max-width:480px;
        margin-left:auto;
        margin-right:auto;
    }

    .offer-card{
        min-height:220px;
    }

    .offer-card--centered{
        grid-column:auto;
        width:100%;
    }

    .section-head--offers p{
        font-size:14px;
        line-height:1.65;
    }
}
.offers-grid--info{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
}

.offer-card--info{
    display:flex;
    flex-direction:column;
    min-height:unset;
    overflow:hidden;
    border-radius:22px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.04), transparent),
            linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
            rgba(21,16,50,.88);
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 14px 34px rgba(0,0,0,.30);
}

.offer-card--info::after{
    display:none;
}

.offer-card__media{
    position:relative;
}

.offer-card__media img{
    width:100%;
    aspect-ratio:16/10;
    object-fit:cover;
    display:block;
}

.offer-card__body{
    padding:16px 16px 18px;
    text-align:center;
}

.offer-card__body h3{
    margin:0 0 8px;
    font-size:22px;
    line-height:1.15;
    font-weight:900;
    color:#fff;
}

.offer-card__body p{
    margin:0 0 16px;
    color:#d7dcf2;
    font-size:14px;
    line-height:1.55;
    font-weight:700;
    min-height:44px;
}

.offer-card__body .claim-btn{
    position:static;
    transform:none;
    min-width:170px;
}

.offer-card__body .claim-btn:hover{
    transform:scale(1.05);
}

.offers-shell-inner--clean{
    margin-top:34px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,.08);
}

@media (max-width:1100px){
    .offers-grid--info{
        grid-template-columns:repeat(2, 1fr);
    }

    .offer-card--centered{
        grid-column:1 / -1;
        justify-self:center;
        width:min(100%, 420px);
    }
}

@media (max-width:768px){
    .offers-grid--info{
        grid-template-columns:1fr;
        max-width:480px;
        margin:0 auto;
    }

    .offer-card__body{
        padding:14px 14px 16px;
    }

    .offer-card__body h3{
        font-size:20px;
    }

    .offer-card__body p{
        min-height:auto;
        font-size:13.5px;
    }

    .offer-card__body .claim-btn{
        width:100%;
        min-width:0;
    }

    .offer-card--centered{
        grid-column:auto;
        width:100%;
    }
}
.info-card{
    padding:22px;
    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,16,50,.84);

    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 20px 44px rgba(0,0,0,.30);
    backdrop-filter:blur(10px);

    transition:all .2s ease;
}

.info-card:hover{
    transform:translateY(-3px);
    box-shadow:0 26px 54px rgba(0,0,0,.38);
}

.about-hero{
    padding:46px 0 20px;
}

.about-hero__wrap{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:24px;
    align-items:stretch;
}

.about-hero__copy,
.about-hero__visual,
.about-bio-card,
.about-panel,
.fact-card,
.platform-row{
    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,16,50,.84);
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 20px 44px rgba(0,0,0,.30);
    backdrop-filter:blur(10px);
}

.about-hero__copy{
    padding:34px 30px;
    border-radius:30px;
}

.about-hero__copy h1{
    margin:0 0 14px;
    font-size:clamp(34px, 4.8vw, 58px);
    line-height:1.04;
    letter-spacing:-.03em;
    text-align:center;
}

.about-hero__lead{
    margin:0;
    color:#d7dcf2;
    font-size:17px;
    line-height:1.8;
}

.about-hero__meta{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:14px;
    margin-top:24px;
}

.about-hero__meta div{
    padding:16px;
    border-radius:18px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
}

.about-hero__meta span{
    display:block;
    margin-bottom:6px;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:#cdd4ef;
}

.about-hero__meta strong{
    display:block;
    color:#fff;
    line-height:1.5;
    font-size:16px;
}

.about-hero__visual{
    padding:14px;
    border-radius:30px;
    overflow:hidden;
}

.about-hero__visual img{
    width:100%;
    height:100%;
    min-height:100%;
    object-fit:cover;
    border-radius:22px;
}

.about-facts__grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:18px;
}

.fact-card{
    padding:22px 18px;
    border-radius:24px;
    text-align:left;
}

.fact-card__k{
    display:block;
    margin-bottom:8px;
    color:#cfd5ef;
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.fact-card__v{
    display:block;
    color:#fff;
    font-size:18px;
    line-height:1.5;
}

.about-bio-card{
    padding:34px 30px;
    border-radius:30px;
}

.about-bio-card h2{
    margin:0 0 14px;
    font-size:clamp(28px, 4vw, 44px);
    line-height:1.08;
}

.about-bio-card p{
    margin:0;
    color:#d7dcf2;
    line-height:1.85;
    font-size:17px;
}

.about-bio-card p + p{
    margin-top:18px;
}

.about-split__grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.about-panel{
    padding:28px 24px;
    border-radius:28px;
}

.about-panel h2{
    margin:0 0 12px;
    font-size:30px;
    line-height:1.1;
}

.about-panel p{
    margin:0;
    color:#d7dcf2;
    line-height:1.8;
}

.about-platforms__list{
    display:grid;
    gap:14px;
}

.platform-row{
    display:grid;
    grid-template-columns:220px 1fr;
    gap:18px;
    align-items:center;
    padding:20px 22px;
    border-radius:22px;
    text-decoration:none !important;
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.platform-row:hover{
    transform:translateY(-2px);
    border-color:rgba(255,255,255,.16);
    box-shadow:0 24px 54px rgba(0,0,0,.34);
    text-decoration:none;
}

.platform-row__name{
    font-size:22px;
    font-weight:900;
    color:#fff;
}

.platform-row__desc{
    color:#d7dcf2;
    line-height:1.7;
}

@media (max-width:1100px){
    .about-facts__grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
    }
}

@media (max-width:980px){
    .about-hero__wrap,
    .about-split__grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:768px){
    .about-hero{
        padding:24px 0 10px;
    }

    .about-hero__copy,
    .about-hero__visual,
    .about-bio-card,
    .about-panel,
    .fact-card,
    .platform-row{
        border-radius:22px;
    }

    .about-hero__copy,
    .about-bio-card,
    .about-panel{
        padding:22px 18px;
    }

    .about-hero__meta{
        grid-template-columns:1fr;
    }

    .about-facts__grid{
        grid-template-columns:1fr;
    }

    .about-bio-card p,
    .about-panel p,
    .about-hero__lead{
        font-size:15px;
        line-height:1.75;
    }

    .platform-row{
        grid-template-columns:1fr;
        gap:8px;
        padding:18px 16px;
    }

    .platform-row__name{
        font-size:20px;
    }
}
.about-hero__sub{
    margin:16px 0 0;
    color:#cfd6ef;
    font-size:15px;
    line-height:1.7;
}
.about-hero__copy{
    padding:34px 30px;
    border-radius:30px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.about-hero__lead{
    margin:0;
    color:#d7dcf2;
    font-size:18px;
    line-height:1.8;
    max-width:620px;
}

.about-hero__sub{
    margin:18px 0 0;
    color:#cfd6ef;
    font-size:15px;
    line-height:1.8;
    max-width:620px;
}

.about-hero__copy{
    padding:38px 34px;
    border-radius:30px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.about-hero__lead{
    margin:0;
    color:#d7dcf2;
    font-size:18px;
    line-height:1.8;
    max-width:640px;
}

.about-hero__sub{
    margin:18px 0 0;
    color:#cfd6ef;
    font-size:15px;
    line-height:1.85;
    max-width:640px;
}
.breadcrumbs{
    padding:14px 0 6px;
}

.breadcrumbs__list{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:8px;
    margin:0;
    padding:0;
    list-style:none;
}

.breadcrumbs__list li{
    display:flex;
    align-items:center;
    color:#cfd6ef;
    font-size:14px;
    line-height:1.4;
}

.breadcrumbs__list li:not(:last-child)::after{
    content:"/";
    margin-left:8px;
    color:rgba(255,255,255,.38);
}

.breadcrumbs__list a{
    color:#dbe6ff;
    text-decoration:none;
}

.breadcrumbs__list a:hover{
    color:#fff;
    text-decoration:underline;
}

.breadcrumbs__list li[aria-current="page"]{
    color:#fff;
    font-weight:700;
}

@media (max-width:768px){
    .breadcrumbs{
        padding:10px 0 2px;
    }

    .breadcrumbs__list li{
        font-size:13px;
    }
}
.news-hero{
    padding:26px 0 14px;
}

.news-hero__box,
.news-card,
.timeline-item{
    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,16,50,.84);
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 20px 44px rgba(0,0,0,.30);
    backdrop-filter:blur(10px);
}

.news-hero__box{
    padding:34px 30px;
    border-radius:30px;
}

.news-hero__box h1{
    margin:0 0 14px;
    font-size:clamp(34px,4.8vw,58px);
    line-height:1.04;
    letter-spacing:-.03em;
}

.news-hero__lead{
    margin:0;
    max-width:820px;
    color:#d7dcf2;
    font-size:17px;
    line-height:1.85;
}

.news-layout{
    display:grid;
    gap:22px;
}

.news-card{
    border-radius:28px;
    overflow:hidden;
}

.news-card--featured{
    display:grid;
    grid-template-columns:1fr 1fr;
}

.news-card__image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.news-card__content{
    padding:26px 24px;
}

.news-tag{
    display:inline-flex;
    padding:8px 12px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
    color:#fff;
    font-size:11px;
    font-weight:900;
    letter-spacing:.06em;
    text-transform:uppercase;
    margin-bottom:14px;
}

.news-card__content h2{
    margin:0 0 10px;
    font-size:28px;
    line-height:1.12;
}

.news-card__content p{
    margin:0;
    color:#d7dcf2;
    line-height:1.8;
}

.news-card__content p + p{
    margin-top:16px;
}

.news-date{
    margin-bottom:12px !important;
    color:#c8d0ec !important;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.08em;
    font-weight:800;
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:20px;
}

.timeline-list{
    display:grid;
    gap:16px;
}

.timeline-item{
    display:grid;
    grid-template-columns:130px 1fr;
    gap:20px;
    padding:22px 22px;
    border-radius:24px;
}

.timeline-item__tag{
    display:inline-flex;
    align-self:start;
    justify-content:center;
    padding:10px 12px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
    color:#fff;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.06em;
}

.timeline-item__body h3{
    margin:0 0 8px;
    font-size:24px;
    line-height:1.18;
}

.timeline-item__body p{
    margin:0;
    color:#d7dcf2;
    line-height:1.8;
}

@media (max-width:980px){
    .news-card--featured{
        grid-template-columns:1fr;
    }

    .news-grid{
        grid-template-columns:1fr;
    }

    .timeline-item{
        grid-template-columns:1fr;
        gap:12px;
    }
}

@media (max-width:768px){
    .news-hero__box,
    .news-card,
    .timeline-item{
        border-radius:22px;
    }

    .news-hero__box,
    .news-card__content,
    .timeline-item{
        padding:22px 18px;
    }

    .news-card__content h2{
        font-size:24px;
    }

    .timeline-item__body h3{
        font-size:22px;
    }

    .news-hero__lead,
    .news-card__content p,
    .timeline-item__body p{
        font-size:15px;
        line-height:1.75;
    }
}

/* ===== WEALTH / EARNINGS BLOCK ===== */

.news-wealth{
    padding:30px 0;
}

.wealth-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:22px;
}

.wealth-card{
    padding:26px 24px;
    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,16,50,.84);

    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 20px 44px rgba(0,0,0,.30);
    backdrop-filter:blur(10px);

    transition:.25s ease;
}

.wealth-card:hover{
    transform:translateY(-4px);
    box-shadow:0 26px 60px rgba(0,0,0,.45);
}

.wealth-tag{
    display:inline-flex;
    padding:8px 12px;
    border-radius:999px;

    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);

    font-size:11px;
    font-weight:900;
    letter-spacing:.06em;
    text-transform:uppercase;

    margin-bottom:14px;
}

.wealth-card h3{
    margin:0 0 10px;
    font-size:24px;
    line-height:1.2;
}

.wealth-card p{
    margin:0;
    color:#d7dcf2;
    line-height:1.8;
}

.wealth-card p + p{
    margin-top:12px;
}

/* mobile */

@media (max-width:900px){
    .wealth-grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:768px){
    .wealth-card{
        padding:20px 18px;
        border-radius:22px;
    }

    .wealth-card h3{
        font-size:20px;
    }

    .wealth-card p{
        font-size:15px;
        line-height:1.75;
    }
}

.casino-hero{
    padding:26px 0 14px;
}

.casino-hero__wrap{
    display:grid;
    grid-template-columns:1.02fr .98fr;
    gap:24px;
    align-items:stretch;
}

.casino-hero__copy,
.casino-hero__visual,
.casino-intro__card{
    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,16,50,.84);
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 20px 44px rgba(0,0,0,.30);
    backdrop-filter:blur(10px);
}

.casino-hero__copy{
    padding:34px 30px;
    border-radius:30px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.casino-hero__copy h1{
    margin:0 0 14px;
    font-size:clamp(34px,4.8vw,58px);
    line-height:1.04;
    letter-spacing:-.03em;
}

.casino-hero__lead{
    margin:0;
    max-width:620px;
    color:#d7dcf2;
    font-size:17px;
    line-height:1.85;
}

.casino-hero__visual{
    padding:14px;
    border-radius:30px;
    overflow:hidden;
}

.casino-hero__visual img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:22px;
    display:block;
    object-position: left;
}

.casino-intro__card{
    padding:30px 28px;
    border-radius:28px;
}

.casino-intro__card p{
    margin:0;
    color:#d7dcf2;
    line-height:1.85;
    font-size:16px;
}

.casino-intro__card p + p{
    margin-top:18px;
}

.casino-notes__grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:18px;
}



@media (max-width:980px){
    .casino-hero__wrap,
    .casino-notes__grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:768px){
    .casino-hero__copy,
    .casino-hero__visual,
    .casino-intro__card{
        border-radius:22px;
    }

    .casino-hero__copy,
    .casino-intro__card{
        padding:22px 18px;
    }

    .casino-hero__lead,
    .casino-intro__card p{
        font-size:15px;
        line-height:1.75;
    }
}


