:root{
    /* базовый фон и текст */
    --bg:#050715;
    --panel:#0a0f24;
    --text:#f4f3ff;
    --muted:#c3c8e8;
    --line:#252b3f;

    /* акцентные цвета (были зелёные, теперь фиолетово-розовые) */
    --green1:#ff6bcb;  /* основной градиентный цвет */
    --green2:#a855ff;  /* второй цвет градиента */
    --green-ink:#180319; /* цвет текста на кнопках */

    /* брендовые алиасы */
    --brand1:var(--green1);
    --brand2:var(--green2);
    --kick:var(--green2);
}


*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;color:var(--text);background:var(--bg);
    font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial;
    -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
}
img{display:block;max-width:100%;height:auto}
a{color:#a7ffef;text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:1180px;margin:auto;padding:0 20px}

.hdr{
    position:sticky;top:0;z-index:40;backdrop-filter:blur(10px);
    background:rgba(11,15,20,.7);border-bottom:1px solid var(--line)
}
.hdr__row{display:flex;align-items:center;justify-content:space-between;gap:12px;min-height:64px}
.brand__logo{
    font-weight:800;letter-spacing:.5px;color:var(--green1);
    text-shadow:0 0 18px rgba(0,224,145,.35)
}
.nav{display:none;gap:22px;align-items:center}
.nav a{color:#cfe4ff;opacity:.88}
.nav a:hover{opacity:1;text-decoration:none}
.nav a.is-active{color:#fff;font-weight:700}
.hide-sm{display:none}

.burger{display:inline-flex;flex-direction:column;gap:1px;background:transparent;border:0}
.burger span{width:22px;height:2px;background:#d3deed;border-radius:2px}
@media (min-width:860px){ .nav{display:flex} .hide-sm{display:inline-flex} .burger{display:none} }

.btn{display:inline-flex;align-items:center;justify-content:center;border-radius:12px;padding:10px 14px;font-weight:800;border:0}
.btn--kick{
    background:linear-gradient(90deg,var(--green1),var(--green2));
    color:var(--green-ink); box-shadow:0 12px 28px rgba(0,224,145,.28)
}
.btn--kick:hover{filter:brightness(1.05);text-decoration:none}

.hero{
    padding:clamp(36px,7vw,96px) 0;
    background:
            radial-gradient(700px 280px at 20% 0%, rgba(58, 237, 130, 0.28), transparent 60%),
            radial-gradient(600px 240px at 80% 10%, rgba(6,182,212,.25), transparent 60%),
            var(--bg);
}
.hero__box{display:flex;flex-direction:column;align-items:center;text-align:center}
.hero__avatar{
    position:relative;width:172px;height:172px;border-radius:999px;display:grid;place-items:center;margin-bottom:18px;
    background:linear-gradient(120deg,var(--brand1),var(--brand2));padding:3px;
    box-shadow:0 16px 50px rgba(6,182,212,.18)
}
.hero__avatar img{
    width:100%;height:100%;object-fit:cover;border-radius:999px;border:6px solid var(--panel);background:var(--panel);object-position:center 35%
}
.hero__title{margin:6px 0 6px;font-size:clamp(28px,6vw,64px);line-height:1.05;font-weight:800}
.hero__title span{background:linear-gradient(90deg,var(--brand1),var(--brand2));-webkit-background-clip:text;background-clip:text;color:transparent}
.hero__lead{color:var(--muted);max-width:800px;margin:0 auto;font-size:clamp(14px,1.8vw,18px)}
.hero__cta{display:flex;gap:14px;flex-wrap:wrap;justify-content:center;margin-top:22px}
.btn--primary{
    background:linear-gradient(90deg,var(--green1),var(--green2));
    color:var(--green-ink); box-shadow:0 16px 36px rgba(0,224,145,.25)
}
.btn--primary:hover{filter:brightness(1.06);text-decoration:none}
.btn--ghost{background:transparent;border:1px solid #2b3649;color:#d6e6ff}
.btn--ghost:hover{background:#172030}


.nav.is-open{
    position:fixed;inset:72px 16px auto 16px;display:flex;flex-direction:column;gap:10px;
    background:#0e141c;border:1px solid var(--line);border-radius:14px;padding:14px;box-shadow:0 24px 52px rgba(0,0,0,.45)
}
.nav.is-open a{padding:10px;border-radius:8px}
.nav.is-open a:hover{background:#151e2a}
:focus-visible{outline:2px solid #60efff;outline-offset:2px}

.offers-table{padding:28px 20px 48px}
.offers-table__title{
    max-width:1200px;margin:0 auto 14px;text-align:center;
    font-size:clamp(20px,3.2vw,28px);letter-spacing:-.01em;color:#e7f0ff
}
.offers-table__tnc{max-width:1200px;margin:12px auto 0;color:var(--muted);font-size:12px;text-align:center}

.offer-row{
    display:grid;grid-template-columns:160px 220px 160px 60px 1fr auto;
    align-items:center;gap:18px;max-width:1200px;margin:14px auto 0;padding:16px 18px;
    background:linear-gradient(180deg, rgba(255,255,255,.04), transparent), #0f141c;
    border:1px solid var(--line);border-radius:18px;color:#eef2ff;text-decoration:none;
    box-shadow:0 10px 24px rgba(0,0,0,.25);
    transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease
}
.offer-row:hover{transform:translateY(-2px);box-shadow:0 16px 36px rgba(0,0,0,.3);border-color:rgba(255,255,255,.22)}
.offer-row, .offer-row *{text-decoration:none!important}

.offer__logo{height:68px;display:grid;place-items:center;line-height:0}
.offer__logo img{
    max-width:90%;max-height:75%;object-fit:contain;object-position:center;
    transform:translateY(var(--y,0%)) scale(var(--scale,1));transform-origin:center
}
.offer__logo{ --scale: var(--scale-d,1); --y: var(--y-d,0%); }
@media (max-width:1100px){ .offer__logo{ --scale: var(--scale-t,var(--scale-d,1)); --y: var(--y-t,var(--y-d,0%)); } }
@media (max-width:720px){  .offer__logo{ --scale: var(--scale-m,var(--scale-t,var(--scale-d,1))); --y: var(--y-m,var(--y-t,var(--y-d,0%))); } }

.offer__col .offer__label{font-size:12px;opacity:.75;letter-spacing:.08em;text-transform:uppercase}
.offer__value{font-size:16px;font-weight:800}
.offer__col--dash{opacity:.35}

.offer__features{list-style:none;margin:0;padding:0;display:grid;gap:8px;color:#e6ebff;font-size:14px}
.offer__features li{display:flex;align-items:baseline;gap:8px}
.offer__features li::before{
    content:"";width:8px;height:4px;margin-right:2px;
    border-left:2px solid var(--brand2);border-bottom:2px solid var(--brand2);
    transform:rotate(-45deg) translateY(-1px)
}

.offer__cta{display:flex;align-items:center;gap:12px}
.btn-claim{
    display:inline-flex;align-items:center;justify-content:center;
    padding:12px 50px;border-radius:999px;font-weight:900;letter-spacing:.02em;border:0;
    background:linear-gradient(90deg,var(--green1),var(--green2));
    color:var(--green-ink);
    box-shadow:0 12px 28px rgba(0,224,145,.24), 0 0 0 rgba(0,224,145,0);
    animation:pulseGlow 1.9s ease-in-out infinite;
    will-change:transform, box-shadow, filter
}
.offers-table .offer-row:nth-of-type(3n+1) .btn-claim{animation-delay:.0s}
.offers-table .offer-row:nth-of-type(3n+2) .btn-claim{animation-delay:.35s}
.offers-table .offer-row:nth-of-type(3n)   .btn-claim{animation-delay:.7s}
.offer-row:hover .btn-claim{
    filter:brightness(1.07);
    box-shadow:0 18px 44px rgba(0,224,145,.40), 0 0 24px rgba(0,224,145,.28)
}
@keyframes pulseGlow{
    0%   { transform:translateY(0) scale(1);    box-shadow:0 12px 28px rgba(0,224,145,.24), 0 0 0 rgba(0,224,145,0) }
    50%  { transform:translateY(-1px) scale(1.045); box-shadow:0 18px 44px rgba(0,224,145,.42), 0 0 22px rgba(0,224,145,.25) }
    100% { transform:translateY(0) scale(1);    box-shadow:0 12px 28px rgba(0,224,145,.24), 0 0 0 rgba(0,224,145,0) }
}

@media (max-width:1100px){
    .offer-row{grid-template-columns:120px 1fr 1fr 1fr auto;gap:14px}
    .offer__col--dash{display:none}
}

@media (max-width:720px){
    .offer-row{
        grid-template-columns:1fr 1fr 24px;
        grid-template-areas:
      "logo logo logo"
      "bonus spins dash"
      "features features features"
      "cta cta cta";
        gap:12px;padding:28px 20px;border-radius:20px;justify-items:center;text-align:center
    }
    .offer__logo{grid-area:logo;height:74px}
    .offer-row .offer__col:nth-of-type(2){grid-area:bonus}
    .offer-row .offer__col:nth-of-type(3){grid-area:spins}
    .offer__label{font-size:12px;opacity:.7;letter-spacing:.08em;margin-bottom:2px}
    .offer__value{font-size:20px;line-height:1.15;font-weight:900}
    .offer__features{
        grid-area:features;display:flex;flex-wrap:wrap;justify-content:center;gap:10px 18px;margin:6px auto 0
    }
    .offer__cta{grid-area:cta;display:flex;justify-content:center;gap:10px;margin-top:14px}
    .btn-claim{width:100%;padding:14px 18px;border-radius:999px}
}

@media (prefers-reduced-motion:reduce){
    .btn-claim{animation:none!important}
}
.brand,
.brand:hover { text-decoration: none !important; }

.nav a,
.nav a:hover { text-decoration: none !important; }

.btn,
.btn:hover { text-decoration: none !important; }

.offer-row{
    position: relative;
    overflow: hidden;
}

.offer-row::after{
    content:"";
    position:absolute; inset:0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow:
            inset 0 0 0 1px rgba(0,224,145,.28),
            0 0 0 rgba(0,224,145,0);
    animation: borderGlow 2.2s ease-in-out infinite;
}

.offers-table .offer-row:nth-of-type(3n+1)::after{ animation-delay: .0s }
.offers-table .offer-row:nth-of-type(3n+2)::after{ animation-delay: .35s }
.offers-table .offer-row:nth-of-type(3n)::after{   animation-delay: .7s }

.offer-row:hover::after{
    animation-duration: 1.6s;
    box-shadow:
            inset 0 0 0 2px rgba(0,224,145,.65),
            0 0 24px rgba(0,224,145,.28);
}

@keyframes borderGlow{
    0%{
        box-shadow:
                inset 0 0 0 1px rgba(0,224,145,.28),
                0 0 0 rgba(0,224,145,0);
    }
    50%{
        box-shadow:
                inset 0 0 0 2px rgba(0,224,145,.7),
                0 0 26px rgba(0,224,145,.24);
    }
    100%{
        box-shadow:
                inset 0 0 0 1px rgba(0,224,145,.28),
                0 0 0 rgba(0,224,145,0);
    }
}

@media (prefers-reduced-motion: reduce){
    .offer-row::after{ animation: none; }
}

@media (max-width: 720px){
    .offers-table .offer-row{ align-items: stretch !important; }

    .offers-table .offer-row > .offer__col:nth-of-type(2),
    .offers-table .offer-row > .offer__col:nth-of-type(3){
        display: grid !important;
        grid-template-rows: auto auto !important;
        align-content: start !important;
        justify-items: center !important;
        row-gap: 6px !important;
        padding: 10px 0 !important;
        min-height: 92px !important;
    }

    .offers-table .offer-row .offer__label{
        margin: 0 !important;
        line-height: 1.1 !important;
        text-align: center !important;
    }
    .offers-table .offer-row .offer__value{
        margin: 0 !important;
        line-height: 1.15 !important;
        text-align: center !important;
    }
}

@media (max-width: 720px){
    .offers-table .offer-row > .offer__col:nth-of-type(3){
        transform: translateX(30px);
    }
}




html{ background:#0b0f14 !important; }
body{
    position:relative !important;
    isolation:isolate !important;
    background:transparent !important;
}

body::before{
    content:"";
    position:fixed;
    inset:-25% -25% -25% -25%;
    z-index:0;
    pointer-events:none;
    background:
            radial-gradient(900px 1200px at 50% -10%, rgba(0, 255, 165, 0.95), transparent 60%),
            radial-gradient(760px 960px at 88% 14%, rgba(0, 224, 145, 0.47), transparent 60%),
            radial-gradient(820px 380px at 12% 70%, rgba(0, 255, 164, 0.45), transparent 60%),
            radial-gradient(980px 1300px at 50% 120%, rgb(0, 255, 166), transparent 65%),
            linear-gradient(#0b0f14, #0b0f14);
    filter:saturate(105%);
}

body > *{ position:relative; z-index:1; }

:where(main, section, .hero, .about, .offers, .offers-table){ background:transparent !important; }

@media (max-width:720px){
    body::before{
        background:
                radial-gradient(680px 2000px at 50% -20%, rgba(0, 255, 167, 0.53), transparent 60%),
                radial-gradient(780px 1500px at 50% 120%, rgb(0, 255, 164), transparent 65%),
                linear-gradient(#0b0f14, #0b0f14);
    }
}

.kick-stream{ padding: clamp(28px,5vw,64px) 0; }
.kick-stream__head{ text-align:center; margin-bottom:16px; }
.kick-stream__head h2{ margin:0 0 6px; font-size:clamp(22px,3.2vw,32px); font-weight:800; }
.kick-stream__sub{ margin:0; color:var(--muted); }

.kick-stream__player{
    position:relative;
    border-radius:18px;
    background:#0f141c;
    border:1px solid var(--line);
    overflow:hidden;
    box-shadow:0 18px 44px rgba(0,0,0,.28);
    aspect-ratio:16/9;
    max-width:1180px; margin:14px auto;
    display:none;
}
.kick-stream__player iframe{
    position:absolute; inset:0; width:100%; height:100%; border:0; display:block;
}

.live-badge{
    position:absolute; top:12px; left:12px;
    z-index:2; font-weight:900; letter-spacing:.06em;
    padding:6px 10px; border-radius:999px; font-size:12px;
    color:#052015;
    background:linear-gradient(90deg,var(--brand1),var(--brand2));
    box-shadow:0 10px 24px rgba(0,224,145,.28);
}
.live-stats{
    position:absolute; top:12px; right:12px; z-index:2;
    display:flex; align-items:center; gap:8px;
    padding:6px 10px; border-radius:999px; font-weight:800; font-size:12px;
    color:#e9f6ff; background:rgba(0,0,0,.42); border:1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
}
.live-stats .dot{
    width:8px; height:8px; border-radius:999px; background:#00e091; display:inline-block;
    box-shadow:0 0 12px rgba(0,224,145,.8);
}

.kick-skel{
    position:absolute; inset:0;
    background:
            linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.06) 48%, rgba(255,255,255,0) 100%),
            #0f141c;
    background-size: 240% 100%;
    animation: skel 1.6s ease-in-out infinite;
}
@keyframes skel{ from{background-position:200% 0} to{background-position:-40% 0} }

.kick-stream__offline{
    display:none;
    text-decoration:none; color:inherit;
    max-width:1180px; margin:14px auto; display:block;
}
.offline-fig{
    position:relative; border-radius:18px; overflow:hidden;
    border:1px solid var(--line); background:#0f141c;
    box-shadow:0 18px 44px rgba(0,0,0,.28);
}
.offline-fig img{ width:100%; display:block; aspect-ratio:16/9; object-fit:cover; object-position:center 42%; }
.offline-fig figcaption{
    position:absolute; inset:auto 0 0 0; display:flex; gap:10px; align-items:center; justify-content:space-between;
    padding:12px 14px; background:linear-gradient(0deg, rgba(0,0,0,.55), transparent);
    color:#eaf2ff; font-weight:800;
}
.offline-fig .status{
    padding:6px 10px; border-radius:999px; font-size:12px; letter-spacing:.06em;
    background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18);
}
.offline-fig .hint{ opacity:.9; }

.kick-stream__player[data-state="loading"] .live-badge,
.kick-stream__player[data-state="loading"] .live-stats{ opacity:0; }

@media (max-width:720px){
    .kick-stream__player,
    .kick-stream__offline{ border-radius:16px; }
    .offline-fig figcaption{ padding:10px 12px; font-size:14px; }
}
.kick-stream .wrap{
    max-width:1180px !important;
    margin:0 auto !important;
    padding:0 20px !important;
}
.kick-stream__player,
.kick-stream__offline{
    width:100% !important;
    max-width:none !important;
    margin:14px 0 !important;
    border-radius:18px !important;
}

.kick-stream__player,
.offline-fig{
    border:1px solid var(--line) !important;
    box-shadow:0 18px 44px rgba(0,0,0,.28) !important;
}

@media (max-width: 720px){
    .kick-stream__player{
        aspect-ratio:auto !important;
        height: 58vw !important;
    }
    .kick-stream__player iframe{ height:100% !important; }

    .offline-fig img{
        aspect-ratio:auto !important;
        height: 58vw !important;
        width:100% !important;
        object-fit:cover !important; object-position:center 45% !important;
    }

    .live-badge, .live-stats{
        top:10px !important;
        padding:5px 9px !important;
        font-size:11px !important;
    }
}

@media (min-width:721px) and (max-width:1100px){
    .kick-stream__player{
        aspect-ratio:auto !important;
        height: 46vw !important;
    }
    .offline-fig img{ height:46vw !important; }
}

.kick-stream .wrap{
    max-width:1400px !important;
    margin:0 auto !important;
    padding:0 20px !important;
}
.kick-stream__player,
.kick-stream__offline{
    width:100% !important;
    max-width:none !important;
    margin:14px 0 !important;
    border-radius:18px !important;
}

.kick-stream__player,
.offline-fig{
    border:1px solid var(--line) !important;
    box-shadow:0 18px 44px rgba(0,0,0,.28) !important;
}

@media (max-width: 720px){
    .kick-stream__player{
        aspect-ratio:auto !important;
        height: 58vw !important;
    }
    .kick-stream__player iframe{ height:100% !important; }

    .offline-fig img{
        aspect-ratio:auto !important;
        height: 58vw !important;
        width:100% !important;
        object-fit:cover !important; object-position:center 45% !important;
    }

    .live-badge, .live-stats{
        top:10px !important;
        padding:5px 9px !important;
        font-size:11px !important;
    }
}

@media (min-width:721px) and (max-width:1100px){
    .kick-stream__player{
        aspect-ratio:auto !important;
        height: 46vw !important;
    }
    .offline-fig img{ height:46vw !important; }
}
:root{ --contentW:1300px; }

.wrap{ max-width: var(--contentW) !important; margin: 0 auto !important; padding: 0 20px !important; }
.offers-table__title, .offers-table__tnc, .offer-row{ max-width: var(--contentW) !important; }

.about{
    position:relative;
    padding:clamp(36px,6vw,80px) 0;
    background:
            radial-gradient(720px 280px at 18% 0%, rgba(0,224,145,.12), transparent 60%),
            radial-gradient(620px 260px at 86% 8%, rgba(124,58,237,.12), transparent 60%),
            var(--bg);
}
.about__head{margin-bottom:14px;text-align:center}
.about__head h2{margin:0 0 6px;font-size:clamp(22px,3.2vw,32px);font-weight:800}
.about__sub{margin:0 auto;max-width:840px;color:var(--muted)}

.about__grid{
    display:grid; gap:18px; align-items:stretch;
    grid-template-columns: 1fr;
}
@media (min-width: 920px){
    .about__grid{ grid-template-columns: .95fr 1.05fr; gap:28px; }
}

.about__photo{
    position:relative; border-radius:24px; overflow:hidden;
    border:1px solid var(--line); background:var(--panel);
    box-shadow:0 16px 40px rgba(0,0,0,.35);
    isolation:isolate;
}
.about__photo picture, .about__photo img{display:block;width:100%;height:100%}
.about__photo img{
    object-fit:cover; object-position:center 40%;
    aspect-ratio: 4 / 3;
}
@media (min-width: 680px){ .about__photo img{ aspect-ratio: 16 / 10; } }

.about__photo::before{
    content:""; position:absolute; inset:-1px; border-radius:24px;
    padding:1px; background:linear-gradient(120deg,var(--brand1),var(--brand2));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity:.6; pointer-events:none;
}
.about__photo::after{
    content:""; position:absolute; inset:auto -20% -20% -20%;
    height:40%; filter:blur(40px);
    background: radial-gradient(40% 80% at 50% 0%, rgba(0,224,145,.25), transparent 60%);
    pointer-events:none; z-index:-1;
}
.about__photo figcaption{
    border-top:1px solid var(--line); font-size:12px; color:#9fb0c9; padding:10px 12px; background:#0f141c
}

.about__content{
    background:linear-gradient(180deg, rgba(255,255,255,.03), transparent), var(--panel);
    border:1px solid var(--line); border-radius:24px; padding:18px;
    box-shadow:0 16px 40px rgba(0,0,0,.28);
}
.about__title{margin:0 0 8px;font-size:clamp(18px,2.6vw,24px);font-weight:800}
.about__content p{margin:0 0 10px;color:#d7e3f5}

.about__kpis{
    display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; margin:12px 0 6px; padding:0; list-style:none;
}
@media (min-width: 560px){ .about__kpis{grid-template-columns:repeat(4,1fr)} }
.kpi{
    background:#121a25; border:1px solid #253044; border-radius:14px; padding:10px 12px;
    display:flex; flex-direction:column; align-items:flex-start; gap:4px;
}
.kpi .k{font-size:12px;color:#a8b6cc;text-transform:uppercase;letter-spacing:.06em}
.kpi .v{font-weight:900}

.about__cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:10px}
.about__note{margin:8px 0 0;color:#9fb0c9;font-size:12px}

@media (max-width:720px){
    .about__content{ padding:16px }
    .about__cta{ justify-content:center }
}

.about__content { padding-bottom: 16px; }
.about__cta { display: none !important; }

.about__kpis{
    display: grid !important;
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    gap: 12px !important; margin: 14px 0 6px !important; padding: 0 !important;
}
@media (min-width: 700px){
    .about__kpis{ grid-template-columns: repeat(3,1fr) !important; }
}
@media (min-width: 1024px){
    .about__kpis{ grid-template-columns: repeat(4,1fr) !important; }
}

.kpi{
    background:#121a25 !important;
    border:1px solid #253044 !important;
    border-radius:14px !important;
    padding:12px !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:center !important;
    gap:4px !important;
    min-height:72px !important;
}
.kpi .k{ font-size:12px !important; color:#a8b6cc !important; text-transform:uppercase !important; letter-spacing:.06em !important; }
.kpi .v{ font-weight:900 !important; color:#eaf6ff !important; line-height:1.2 !important; }


:root{ --kpiLabelH: 40px; }
@media (max-width:1024px){ :root{ --kpiLabelH: 36px; } }
@media (max-width:700px){  :root{ --kpiLabelH: 32px; } }

.about__kpis .kpi{
    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-start !important;
}

.about__kpis .kpi .k{
    display:flex !important;
    align-items:flex-end !important;
    min-height: var(--kpiLabelH) !important;
    line-height:1.15 !important;
    margin:0 !important;
    text-align:left !important;
}


.about__kpis .kpi .v{
    margin-top:4px !important;
    line-height:1.2 !important;
    align-self:flex-start !important;
}

:root{ --kpiMinH: 96px; }

.about__kpis .kpi{
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    min-height: var(--kpiMinH) !important;
}

.about__kpis .kpi .k{
    display: block !important;
    min-height: 0 !important;
    margin: 0 !important;
    line-height: 1.15 !important;
}

.about__kpis .kpi .v{
    margin-top: 6px !important;
    line-height: 1.2 !important;
}
.about__kpis .kpi{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
    gap:6px !important;
    min-height:auto !important;
    padding:12px !important;
}

.about__kpis .kpi .k,
.about__kpis .kpi .v{
    width:100% !important;
    margin:0 !important;
    min-height:0 !important;
    text-align:center !important;
    align-self:center !important;
}


:root{ --kpiLabelH: 0px; --kpiMinH: 0px; }

.about__content{
    text-align: center !important;
}
.about__content .about__title,
.about__content p,
.about__content .about__note{
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.about__kpis{
    justify-items: center !important;
}
.about__kpis .kpi{
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}
.about__kpis .kpi .k,
.about__kpis .kpi .v{
    text-align: center !important;
    align-self: center !important;
}

.about .wrap{ max-width: var(--contentW) !important; }

.about__grid,
.about__content,
.about__photo{ box-sizing: border-box !important; max-width:100% !important; }

@media (min-width: 960px){
    .about__grid{
        display:grid !important;
        grid-template-columns: 1.45fr 1fr !important;
        align-items: stretch !important;
        gap: 24px !important;
    }

    .about__photo,
    .about__content{
        align-self: stretch !important;
        height: 100% !important;
        margin: 0 !important;
    }

    .about__photo{ display:flex !important; flex-direction:column !important; }
    .about__photo picture{ display:flex !important; flex:1 1 auto !important; }
    .about__photo img{
        width:100% !important; height:100% !important;
        object-fit:cover !important; object-position:center 45% !important;
        flex:1 1 auto !important; aspect-ratio:auto !important;
    }
    .about__photo figcaption{
        display:block; border-top:1px solid var(--line);
        font-size:12px; color:#9fb0c9; padding:10px 12px; background:#0f141c;
    }

    .about__content{
        width:100% !important; max-width:100% !important;
        overflow:hidden !important;
        padding:22px !important;
    }
}

@media (max-width: 959.98px){
    .about__grid{ grid-template-columns: 1fr !important; }
    .about__photo img{ aspect-ratio: 16 / 9 !important; height:300px !important; }
}

.about__kpis .kpi,
.about__kpis .kpi .k{ min-height: 0 !important; }

.about__content{
    width:100% !important; max-width:100% !important; min-width:0 !important;
    overflow:visible !important; word-break:normal !important; overflow-wrap:anywhere !important;
}

.about__kpis{
    display:grid !important;
    gap:12px !important;
    grid-template-columns: repeat(4, minmax(0,1fr)) !important;
    align-items:stretch !important;
    margin-top:14px !important;
}

@media (max-width: 1199.98px){
    .about__kpis{ grid-template-columns: repeat(3, minmax(0,1fr)) !important; }
}
@media (max-width: 720px){
    .about__kpis{ grid-template-columns: repeat(2, minmax(0,1fr)) !important; gap:10px !important; }
}

.about__kpis .kpi{
    min-width:0 !important; box-sizing:border-box !important;
    border-radius:14px !important; padding:12px !important;
    display:flex !important; flex-direction:column !important;
    justify-content:center !important; align-items:center !important; text-align:center !important;
    min-height:86px !important;
}
.about__kpis .kpi .k{
    font-size:12px !important; letter-spacing:.06em !important; color:#a9b6c9 !important;
    margin:0 0 4px !important; line-height:1.15 !important; white-space:normal !important;
}
.about__kpis .kpi .v{
    font-weight:900 !important; color:#eaf2ff !important; line-height:1.2 !important;
    margin:0 !important; white-space:normal !important;
}

@media (max-width: 720px){
    .about__kpis .kpi{ min-height:82px !important; padding:12px !important; }
    .about__kpis .kpi .k{ font-size:11.5px !important; }
}


@media (max-width: 720px){
    .about__content{
        padding: 12px !important;
        border-radius: 16px !important;
    }
    .about__title{ font-size: 18px !important; margin-bottom: 6px !important; }
    .about__content p{ font-size: 14px !important; line-height: 1.35 !important; margin-bottom: 10px !important; }

    .about__kpis{
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        margin-top: 8px !important;
    }

    .about__kpis .kpi{
        padding: 10px !important;
        border-radius: 10px !important;
        min-height: 64px !important;
    }
    .about__kpis .kpi .k{
        font-size: 11px !important;
        letter-spacing: .04em !important;
        margin: 0 0 2px !important;
    }
    .about__kpis .kpi .v{
        font-size: 14px !important;
        line-height: 1.15 !important;
    }

    .about__note{
        margin-top: 8px !important;
        font-size: 11.5px !important;
        opacity: .9 !important;
    }
}

@media (max-width: 720px){
    .about__kpis{
        display:grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap:8px !important;
        list-style:none !important;
        padding:0 !important;
        margin-top:8px !important;
    }

    :root{ --kpiH-m: 75px; }
    .about__kpis .kpi{
        width:100% !important;
        height:var(--kpiH-m) !important;
        min-height:var(--kpiH-m) !important;
        box-sizing:border-box !important;
        border-radius:12px !important;
        padding:10px !important;

        display:flex !important;
        flex-direction:column !important;
        justify-content:center !important;
        align-items:center !important;
        text-align:center !important;

        min-width:0 !important;
        overflow-wrap:anywhere !important;
        white-space:normal !important;
    }

    .about__kpis .kpi .k{
        font-size:11px !important;
        letter-spacing:.04em !important;
        margin:0 0 2px !important;
        line-height:1.15 !important;
    }
    .about__kpis .kpi .v{
        font-size:14px !important;
        line-height:1.15 !important;
        margin:0 !important;
    }
}

.news-wins{ padding: clamp(28px,5vw,64px) 0; }
.news-wins__head{ text-align:center; margin-bottom:16px; }
.news-wins__head h2{ margin:0 0 6px; font-size:clamp(22px,3.2vw,32px); font-weight:800; }
.news-wins__head .sub{ margin:0; color:var(--muted); }

.wins-grid{
    display:grid; gap:18px;
    grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (max-width: 900px){ .wins-grid{ grid-template-columns: 1fr; } }

.win-card{
    background: linear-gradient(180deg, rgba(255,255,255,.03), transparent), var(--panel);
    border:1px solid var(--line); border-radius:18px; overflow:hidden;
    box-shadow:0 16px 38px rgba(0,0,0,.28);
    display:flex; flex-direction:column;
}
.win-media{ position:relative; line-height:0; }
.win-media img{ width:100%; aspect-ratio:16/9; object-fit:left cover; display:block; }
.win-media .tag{
    position:absolute; left:12px; bottom:12px;
    padding:6px 10px; border-radius:999px; font-size:12px; font-weight:800; letter-spacing:.04em;
    color:#052015; background:linear-gradient(90deg,var(--brand1),var(--brand2));
    box-shadow:0 12px 26px rgba(0,224,145,.28);
}
.win-body{ padding:14px 14px 16px; display:flex; flex-direction:column; gap:10px; }
.win-body h3{ margin:0; font-size:clamp(16px,2.2vw,20px); line-height:1.2; }
.win-body p{ margin:0; color:var(--muted); }
.win-meta{ display:flex; align-items:center; gap:8px; color:#a9b6c9; font-size:13px; }
.win-meta .sep{ opacity:.6; }

.news-wins .win-body{
    text-align: center !important;
    align-items: center !important;
}
.news-wins .win-body h3{ justify-self:center; }
.news-wins .win-meta{
    justify-content: center !important;
}
.news-wins .win-media{
    position: relative;
}

.news-wins .win-media .tag{
    left: 50% !important;
    bottom: 12px !important;
    transform: translateX(-50%) !important;
    text-align: center !important;
    max-width: calc(100% - 24px) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}


.where-one{
    padding: clamp(36px,6vw,80px) 0;
    background:
            radial-gradient(720px 280px at 18% 0%, rgba(0,224,145,.10), transparent 60%),
            radial-gradient(620px 260px at 86% 8%, rgba(124,58,237,.10), transparent 60%),
            var(--bg);
}
.where-one__head{ text-align:center; margin-bottom:16px; }
.where-one__head h2{
    margin:0 0 6px; font-size:clamp(22px,3.2vw,32px); font-weight:800;
}
.where-one__head h2 span{
    background:linear-gradient(90deg,var(--brand1),var(--brand2));
    -webkit-background-clip:text; background-clip:text; color:transparent;
}
.where-one__head .lead{ margin:0 auto; max-width:960px; color:var(--muted); }

.wcard{
    background:linear-gradient(180deg, rgba(255,255,255,.03), transparent), var(--panel);
    border:1px solid var(--line);
    border-radius:18px;
    padding:18px;
    box-shadow:0 16px 38px rgba(0,0,0,.28);
    max-width:1300px;
    margin:14px auto 0;
}
.wcard h3{ margin:4px 0 10px; font-size:clamp(18px,2.4vw,22px); font-weight:800; }
.wcard h4{ margin:0 0 8px; font-size:16px; }
.wcard p{ margin:0 0 12px; color:#d7e3f5; }

.wcard .note{
    border:1px solid var(--line);
    background:#0f141c;
    border-radius:12px;
    padding:10px 12px;
    color:#d7e3f5;
}

.ticks{ margin:6px 0 0; padding-left:0; list-style:none; color:#d7e3f5; }
.ticks li{
    display:flex; gap:8px; align-items:flex-start; margin:8px 0;
}
.ticks li::before{
    content:""; width:8px; height:4px; margin-top:6px;
    border-left:2px solid var(--brand2); border-bottom:2px solid var(--brand2);
    transform:rotate(-45deg);
}

.wcard--split{ display:grid; gap:14px; }
@media (min-width:880px){
    .wcard--split{ grid-template-columns: 1fr 1fr; }
}
.wcard--split .split__col{ background:transparent; }

.wcta{
    text-align:center; margin:16px auto 0; max-width:1100px;
}
.wcta p{ margin:0 0 10px; color:#cde1f5; }
.wcta .btn--kick{
    background:linear-gradient(90deg,var(--brand1),var(--brand2));
    color:#052015; border:0; border-radius:12px; padding:10px 14px; font-weight:800;
    box-shadow:0 12px 28px rgba(0,224,145,.28);
}
.wcta .btn--kick:hover{ filter:brightness(1.06); text-decoration:none; }

@media (max-width:720px){
    .wcard{ padding:14px; border-radius:16px; }
    .wcard p{ font-size:14px; line-height:1.35; }
}

.where-one{
    position: relative;
    background:
            radial-gradient(60% 40% at 20% 0%, rgba(0,224,145,.12), transparent 60%),
            radial-gradient(55% 38% at 80% 10%, rgba(124,58,237,.10), transparent 60%),
            var(--bg);
}
.where-one::before,
.where-one::after{
    content:"";
    position:absolute; inset:auto 0 0 0; height:240px;
}
.where-one .wrap{ position:relative; z-index:1; }

.where-one .wcard{
    position:relative;
    background:
            radial-gradient(120% 120% at 8% 0%, rgba(0,224,145,.05), transparent 60%),
            linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,0) 60%),
            #0f1417;
    border:1px solid #1f2a37;
    box-shadow:
            0 10px 34px rgba(0,0,0,.36),
            inset 0 1px 0 rgba(255,255,255,.025);
    transition: transform .15s ease, box-shadow .15s ease;
}
.where-one .wcard::after{
    content:"";
    position:absolute; inset:-1px; border-radius:inherit; padding:1px;
    background:linear-gradient(120deg,var(--brand1),var(--brand2));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity:.22; pointer-events:none; transition:opacity .15s ease;
}
.where-one .wcard:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 42px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.03);
}
.where-one .wcard:hover::after{ opacity:.42; }

.where-one .wcard .note{
    background:#0b131a;
    border-color:#243142;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}

.where-one .wcard--split{
    background:
            linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
            #101720;
    border-color:#1f2a37;
}
.where-one .wcard--split .split__col{
    background:#0b131a;
    border:1px solid #243142;
    border-radius:12px;
    padding:12px;
    box-shadow:0 6px 18px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.02);
}

.where-one .ticks li::before{
    border-left-color: var(--brand2);
    border-bottom-color: var(--brand2);
}

.where-one__head .lead{ color:#b7c6da; }
.where-one .wcard h3{ color:#e7f0ff; }
.where-one .wcard h4{ color:#dfeaff; }

@media (max-width:720px){
    .where-one .wcard{ margin-top:16px; }
}

.social{
    position:relative;
    padding: clamp(36px,6vw,80px) 0;
    background:
            radial-gradient(70% 40% at 15% 0%, rgba(0,224,145,.10), transparent 60%),
            radial-gradient(60% 40% at 85% 8%, rgba(124,58,237,.08), transparent 60%),
            var(--bg);
}
.social__head{ text-align:center; margin-bottom:18px; }
.social__head h2{
    margin:0 0 6px; font-weight:800; font-size:clamp(22px,3.2vw,30px);
}
.social__head h2 span{
    background: linear-gradient(90deg,var(--brand1),var(--brand2));
    -webkit-background-clip:text; background-clip:text; color:transparent;
}
.social__head .lead{ color:var(--muted); }

.social__grid{
    display:grid; grid-template-columns: 1fr; gap:14px; max-width:820px; margin:0 auto;
}
@media (min-width: 720px){
    .social__grid{ grid-template-columns: 1fr 1fr; gap:16px; }
}

.s-card{
    position:relative;
    display:grid; grid-template-columns: 48px 1fr auto; align-items:center; gap:14px;
    padding:14px 16px; border-radius:16px; text-decoration:none; color:var(--text);
    background:
            radial-gradient(120% 120% at 0% 0%, rgba(0,224,145,.06), transparent 60%),
            linear-gradient(180deg, rgba(255,255,255,.03), transparent 60%),
            #0f1417;
    border:1px solid #1f2a37;
    box-shadow: 0 12px 28px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.02);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.s-card::after{
    content:""; position:absolute; inset:-1px; border-radius:inherit; padding:1px;
    background:linear-gradient(120deg,var(--brand1),var(--brand2));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity:.22; pointer-events:none; transition:opacity .15s ease;
}
.s-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 42px rgba(0,0,0,.42);
    border-color:#243245;
}
.s-card:hover::after{ opacity:.42; }

.s-card__icon{
    width:48px; height:48px; display:grid; place-items:center; border-radius:12px;
    color:#0b1f16; background:linear-gradient(90deg,var(--brand1),var(--brand2));
    box-shadow:0 10px 24px rgba(0,224,145,.25);
}
.s-card__body h3{ margin:0; font-weight:800; font-size:16px; }
.s-card__body p{ margin:4px 0 0; color:#b7c6da; font-size:14px; }
.s-card__cta{
    display:inline-flex; align-items:center; justify-content:center;
    padding:10px 14px; border-radius:999px; font-weight:800; white-space:nowrap;
    background:linear-gradient(90deg,var(--brand1),var(--brand2)); color:var(--green-ink);
    box-shadow:0 12px 28px rgba(0,224,145,.25);
}

.social a,
.social a:hover,
.social .s-card,
.social .s-card *{ text-decoration:none !important; }

.site-footer{
    margin-top: clamp(28px, 6vw, 64px);
    padding: clamp(32px, 5vw, 56px) 0 clamp(26px, 3.8vw, 42px);
    background: transparent;
    border: 0;
}

.site-footer .wrap{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.sf-brand{
    display:inline-block;
    margin-bottom: 18px;
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 800;
    letter-spacing: .4px;
    color: var(--brand1, #00ff9d);
    text-decoration: none;
    text-shadow: 0 0 18px rgba(0,224,145,.22);
}

.sf-social{
    display:flex; flex-wrap:wrap; gap:12px 14px; justify-content:center;
    margin: 10px 0 18px;
}
.sf-social a{
    display:inline-flex; align-items:center; gap:10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.055);
    border:1px solid rgba(255,255,255,.12);
    color:#e7f2ff; text-decoration:none;
    font-size: 15px; font-weight: 600;
    line-height: 1;
    transition: transform .15s ease, filter .15s ease, border-color .15s ease, box-shadow .15s ease;
    box-shadow: inset 0 0 0 9999px rgba(0,0,0,.06), 0 6px 18px rgba(0,0,0,.25);
}
.sf-social a:hover{
    transform: translateY(-1px);
    filter: brightness(1.06);
    border-color: rgba(255,255,255,.22);
    box-shadow: inset 0 0 0 9999px rgba(0,0,0,.04), 0 10px 26px rgba(0,0,0,.30);
}

.sf-social .ico{ width:20px; height:20px; display:grid; place-items:center; }
.sf-social .ico img{ width:18px; height:18px; display:block; }

.sf-social .ico img.is-dark{
    filter: invert(1) brightness(1.15) contrast(1.05);
}

.sf-copy, .sf-legal, .sf-domain{
    margin: 6px 0;
    font-size: clamp(12.5px, 1.4vw, 14px);
    color:#c9d6e6;
    opacity:.92;
}
.sf-domain{ opacity:1 }
.sf-domain a{ color:#9bd9c6; text-decoration:none }
.sf-domain a:hover{ text-decoration:underline }

.sf-line{
    width:min(880px, 90%);
    height:1px; margin: 10px auto 14px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
    border:0;
}

.site-footer a{ text-decoration: none }

@media (max-width: 520px){
    .sf-social a{ padding:9px 14px; font-size:14px }
    .sf-social .ico{ width:18px; height:18px }
    .sf-social .ico img{ width:16px; height:16px }
}

:where(main, .site-main) > :where(section, .block, .panel, .about, .where, .offers-table, .news, .social):last-of-type{
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.wrap > :last-child{ margin-bottom: 0 !important; }

:where(.where__cta, .hero__cta, .cta, .offers-table__tnc):last-child{
    margin-bottom: 0 !important;
}

.site-footer{
    margin-top: 16px !important;
    padding: clamp(40px, 5.6vw, 68px) 0 clamp(34px, 4.4vw, 52px) !important;
    background: transparent;
    border: 0;
}

.site-footer .wrap{
    max-width: 1360px;
    padding: 0 28px;
    text-align: center;
}

.sf-brand{
    display:inline-block;
    margin-bottom: 18px;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
    letter-spacing: .4px;
    color: var(--brand1, #00ff9d);
    text-decoration: none;
    text-shadow: 0 0 18px rgba(0,224,145,.24);
}

.sf-social{
    display:flex; flex-wrap:wrap; gap:14px 16px; justify-content:center;
    margin: 12px 0 22px;
}
.sf-social a{
    display:inline-flex; align-items:center; gap:12px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.14);
    color:#e7f2ff;
    font-size: 16px; font-weight: 700; line-height:1;
    text-decoration:none;
    box-shadow: inset 0 0 0 9999px rgba(0,0,0,.05), 0 8px 22px rgba(0,0,0,.28);
    transition: transform .15s ease, filter .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.sf-social a:hover{
    transform: translateY(-1px);
    filter: brightness(1.06);
    border-color: rgba(255,255,255,.22);
    box-shadow: inset 0 0 0 9999px rgba(0,0,0,.04), 0 12px 30px rgba(0,0,0,.32);
}

.sf-social .ico{ width:24px; height:24px; display:grid; place-items:center; }
.sf-social .ico img{ width:20px; height:20px; display:block; }

.sf-social .ico img.is-dark{
    filter: invert(1) brightness(1.15) contrast(1.05);
}

.sf-copy{ font-size: clamp(14px, 1.6vw, 16px); color:#d6e3f6; margin: 6px 0; }
.sf-legal{ font-size: clamp(13px, 1.4vw, 15px); color:#c3d1e4; margin: 4px 0; }
.sf-domain{ font-size: clamp(14px, 1.6vw, 16px); color:#a9efdb; margin: 6px 0; }
.sf-domain a{ color:#9bd9c6; text-decoration:none }
.sf-domain a:hover{ text-decoration:underline }

.sf-line{
    width:min(960px, 92%);
    height:1px; margin: 12px auto 16px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
}

.site-footer a{ text-decoration:none }

@media (max-width: 520px){
    .sf-social a{ padding:10px 14px; font-size:15px }
    .sf-social .ico{ width:22px; height:22px }
    .sf-social .ico img{ width:18px; height:18px }
}
.sf-brand{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:8px 12px;
    border-radius:12px;
}

.sf-brand__logo{
    width: clamp(28px, 3.2vw, 36px);
    height: clamp(28px, 3.2vw, 36px);
    display:block;
    object-fit:contain;
    filter: drop-shadow(0 0 10px rgba(0,224,145,.28));
    border-radius: 10px;
}

@media (max-width: 420px){
    .sf-brand{ gap:10px; padding:6px 10px; }
}
.sf-brand__logo.is-avatar{
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,.14);
    background: #0f141c;
}

.brand{
    display:flex; align-items:center; gap:10px;
    text-decoration:none !important;
}

.brand__mark{
    flex:0 0 28px;
    width:28px; height:28px;
    object-fit:contain;
    image-rendering:auto;
    border-radius:8px;
    box-shadow:0 0 0 1px rgba(0,224,145,.22), 0 4px 14px rgba(0,224,145,.16);
}

.brand__logo{
    font-weight:800; letter-spacing:.4px;
    color:var(--green1);
    text-shadow:0 0 14px rgba(0,224,145,.35);
}

.hdr a, .nav a{ text-decoration:none !important; }
.hdr a:hover, .nav a:hover{ text-decoration:none !important; opacity:1; }

.nav a.is-active{ color:#fff; font-weight:800; }

.burger{ cursor:pointer; }
.burger span{ width:22px; height:2px; background:#d3deed; border-radius:2px; display:block; margin:4px 0; }

@media (max-width:859.98px){
    .hide-sm{ display:none; }
    .nav.is-open{
        position:fixed; inset:72px 16px auto 16px;
        display:flex; flex-direction:column; gap:10px;
        background:#0e141c; border:1px solid var(--line); border-radius:14px; padding:14px;
        box-shadow:0 24px 52px rgba(0,0,0,.45); z-index:60;
    }
    .nav.is-open a{ padding:10px; border-radius:8px; }
    .nav.is-open a:hover{ background:#151e2a; }
}
@media (min-width:860px){
    .hide-sm{ display:inline-flex; }
}


.social__head{ text-align:center; }
.social__head h2{
    margin:0 0 6px;
    font-size:clamp(22px,3.2vw,32px);
    font-weight:800;
}

.social__head .brand{
    display:block;
    margin-top:2px;
    background:linear-gradient(90deg,var(--green1),var(--green2));
    -webkit-background-clip:text;background-clip:text;color:transparent;
    font-weight:900;
    letter-spacing:.3px;
}



.offers-table{ padding:28px 20px 48px; }
.offers-table__title{
    max-width:1200px; margin:0 auto 14px; text-align:center;
    font-size:clamp(20px,3.2vw,28px); letter-spacing:-.01em;
}
.offers-table__tnc{
    max-width:1200px; margin:12px auto 0; color:var(--muted);
    font-size:12px; text-align:center;
}

.offer-row{
    display:grid;
    grid-template-columns: 160px 220px 160px 60px 1fr auto;
    align-items:center; gap:18px;
    max-width:1200px; margin:14px auto 0; padding:16px 18px;
    background: linear-gradient(180deg,#2b2c62,#222455);
    border:1px solid rgba(255,255,255,.14);
    border-radius:18px; text-decoration:none; color:#eef2ff;
    box-shadow:0 10px 24px rgba(0,0,0,.25);
    transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.offer-row:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 36px rgba(0,0,0,.3);
    border-color:rgba(255,255,255,.22);
}

.offer__logo{
    width:100%;
    height:68px;
    display:grid;
    place-items:center;
    line-height:0;
}
.offer__logo img{
    display:block;
    max-width:90%;
    max-height:75%;
    margin:0 auto;
    object-fit:contain;
    object-position:center;

    transform: translate3d(0, var(--y, 0%), 0) scale(var(--scale, 1)) !important;
    transform-origin:50% 50%;
    pointer-events:none;
}

.offer__logo{ --scale: var(--scale-d, 1); --y: var(--y-d, 0%); }

@media (max-width:1100px){
    .offer-row{ grid-template-columns: 120px 1fr 1fr 1fr auto; gap:14px; }
    .offer__logo{ --scale: var(--scale-t, var(--scale-d, 1));
        --y:     var(--y-t,     var(--y-d, 0%)); }
    .offer__col--dash{ display:none; }
}

@media (max-width:720px){
    .offer-row{
        grid-template-columns: 1fr 1fr 24px;
        grid-template-areas:
      "logo logo logo"
      "bonus spins dash"
      "features features features"
      "cta cta cta";
        gap:12px; padding:16px; text-align:center;
    }

    .offer__logo{ grid-area:logo; height:74px; justify-self:center; }

    .offer-row .offer__col:nth-of-type(2){ grid-area:bonus; justify-self:center; }
    .offer-row .offer__col:nth-of-type(3){ grid-area:spins; justify-self:center; }

    .offer__logo{
        --scale: var(--scale-m, var(--scale-t, var(--scale-d, 1)));
        --y:     var(--y-m,     var(--y-t,     var(--y-d, 0%)));
    }

    .offer__label{ font-size:12px; opacity:.7; letter-spacing:.08em; text-transform:uppercase; margin-bottom:2px; }
    .offer__value{ font-size:18px; font-weight:900; }
}

@media (min-width:500px) and (max-width:720px){
    .offer__logo{ height:88px; }
}

.offer__col .offer__label{ font-size:12px; opacity:.75; letter-spacing:.08em; text-transform:uppercase; }
.offer__value{ font-size:16px; font-weight:800; }
.offer__col--dash{ text-align:center; opacity:.55; }

.offer__features{
    list-style:none; margin:0; padding:0; display:grid; gap:8px;
    color:#e6ebff; font-size:14px;
}
.offer__features li{ display:flex; align-items:baseline; gap:8px; }
.offer__features li::before{
    content:"✔"; color:#2ee6d6; font-weight:900; font-size:14px; line-height:1; flex:0 0 auto; transform:translateY(1px);
}

.offer__cta{ display:flex; align-items:center; gap:12px; }
.btn-claim{
    display:inline-flex; align-items:center; justify-content:center;
    padding:12px 50px; border-radius:999px; font-weight:900; letter-spacing:.02em;
    background:#fff; color:#000; border:1px solid rgba(255,255,255,.18);
    transition:filter .15s ease, transform .15s ease;
}
.offer-row:hover .btn-claim{ filter:brightness(1.06); transform:translateY(-1px); }

.bt-card, .offer-row, .offer__col, .offer__logo{ min-width:0; }

@media (min-width:500px) and (max-width:720px){
    .offer-row[data-brand="22bet"]     .offer__logo { --scale:1.3; --y: 5% }
    .offer-row[data-brand="betlabel"]  .offer__logo { --scale:1.4; --y: 5% }
    .offer-row[data-brand="dragon"]    .offer__logo { --scale:1.5; --y: 5% }
    .offer-row[data-brand="slotsgem"]  .offer__logo { --scale:2.5; --y: 5% }
    .offer-row[data-brand="hellspin"]  .offer__logo { --scale:1.5; --y: 5% }
    .offer-row[data-brand="bizzo"]     .offer__logo { --scale:2.9; --y: 5% }
    .offer-row[data-brand="national"]  .offer__logo { --scale:1.7; --y: 5% }
    .offer-row[data-brand="20bet"]     .offer__logo { --scale:1.5; --y: 5% }
    .offer-row[data-brand="supraplay"] .offer__logo { --scale:3.0; --y: 5% }
    .offer-row[data-brand="bilucky"]   .offer__logo { --scale:1.2; --y: 5% }
    .offer-row[data-brand="limewin"]   .offer__logo { --scale:1.5; --y: 5% }
    .offer-row[data-brand="vave"]      .offer__logo { --scale:3.2; --y:-10% }
    .offer-row[data-brand="22casino"]  .offer__logo { --scale:0.8; --y: 5% }
    .offer-row[data-brand="azurslot"]  .offer__logo { --scale:1.6; --y: 5% }
    .offer-row[data-brand="spinando"]  .offer__logo { --scale:4.2; --y: 5% }
}

.offers-table__title{ color:#e7f0ff; }
.offers-table__tnc{ color:var(--muted); }

.offer-row{
    color:var(--text);
    background:
            linear-gradient(180deg, rgba(255,255,255,.03), transparent),
            var(--panel) !important;
    border:1px solid var(--line) !important;
    box-shadow:
            0 10px 24px rgba(0,0,0,.25),
            0 0 0 rgba(0,224,145,0);
}
.offer-row:hover{
    border-color:rgba(255,255,255,.22) !important;
    box-shadow:
            0 16px 36px rgba(0,0,0,.30),
            0 0 28px rgba(0,224,145,.12);
}


.offer__col .offer__label{ color:#a9b6c9; }
.offer__value{ color:#eef2ff; }


.offer__features{ color:#e6ebff; }
.offer__features li::before{
    content:"";
    width:8px; height:4px; margin-right:2px;
    border-left:2px solid var(--brand2);
    border-bottom:2px solid var(--brand2);
    transform:rotate(-45deg) translateY(-1px);
}

.btn-claim{
    background:linear-gradient(90deg, var(--brand1), var(--brand2)) !important;
    color:var(--green-ink) !important;
    border:0 !important;
    box-shadow:
            0 14px 30px rgba(0,0,0,.35),
            0 10px 24px rgba(0,224,145,.22) !important;
}
.offer-row:hover .btn-claim{
    filter:brightness(1.06);
    transform:translateY(-1px);
}

body::before{
    content:"";
    position:fixed;
    inset:-25% -25% -25% -25%;
    z-index:0;
    pointer-events:none;
    background:
            radial-gradient(900px 1200px at 50% -10%, rgba(255, 107, 203, 0.92), transparent 60%),
            radial-gradient(760px 960px at 88% 14%, rgba(168, 85, 255, 0.55), transparent 60%),
            radial-gradient(820px 380px at 12% 70%, rgba(244, 114, 182, 0.55), transparent 60%),
            radial-gradient(980px 1300px at 50% 120%, rgba(56, 189, 248, 0.85), transparent 65%),
            linear-gradient(#050715, #050715);
    filter:saturate(108%);
}
@media (max-width:720px){
    body::before{
        background:
                radial-gradient(680px 2000px at 50% -20%, rgba(255, 107, 203, 0.65), transparent 60%),
                radial-gradient(780px 1500px at 50% 120%, rgba(168, 85, 255, 0.9), transparent 65%),
                linear-gradient(#050715, #050715);
    }
}
a{
    color:#ffb4f4;
    text-decoration:none;
}
a:hover{
    text-decoration:underline;
}

/* обводка при фокусе */
:focus-visible{
    outline:2px solid #f973ff;
    outline-offset:2px;
}
/* Bonos cards – неоновая рамка и тень в новом цвете */
.offers-table .offer-row{
    /* базовая тень без зелёного свечения */
    box-shadow:
            0 10px 24px rgba(0,0,0,.35),
            0 0 0 rgba(255,107,203,0);
}

/* hover-тень с фиолетово-розовым сиянием */
.offers-table .offer-row:hover{
    box-shadow:
            0 16px 36px rgba(0,0,0,.45),
            0 0 32px rgba(168,85,255,.32);
}

/* неоновая рамка вокруг карточек вместо зелёной */
.offers-table .offer-row::after{
    box-shadow:
            inset 0 0 0 1px rgba(255,107,203,.32),
            0 0 0 rgba(255,107,203,0);
}

/* более яркое свечение рамки при наведении */
.offers-table .offer-row:hover::after{
    box-shadow:
            inset 0 0 0 2px rgba(255,107,203,.75),
            0 0 26px rgba(168,85,255,.40);
}

/* переопределяем анимацию borderGlow в новой палитре */
@keyframes borderGlow{
    0%{
        box-shadow:
                inset 0 0 0 1px rgba(255,107,203,.32),
                0 0 0 rgba(168,85,255,0);
    }
    50%{
        box-shadow:
                inset 0 0 0 2px rgba(255,107,203,.9),
                0 0 28px rgba(168,85,255,.45);
    }
    100%{
        box-shadow:
                inset 0 0 0 1px rgba(255,107,203,.32),
                0 0 0 rgba(168,85,255,0);
    }
}
/* SOCIAL – перекрашиваем зелёные тени и подсветку */

.social .s-card{
    background:
            radial-gradient(120% 120% at 0% 0%, rgba(255,107,203,.10), transparent 60%),
            linear-gradient(180deg, rgba(255,255,255,.03), transparent 60%),
            #050715;
}

/* иконка слева */
.social .s-card__icon{
    box-shadow:
            0 10px 24px rgba(0,0,0,.35),
            0 0 18px rgba(168,85,255,.45); /* фиолетовое свечение */
}

/* кнопка-CTA справа */
.social .s-card__cta{
    box-shadow:
            0 12px 28px rgba(0,0,0,.35),
            0 0 22px rgba(255,107,203,.48); /* розово-фиолетовый неон */
}

/* можно чуть усилить свечение при hover */
.social .s-card:hover .s-card__icon,
.social .s-card:hover .s-card__cta{
    box-shadow:
            0 14px 30px rgba(0,0,0,.45),
            0 0 26px rgba(255,107,203,.65);
}
/* FOOTER – перекрашиваем домен в фиолетово-розовый неон */
.sf-domain{
    color:#e9e4ff;
}

.sf-domain a{
    color:var(--brand1);
    text-decoration:none;
    text-shadow:0 0 14px rgba(168,85,255,.35);
}

.sf-domain a:hover{
    color:var(--brand2);
    text-decoration:underline;
}
/* ГЛАВНЫЕ КНОПКИ – убираем зелёную тень, делаем фиолетово-розовую */

.btn--primary,
.btn--kick,
.wcta .btn--kick,
.btn-claim{
    box-shadow:
            0 14px 30px rgba(0,0,0,.40),
            0 0 24px rgba(168,85,255,.45) !important; /* фиолетовое свечение */
}

/* hover-состояние – чуть сильнее светим */
.btn--primary:hover,
.btn--kick:hover,
.wcta .btn--kick:hover,
.offer-row:hover .btn-claim{
    box-shadow:
            0 18px 42px rgba(0,0,0,.50),
            0 0 30px rgba(255,107,203,.65) !important; /* розово-фиолетовый неон */
}


/* ===== BONOS PAGE ===== */

.bonos-page{
    padding-bottom: 8px;
}

.bonos-hero{
    position:relative;
    padding:clamp(42px,7vw,92px) 0 26px;
    overflow:hidden;
}
.bonos-hero::before{
    content:"";
    position:absolute;
    inset:-10% 0 auto 0;
    height:420px;
    pointer-events:none;
    background:
            radial-gradient(520px 240px at 12% 10%, rgba(255,107,203,.18), transparent 70%),
            radial-gradient(620px 280px at 88% 0%, rgba(168,85,255,.16), transparent 70%);
}
.bonos-hero__grid{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:24px;
    align-items:stretch;
}
@media (max-width:980px){
    .bonos-hero__grid{ grid-template-columns:1fr; }
}

.bonos-hero__content,
.bonos-hero__panel{
    min-width:0;
}

.bonos-kicker{
    display:inline-flex;
    align-items:center;
    padding:8px 12px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.14);
    background:rgba(255,255,255,.05);
    color:#f2deff;
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:14px;
}

.bonos-hero h1{
    margin:0 0 14px;
    font-size:clamp(34px,5vw,62px);
    line-height:1.02;
    font-weight:800;
    max-width:820px;
}
.bonos-hero__lead{
    margin:0;
    max-width:760px;
    color:#d7d9ef;
    font-size:clamp(15px,1.8vw,18px);
    line-height:1.65;
}
.bonos-hero__actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:24px;
}
.side-points{
    list-style:none;
    margin:0;
    padding:0;
    display:grid;
    gap:10px;
}
.hero-panel-card{
    border-radius:24px;
    padding:22px;
    border:1px solid rgba(255,255,255,.12);
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01)),
            rgba(10,15,36,.92);
    box-shadow:0 18px 44px rgba(0,0,0,.28);
}
.hero-panel-card__eyebrow{
    color:#ffb9ef;
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:10px;
}
.hero-panel-card h2{
    margin:0 0 10px;
    font-size:clamp(22px,2.8vw,30px);
    line-height:1.1;
}
.hero-panel-card p{
    margin:0;
    color:#cad3e7;
    line-height:1.6;
}

.hero-panel-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-top:14px;
}
@media (max-width:620px){
    .hero-panel-stats{ grid-template-columns:1fr; }
}
.hero-stat{
    border-radius:18px;
    padding:16px 14px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.10);
    text-align:center;
}
.hero-stat__n{
    display:block;
    font-size:26px;
    font-weight:900;
    line-height:1;
    margin-bottom:6px;
    background:linear-gradient(90deg,var(--brand1),var(--brand2));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}
.hero-stat__t{
    display:block;
    color:#d3dcf0;
    font-size:13px;
    font-weight:700;
}

.bonos-intro{
    padding:12px 0 8px;
}
.bonos-breadcrumbs{
    display:flex;
    gap:8px;
    align-items:center;
    color:#bfc8de;
    font-size:14px;
    margin-bottom:16px;
}
.bonos-breadcrumbs a{
    color:#ffd2fb;
    text-decoration:none;
}
.bonos-intro__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}
@media (max-width:980px){
    .bonos-intro__grid{ grid-template-columns:1fr; }
}
.bonos-intro__card{
    border-radius:20px;
    padding:20px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,0)),
            #0c1023;
    border:1px solid var(--line);
    box-shadow:0 14px 34px rgba(0,0,0,.24);
}
.bonos-intro__card h2{
    margin:0 0 10px;
    font-size:22px;
    line-height:1.15;
}
.bonos-intro__card p{
    margin:0;
    color:#cfd6ea;
    line-height:1.65;
}

.bonos-showcase{
    padding-top:38px !important;
}

.bonos-criteria{
    padding:36px 0 8px;
}
.section-head-alt{
    max-width:900px;
    margin:0 auto 20px;
    text-align:center;
}
.section-head-alt h2{
    margin:0 0 8px;
    font-size:clamp(24px,3.4vw,36px);
    line-height:1.08;
}
.section-head-alt p{
    margin:0;
    color:#cdd6ea;
    line-height:1.65;
}
.bonos-criteria__grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}
@media (max-width:1100px){
    .bonos-criteria__grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:680px){
    .bonos-criteria__grid{ grid-template-columns:1fr; }
}
.criterion-card{
    position:relative;
    border-radius:22px;
    padding:22px 18px 18px;
    background:
            radial-gradient(120% 140% at 0% 0%, rgba(255,107,203,.08), transparent 55%),
            linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
            #0b1120;
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 14px 30px rgba(0,0,0,.25);
}
.criterion-card__num{
    display:inline-block;
    margin-bottom:14px;
    font-size:12px;
    font-weight:900;
    letter-spacing:.14em;
    color:#ffbce8;
}
.criterion-card h3{
    margin:0 0 8px;
    font-size:20px;
}
.criterion-card p{
    margin:0;
    color:#cad3e7;
    line-height:1.65;
}

.bonos-editorial{
    padding:44px 0 8px;
}
.bonos-editorial__layout{
    display:grid;
    grid-template-columns:1.12fr .52fr;
    gap:24px;
    align-items:start;
}
@media (max-width:1050px){
    .bonos-editorial__layout{ grid-template-columns:1fr; }
}
.editorial-block{
    border-radius:24px;
    padding:24px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
            #0a1020;
    border:1px solid var(--line);
    box-shadow:0 16px 38px rgba(0,0,0,.26);
    margin-bottom:18px;
}
.editorial-block:last-child{ margin-bottom:0; }
.editorial-block h2{
    margin:0 0 12px;
    font-size:clamp(24px,3vw,34px);
    line-height:1.08;
}
.editorial-block p{
    margin:0 0 14px;
    color:#d3dbec;
    line-height:1.75;
    font-size:16px;
}
.editorial-block p:last-child{ margin-bottom:0; }

.side-card{
    border-radius:22px;
    padding:20px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
            #0d1223;
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 14px 34px rgba(0,0,0,.24);
    margin-bottom:16px;
}
.side-card:last-child{ margin-bottom:0; }
.side-card h3{
    margin:0 0 12px;
    font-size:20px;
}
.side-card p{
    margin:0;
    color:#d0d8ea;
    line-height:1.65;
}
.side-card--accent{
    background:
            radial-gradient(90% 100% at 0% 0%, rgba(168,85,255,.12), transparent 60%),
            linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
            #0d1223;
}

.side-points li{
    position:relative;
    padding-left:18px;
    color:#d0d8ea;
    line-height:1.5;
}
.side-points li::before{
    content:"";
    position:absolute;
    left:0;
    top:8px;
    width:8px;
    height:4px;
    border-left:2px solid var(--brand2);
    border-bottom:2px solid var(--brand2);
    transform:rotate(-45deg);
}

.bonos-faq{
    padding:44px 0 10px;
}
.bonos-faq__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}
@media (max-width:980px){
    .bonos-faq__grid{ grid-template-columns:1fr; }
}
.faq-box{
    border-radius:22px;
    padding:20px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
            #0b1020;
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 14px 32px rgba(0,0,0,.24);
}
.faq-box h3{
    margin:0 0 10px;
    font-size:20px;
    line-height:1.2;
}
.faq-box p{
    margin:0;
    color:#d0d8ea;
    line-height:1.65;
}

@media (max-width:720px){
    .bonos-hero{
        padding:34px 0 16px;
    }
    .bonos-hero__lead,
    .editorial-block p,
    .criterion-card p,
    .faq-box p,
    .bonos-intro__card p{
        font-size:15px;
        line-height:1.65;
    }
    .editorial-block,
    .criterion-card,
    .faq-box,
    .bonos-intro__card,
    .side-card{
        border-radius:18px;
        padding:18px;
    }
}

/* ===== BONOS PAGE ===== */

.bonos-page{
    padding-bottom:8px;
}

.bonos-hero{
    position:relative;
    padding:clamp(42px,7vw,92px) 0 18px;
    overflow:hidden;
}
.bonos-hero::before{
    content:"";
    position:absolute;
    inset:-10% 0 auto 0;
    height:420px;
    pointer-events:none;
    background:
            radial-gradient(520px 240px at 12% 10%, rgba(255,107,203,.18), transparent 70%),
            radial-gradient(620px 280px at 88% 0%, rgba(168,85,255,.16), transparent 70%);
}
.bonos-hero__grid{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:24px;
    align-items:stretch;
}
@media (max-width:980px){
    .bonos-hero__grid{ grid-template-columns:1fr; }
}

.bonos-kicker{
    display:inline-flex;
    align-items:center;
    padding:8px 12px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.14);
    background:rgba(255,255,255,.05);
    color:#f2deff;
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:14px;
}

.bonos-hero h1{
    margin:0 0 14px;
    font-size:clamp(34px,5vw,62px);
    line-height:1.02;
    font-weight:800;
    max-width:820px;
}
.bonos-hero__lead{
    margin:0;
    max-width:760px;
    color:#d7d9ef;
    font-size:clamp(15px,1.8vw,18px);
    line-height:1.65;
}
.bonos-hero__actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:24px;
}

.hero-panel-card{
    border-radius:24px;
    padding:22px;
    border:1px solid rgba(255,255,255,.12);
    background:
            linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01)),
            rgba(10,15,36,.92);
    box-shadow:0 18px 44px rgba(0,0,0,.28);
}
.hero-panel-card__eyebrow{
    color:#ffb9ef;
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:10px;
}
.hero-panel-card h2{
    margin:0 0 10px;
    font-size:clamp(22px,2.8vw,30px);
    line-height:1.1;
}
.hero-panel-card p{
    margin:0;
    color:#cad3e7;
    line-height:1.6;
}

.hero-panel-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-top:14px;
}
@media (max-width:620px){
    .hero-panel-stats{ grid-template-columns:1fr; }
}
.hero-stat{
    border-radius:18px;
    padding:16px 14px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.10);
    text-align:center;
}
.hero-stat__n{
    display:block;
    font-size:26px;
    font-weight:900;
    line-height:1;
    margin-bottom:6px;
    background:linear-gradient(90deg,var(--brand1),var(--brand2));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}
.hero-stat__t{
    display:block;
    color:#d3dcf0;
    font-size:13px;
    font-weight:700;
}

.bonos-crumbs{
    padding: 14px 0 0;
    position: relative;
    z-index: 2;
}

.bonos-breadcrumbs{
    display:flex;
    gap:8px;
    align-items:center;
    color:#bfc8de;
    font-size:14px;
    margin:0;
}

.bonos-breadcrumbs a{
    color:#ffd2fb;
    text-decoration:none;
}

.bonos-hero{
    position:relative;
    padding:clamp(26px,5vw,72px) 0 18px;
    overflow:hidden;
}

.bonos-showcase{
    padding-top:18px !important;
}

.bonos-criteria{
    padding:34px 0 8px;
}
.section-head-alt{
    max-width:820px;
    margin:0 auto 20px;
    text-align:center;
}
.section-head-alt h2{
    margin:0 0 8px;
    font-size:clamp(24px,3.4vw,36px);
    line-height:1.08;
}
.section-head-alt p{
    margin:0;
    color:#cdd6ea;
    line-height:1.65;
}
.bonos-criteria__grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}
@media (max-width:1100px){
    .bonos-criteria__grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:680px){
    .bonos-criteria__grid{ grid-template-columns:1fr; }
}
.criterion-card{
    position:relative;
    border-radius:22px;
    padding:22px 18px 18px;
    background:
            radial-gradient(120% 140% at 0% 0%, rgba(255,107,203,.08), transparent 55%),
            linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
            #0b1120;
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 14px 30px rgba(0,0,0,.25);
}
.criterion-card__num{
    display:inline-block;
    margin-bottom:14px;
    font-size:12px;
    font-weight:900;
    letter-spacing:.14em;
    color:#ffbce8;
}
.criterion-card h3{
    margin:0 0 8px;
    font-size:20px;
}
.criterion-card p{
    margin:0;
    color:#cad3e7;
    line-height:1.65;
}

.bonos-editorial{
    padding:36px 0 8px;
}
.bonos-editorial__layout{
    display:grid;
    grid-template-columns:1.12fr .52fr;
    gap:24px;
    align-items:start;
}
@media (max-width:1050px){
    .bonos-editorial__layout{ grid-template-columns:1fr; }
}
.editorial-block{
    border-radius:24px;
    padding:24px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
            #0a1020;
    border:1px solid var(--line);
    box-shadow:0 16px 38px rgba(0,0,0,.26);
    margin-bottom:18px;
}
.editorial-block:last-child{ margin-bottom:0; }
.editorial-block h2{
    margin:0 0 12px;
    font-size:clamp(24px,3vw,34px);
    line-height:1.08;
}
.editorial-block p{
    margin:0 0 14px;
    color:#d3dbec;
    line-height:1.75;
    font-size:16px;
}
.editorial-block p:last-child{ margin-bottom:0; }

.side-card{
    border-radius:22px;
    padding:20px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
            #0d1223;
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 14px 34px rgba(0,0,0,.24);
}
.side-card h3{
    margin:0 0 12px;
    font-size:20px;
}
.side-card p{
    margin:0;
    color:#d0d8ea;
    line-height:1.65;
}
.side-card--accent{
    background:
            radial-gradient(90% 100% at 0% 0%, rgba(168,85,255,.12), transparent 60%),
            linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
            #0d1223;
}

.bonos-faq{
    padding:44px 0 10px;
}
.bonos-faq__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}
@media (max-width:980px){
    .bonos-faq__grid{ grid-template-columns:1fr; }
}
.faq-box{
    border-radius:22px;
    padding:20px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
            #0b1020;
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 14px 32px rgba(0,0,0,.24);
}
.faq-box h3{
    margin:0 0 10px;
    font-size:20px;
    line-height:1.2;
}
.faq-box p{
    margin:0;
    color:#d0d8ea;
    line-height:1.65;
}

@media (max-width:720px){
    .bonos-hero{
        padding:34px 0 16px;
    }
    .bonos-hero__lead,
    .editorial-block p,
    .criterion-card p,
    .faq-box p{
        font-size:15px;
        line-height:1.65;
    }
    .editorial-block,
    .criterion-card,
    .faq-box,
    .side-card{
        border-radius:18px;
        padding:18px;
    }
}


/* ===== CASINOS ALT PAGE ===== */

.casinos-page{
    padding-bottom:8px;
}

.casinos-crumbs{
    padding:14px 0 0;
    position:relative;
    z-index:2;
}
.casinos-breadcrumbs{
    display:flex;
    gap:8px;
    align-items:center;
    color:#bfc8de;
    font-size:14px;
    margin:0;
}
.casinos-breadcrumbs a{
    color:#ffd2fb;
    text-decoration:none;
}

.casinos-hero-alt{
    position:relative;
    padding:28px 0 18px;
    overflow:hidden;
}
.casinos-hero-alt::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:420px;
    pointer-events:none;
    background:
            radial-gradient(540px 260px at 10% 12%, rgba(255,107,203,.16), transparent 70%),
            radial-gradient(640px 320px at 88% 0%, rgba(168,85,255,.18), transparent 72%);
}
.casinos-hero-alt__grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:26px;
    align-items:center;
}
@media (max-width:980px){
    .casinos-hero-alt__grid{ grid-template-columns:1fr; }
}

.casinos-hero-alt__kicker{
    display:inline-flex;
    padding:8px 12px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.05);
    color:#f2deff;
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:14px;
}
.casinos-hero-alt h1{
    margin:0 0 14px;
    font-size:clamp(34px,5vw,60px);
    line-height:1.02;
    font-weight:800;
    max-width:760px;
}
.casinos-hero-alt__lead{
    margin:0 0 14px;
    color:#d7d9ef;
    font-size:clamp(15px,1.8vw,18px);
    line-height:1.7;
    max-width:760px;
}
.casinos-hero-alt__sub{
    margin:0;
    color:#c9d2e5;
    line-height:1.7;
    max-width:720px;
}
.casinos-hero-alt__cta{
    margin-top:24px;
}

.casino-stage{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}
@media (max-width:540px){
    .casino-stage{ grid-template-columns:1fr; }
}
.casino-stage__card{
    border-radius:24px;
    padding:20px;
    min-height:120px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    background:
            linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
            #0c1122;
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 16px 34px rgba(0,0,0,.24);
}
.casino-stage__card--lg{
    grid-column:span 2;
    min-height:160px;
}
@media (max-width:540px){
    .casino-stage__card--lg{ grid-column:span 1; }
}
.casino-stage__card span{
    color:#bfc8de;
    font-size:13px;
    font-weight:700;
}
.casino-stage__card strong{
    font-size:clamp(22px,2.8vw,30px);
    line-height:1.08;
    font-weight:800;
    background:linear-gradient(90deg,var(--brand1),var(--brand2));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.casino-favs{
    padding:34px 0 8px;
}
.casino-favs__head{
    max-width:840px;
    margin:0 auto 20px;
    text-align:center;
}
.casino-favs__head h2{
    margin:0 0 8px;
    font-size:clamp(24px,3.4vw,36px);
    line-height:1.08;
}
.casino-favs__head p{
    margin:0;
    color:#cdd6ea;
    line-height:1.65;
}
.casino-favs__grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}
@media (max-width:1100px){
    .casino-favs__grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:680px){
    .casino-favs__grid{ grid-template-columns:1fr; }
}
.casino-fav-card{
    border-radius:22px;
    padding:22px 18px;
    background:
            radial-gradient(120% 140% at 0% 0%, rgba(255,107,203,.08), transparent 55%),
            linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
            #0b1120;
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 14px 30px rgba(0,0,0,.25);
}
.casino-fav-card h3{
    margin:0 0 10px;
    font-size:20px;
}
.casino-fav-card p{
    margin:0;
    color:#cad3e7;
    line-height:1.65;
}

.casinos-showcase{
    padding-top:20px !important;
}

.casinos-story{
    padding:38px 0 8px;
}
.casinos-story__grid{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
}
.casino-story-block{
    border-radius:26px;
    padding:26px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
            #09101f;
    border:1px solid var(--line);
    box-shadow:0 16px 38px rgba(0,0,0,.26);
}
.casino-story-block__label{
    display:inline-flex;
    margin-bottom:12px;
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#ffbce8;
}
.casino-story-block h2{
    margin:0 0 12px;
    font-size:clamp(24px,3vw,34px);
    line-height:1.08;
}
.casino-story-block p{
    margin:0 0 14px;
    color:#d3dbec;
    line-height:1.75;
    font-size:16px;
}
.casino-story-block p:last-child{
    margin-bottom:0;
}

.casinos-faq-alt{
    padding:44px 0 10px;
}
.casinos-faq-alt__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}
@media (max-width:980px){
    .casinos-faq-alt__grid{ grid-template-columns:1fr; }
}
.casino-faq-alt-card{
    border-radius:22px;
    padding:20px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
            #0b1020;
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 14px 32px rgba(0,0,0,.24);
}
.casino-faq-alt-card h3{
    margin:0 0 10px;
    font-size:20px;
    line-height:1.2;
}
.casino-faq-alt-card p{
    margin:0;
    color:#d0d8ea;
    line-height:1.65;
}

@media (max-width:720px){
    .casino-story-block,
    .casino-faq-alt-card,
    .casino-fav-card,
    .casino-stage__card{
        border-radius:18px;
        padding:18px;
    }
    .casino-story-block p,
    .casino-faq-alt-card p,
    .casino-fav-card p,
    .casinos-hero-alt__lead,
    .casinos-hero-alt__sub{
        font-size:15px;
        line-height:1.65;
    }
}
/* ===== CASINOS PAGE / DIFFERENT LAYOUT ===== */

.casinos-page--editorial{
    padding-bottom: 8px;
}

.casinos-crumbs--top{
    padding: 14px 0 0;
}

.casinos-intro-alt{
    padding: 18px 0 10px;
}
.casinos-intro-alt__box{
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding: 18px 0 6px;
}
.casinos-intro-alt__kicker{
    display:inline-flex;
    padding:8px 12px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.04);
    color:#f2deff;
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:14px;
}
.casinos-intro-alt h1{
    margin:0 0 14px;
    font-size:clamp(34px,5vw,58px);
    line-height:1.03;
    font-weight:800;
}
.casinos-intro-alt p{
    margin:0 auto;
    max-width:860px;
    color:#d2dbec;
    font-size:17px;
    line-height:1.75;
}

.casinos-showcase--top{
    padding-top: 8px !important;
}

.casinos-columns{
    padding: 38px 0 8px;
}
.casinos-columns__grid{
    display:grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 20px;
}
@media (max-width: 900px){
    .casinos-columns__grid{ grid-template-columns: 1fr; }
}
.casinos-column-card{
    border-radius: 26px;
    padding: 26px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
            #09101f;
    border: 1px solid var(--line);
    box-shadow: 0 16px 38px rgba(0,0,0,.26);
}
.casinos-column-card h2{
    margin:0 0 12px;
    font-size:clamp(24px,3vw,34px);
    line-height:1.08;
}
.casinos-column-card p{
    margin:0 0 14px;
    color:#d3dbec;
    line-height:1.75;
    font-size:16px;
}
.casinos-column-card p:last-child{
    margin-bottom:0;
}

.casinos-strip{
    padding: 16px 0 8px;
}
.casinos-strip__box{
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 28px;
    padding: 28px;
    text-align: center;
    background:
            radial-gradient(80% 120% at 10% 0%, rgba(255,107,203,.10), transparent 60%),
            linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
            #0c1122;
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 16px 36px rgba(0,0,0,.25);
}
.casinos-strip__box h2{
    margin:0 0 10px;
    font-size:clamp(24px,3.2vw,36px);
    line-height:1.08;
}
.casinos-strip__box p{
    margin:0 auto;
    max-width:860px;
    color:#d2dbec;
    line-height:1.75;
    font-size:16px;
}

@media (max-width: 720px){
    .casinos-intro-alt p,
    .casinos-column-card p,
    .casinos-strip__box p{
        font-size:15px;
        line-height:1.65;
    }

    .casinos-column-card,
    .casinos-strip__box{
        border-radius:20px;
        padding:20px;
    }
}

/* ===== SLOTS PAGE NEW FINAL ===== */

.slots-page.slots-page--media{
    padding-bottom:8px;
}

.slots-page--media .slots-crumbs{
    padding:14px 0 0;
    position:relative;
    z-index:2;
}

.slots-page--media .slots-breadcrumbs{
    display:flex;
    gap:8px;
    align-items:center;
    color:#bfc8de;
    font-size:14px;
    margin:0;
}

.slots-page--media .slots-breadcrumbs a{
    color:#ffd2fb;
    text-decoration:none;
}

.slots-page--media .slots-hero{
    padding:40px 0 10px;
    text-align:center;
}

.slots-page--media .slots-hero__inner{
    max-width:900px;
    margin:0 auto;
}

.slots-page--media .slots-hero h1{
    font-size:clamp(36px,5vw,60px);
    line-height:1.04;
    margin:0 0 14px;
    font-weight:800;
}

.slots-page--media .slots-hero p{
    max-width:820px;
    margin:0 auto;
    color:#cfd6ea;
    line-height:1.75;
    font-size:17px;
}

.slots-page--media .slots-featured{
    padding:20px 0 8px;
}

.slots-page--media .slots-featured h2{
    text-align:center;
    font-size:clamp(24px,3.2vw,36px);
    margin:0 0 20px;
}

.slots-page--media .slots-featured__list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.slots-page--media .slot-row{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:0;
    align-items:stretch;
    background:
            linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
            #0b1120;
    border:1px solid rgba(255,255,255,.10);
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 16px 36px rgba(0,0,0,.25);
}

.slots-page--media .slot-row img{
    width:100%;
    height:100%;
    min-height:220px;
    object-fit:cover;
    display:block;
}

.slots-page--media .slot-row__content{
    padding:24px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.slots-page--media .slot-row__content h3{
    margin:0 0 10px;
    font-size:clamp(24px,2.8vw,32px);
    line-height:1.08;
}

.slots-page--media .slot-row__content p{
    margin:0;
    color:#cbd3e7;
    line-height:1.75;
    font-size:16px;
}

.slots-page--media .slots-wins{
    padding:38px 0 8px;
}

.slots-page--media .slots-wins h2{
    text-align:center;
    font-size:clamp(24px,3.2vw,36px);
    margin:0 0 22px;
}

.slots-page--media .slots-wins__timeline{
    max-width:900px;
    margin:0 auto;
    position:relative;
    padding-left:28px;
}

.slots-page--media .slots-wins__timeline::before{
    content:"";
    position:absolute;
    left:8px;
    top:6px;
    bottom:6px;
    width:2px;
    background:linear-gradient(to bottom, rgba(255,107,203,.8), rgba(168,85,255,.5));
}

.slots-page--media .win-item{
    position:relative;
    margin-bottom:24px;
}

.slots-page--media .win-item:last-child{
    margin-bottom:0;
}

.slots-page--media .win-item__dot{
    position:absolute;
    left:-24px;
    top:6px;
    width:12px;
    height:12px;
    background:linear-gradient(90deg,var(--brand1),var(--brand2));
    border-radius:50%;
    box-shadow:0 0 0 4px rgba(255,107,203,.12);
}

.slots-page--media .win-item__content{
    background:
            linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
            #0b1120;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:18px 20px;
}

.slots-page--media .win-item__content h3{
    margin:0 0 8px;
    font-size:22px;
}

.slots-page--media .win-item__content p{
    margin:0;
    color:#cfd6ea;
    line-height:1.7;
}

.slots-page--media .slots-text{
    padding:38px 0 8px;
}

.slots-page--media .slots-text__box{
    max-width:920px;
    margin:0 auto;
    text-align:left;
    background:
            radial-gradient(90% 120% at 0% 0%, rgba(255,107,203,.08), transparent 60%),
            linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
            #0b1120;
    border:1px solid rgba(255,255,255,.10);
    border-radius:26px;
    padding:28px;
    box-shadow:0 16px 36px rgba(0,0,0,.24);
}

.slots-page--media .slots-text__box h2{
    margin:0 0 12px;
    font-size:clamp(24px,3vw,34px);
    line-height:1.08;
}

.slots-page--media .slots-text__box p{
    margin:0 0 14px;
    color:#cfd6ea;
    line-height:1.75;
    font-size:16px;
}

.slots-page--media .slots-text__box p:last-child{
    margin-bottom:0;
}

.slots-page--media .slots-faq{
    padding:40px 0 10px;
}

.slots-page--media .slots-faq h2{
    text-align:center;
    font-size:clamp(24px,3.2vw,36px);
    margin:0 0 20px;
}

.slots-page--media .slots-faq__grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:18px;
}

.slots-page--media .faq-card{
    padding:20px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
            #0b1120;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 14px 30px rgba(0,0,0,.22);
}

.slots-page--media .faq-card h3{
    margin:0 0 10px;
    font-size:20px;
    line-height:1.2;
}

.slots-page--media .faq-card p{
    margin:0;
    color:#cfd6ea;
    line-height:1.65;
}

@media (max-width:900px){
    .slots-page--media .slot-row{
        grid-template-columns:1fr;
    }

    .slots-page--media .slot-row img{
        min-height:220px;
    }

    .slots-page--media .slots-faq__grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:720px){
    .slots-page--media .slots-hero p,
    .slots-page--media .slot-row__content p,
    .slots-page--media .win-item__content p,
    .slots-page--media .slots-text__box p,
    .slots-page--media .faq-card p{
        font-size:15px;
        line-height:1.65;
    }

    .slots-page--media .slot-row,
    .slots-page--media .slots-text__box,
    .slots-page--media .faq-card,
    .slots-page--media .win-item__content{
        border-radius:18px;
    }

    .slots-page--media .slot-row__content,
    .slots-page--media .slots-text__box,
    .slots-page--media .faq-card,
    .slots-page--media .win-item__content{
        padding:18px;
    }
}

/* ===== ABOUT KOMANCHE PAGE ===== */

.aboutk-page{
    padding-bottom:8px;
}

.aboutk-crumbs{
    padding:14px 0 0;
    position:relative;
    z-index:2;
}
.aboutk-breadcrumbs{
    display:flex;
    gap:8px;
    align-items:center;
    color:#bfc8de;
    font-size:14px;
    margin:0;
}
.aboutk-breadcrumbs a{
    color:#ffd2fb;
    text-decoration:none;
}

.aboutk-intro{
    padding:20px 0 10px;
}
.aboutk-intro__box{
    max-width:980px;
    margin:0 auto;
    text-align:center;
}
.aboutk-intro__kicker{
    display:inline-flex;
    padding:8px 12px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.04);
    color:#f2deff;
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:14px;
}
.aboutk-intro h1{
    margin:0 0 14px;
    font-size:clamp(34px,5vw,58px);
    line-height:1.03;
    font-weight:800;
}
.aboutk-intro p{
    margin:0 auto;
    max-width:860px;
    color:#d2dbec;
    font-size:17px;
    line-height:1.75;
}

.aboutk-profile{
    padding:18px 0 8px;
}
.aboutk-profile__grid{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:22px;
    align-items:stretch;
}
@media (max-width:980px){
    .aboutk-profile__grid{ grid-template-columns:1fr; }
}
.aboutk-profile__media{
    margin:0;
    border-radius:28px;
    overflow:hidden;
    border:1px solid var(--line);
    box-shadow:0 18px 40px rgba(0,0,0,.26);
}
.aboutk-profile__media img{
    width:100%;
    height:100%;
    min-height:360px;
    object-fit:cover;
    display:block;
}
.aboutk-profile__content{
    border-radius:28px;
    padding:28px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
            #09101f;
    border:1px solid var(--line);
    box-shadow:0 16px 36px rgba(0,0,0,.24);
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.aboutk-profile__content h2{
    margin:0 0 12px;
    font-size:clamp(24px,3vw,34px);
    line-height:1.08;
}
.aboutk-profile__content p{
    margin:0 0 14px;
    color:#d3dbec;
    line-height:1.75;
    font-size:16px;
}
.aboutk-profile__content p:last-child{
    margin-bottom:0;
}

.aboutk-panels{
    padding:36px 0 8px;
}
.aboutk-panels__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}
@media (max-width:900px){
    .aboutk-panels__grid{ grid-template-columns:1fr; }
}
.aboutk-panel{
    border-radius:22px;
    padding:22px 18px;
    background:
            radial-gradient(120% 140% at 0% 0%, rgba(255,107,203,.08), transparent 55%),
            linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
            #0b1120;
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 14px 30px rgba(0,0,0,.25);
}
.aboutk-panel__label{
    display:inline-flex;
    margin-bottom:10px;
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#ffbce8;
}
.aboutk-panel h3{
    margin:0 0 10px;
    font-size:22px;
    line-height:1.15;
}
.aboutk-panel p{
    margin:0;
    color:#cad3e7;
    line-height:1.65;
}

.aboutk-story{
    padding:38px 0 8px;
}
.aboutk-story__stack{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
}
.aboutk-story-block{
    border-radius:26px;
    padding:26px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
            #09101f;
    border:1px solid var(--line);
    box-shadow:0 16px 38px rgba(0,0,0,.26);
}
.aboutk-story-block__tag{
    display:inline-flex;
    margin-bottom:12px;
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#ffbce8;
}
.aboutk-story-block h2{
    margin:0 0 12px;
    font-size:clamp(24px,3vw,34px);
    line-height:1.08;
}
.aboutk-story-block p{
    margin:0 0 14px;
    color:#d3dbec;
    line-height:1.75;
    font-size:16px;
}
.aboutk-story-block p:last-child{
    margin-bottom:0;
}

.aboutk-faq{
    padding:44px 0 10px;
}
.aboutk-faq__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}
@media (max-width:980px){
    .aboutk-faq__grid{ grid-template-columns:1fr; }
}
.aboutk-faq-card{
    border-radius:22px;
    padding:20px;
    background:
            linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
            #0b1020;
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 14px 32px rgba(0,0,0,.24);
}
.aboutk-faq-card h3{
    margin:0 0 10px;
    font-size:20px;
    line-height:1.2;
}
.aboutk-faq-card p{
    margin:0;
    color:#d0d8ea;
    line-height:1.65;
}

@media (max-width:720px){
    .aboutk-intro p,
    .aboutk-profile__content p,
    .aboutk-panel p,
    .aboutk-story-block p,
    .aboutk-faq-card p{
        font-size:15px;
        line-height:1.65;
    }

    .aboutk-profile__content,
    .aboutk-panel,
    .aboutk-story-block,
    .aboutk-faq-card{
        border-radius:20px;
        padding:20px;
    }

    .aboutk-profile__media{
        border-radius:20px;
    }
}

html, body {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

.wrap {
    padding: 0 16px;
}

.sf-social--pages{
    margin-bottom: 14px;
}