/* ============================================================
   NETFLIX CASINO BELGIË — v3 "cinematic browse"
   Display: Oswald · Body: Inter
   Signature: billboard hero + Top-6 ranked rail (Netflix style)
   Mobile-first polish, safe-area aware
   ============================================================ */

:root {
    --bg:        #0b0b0f;
    --bg-soft:   #101017;
    --surface:   #15151d;
    --surface-2: #1d1d27;
    --line:         rgba(255, 255, 255, 0.08);
    --line-strong:  rgba(255, 255, 255, 0.16);

    --red:        #e50914;
    --red-bright: #ff2a36;
    --red-deep:   #b00610;

    --gold:     #e7b964;
    --gold-dim: #b88f3e;

    --text:  #f4f4f6;
    --dim:   #a6a6b2;
    --mute:  #6f6f7c;

    --radius:    14px;
    --radius-sm: 9px;
    --maxw:      1320px;
    --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);

    --shadow-card: 0 12px 30px rgba(0, 0, 0, 0.55);
    --glow-red: 0 0 0 1px rgba(229, 9, 20, 0.45), 0 14px 44px rgba(229, 9, 20, 0.38);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;           /* якоря не прячутся под шапкой */
    -webkit-text-size-adjust: 100%;
}

/* Замок горизонтального панорамирования: обязательно на html И body
   (body-only не останавливает свайп на iOS; clip не работает на iOS < 16) */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-wrap: break-word;   /* длинные слова/email не распирают страницу */
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
    outline: 2px solid var(--red-bright);
    outline-offset: 3px;
    border-radius: 4px;
}

h1, h2, h3, .display {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.05;
    text-transform: uppercase;
}

.eyebrow {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red-bright);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
}
.eyebrow::before {
    content: '';
    width: 22px; height: 2px;
    background: linear-gradient(90deg, var(--red), transparent);
    border-radius: 2px;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: clamp(1rem, 4vw, 2.5rem); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding: 0.95rem 1.9rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    overflow: hidden;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
                background 0.25s var(--ease), color 0.25s var(--ease);
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    color: #fff;
    box-shadow: 0 10px 26px rgba(229, 9, 20, 0.4);
}
/* блик, пробегающий по кнопке */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 50%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s var(--ease);
}
.btn-primary:hover::after { left: 130%; }
.btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(229, 9, 20, 0.6);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border-color: var(--line-strong);
    backdrop-filter: blur(6px);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.05rem; }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    padding-top: env(safe-area-inset-top);
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(8, 8, 12, 0.9);
    border-bottom-color: var(--line);
    backdrop-filter: blur(14px);
}

.header-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
    height: 72px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 32px; width: auto; transition: transform 0.25s var(--ease); }
.brand:hover img { transform: scale(1.04); }

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.9rem;
    margin-left: 1rem;
    flex: 1;
}
.main-nav a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--dim);
    position: relative;
    padding: 0.4rem 0;
}
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--red);
    transition: width 0.28s var(--ease);
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: #fff; }
.nav-mobile-cta { display: none; }

.header-actions { display: flex; align-items: center; gap: 0.85rem; flex-shrink: 0; }

.flag-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--dim);
}
.flag-chip img { width: 20px; height: 14px; border-radius: 2px; }

.link-login { font-size: 0.9rem; font-weight: 600; color: var(--text); padding: 0.55rem 0.4rem; }
.link-login:hover { color: var(--red-bright); }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    padding: 10px 6px;               /* крупная зона нажатия */
    -webkit-tap-highlight-color: transparent;
}
.burger span {
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — cinematic billboard (+ film grain)
   ============================================================ */

.hero {
    position: relative;
    min-height: clamp(540px, 86vh, 860px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background:
        radial-gradient(1100px 600px at 75% 25%, rgba(229, 9, 20, 0.28), transparent 60%),
        linear-gradient(180deg, #16040a 0%, var(--bg) 100%);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.55;
}
.hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, var(--bg) 8%, rgba(11, 11, 15, 0.55) 45%, rgba(11, 11, 15, 0.1) 75%),
        linear-gradient(0deg, var(--bg) 4%, rgba(11, 11, 15, 0) 45%);
}
/* лёгкое «киношное зерно» поверх героя */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: var(--maxw);
    margin: 0 auto;
    width: 100%;
    padding: 0 clamp(1rem, 4vw, 2.5rem) clamp(3rem, 7vw, 5.5rem);
}
.hero-inner { max-width: 660px; }

.hero h1 {
    font-size: clamp(2.4rem, 7vw, 5.2rem);
    font-weight: 700;
    margin-bottom: 1.1rem;
    text-shadow: 0 6px 40px rgba(0, 0, 0, 0.6);
}
.hero h1 .accent {
    color: var(--red-bright);
    text-shadow: 0 0 34px rgba(229, 9, 20, 0.55);
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text);
    opacity: 0.92;
    max-width: 540px;
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

.bonus-banner {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.4rem 0.9rem;
    padding: 1rem 1.4rem;
    margin-bottom: 1.9rem;
    background: rgba(0, 0, 0, 0.42);
    border: 1px solid var(--line-strong);
    border-left: 4px solid var(--red);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(8px);
}
.bonus-banner .b-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dim);
    width: 100%;
}
.bonus-banner .b-amount {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
}
.bonus-banner .b-extra {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
}

.hero-cta { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.hero-figure {
    position: absolute;
    right: clamp(-40px, -2vw, 0px);
    bottom: 0;
    z-index: 1;
    height: 92%;
    max-width: 46%;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(-20px 10px 40px rgba(0, 0, 0, 0.6));
    pointer-events: none;
}

/* ============================================================
   BONUS BAND — регистрационная приманка (+shimmer)
   ============================================================ */

.bonus-band {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(700px 300px at 88% 20%, rgba(231, 185, 100, 0.18), transparent 60%),
        linear-gradient(120deg, var(--red-deep) 0%, #820610 42%, #180509 100%);
}
.bonus-band::before {
    content: '';
    position: absolute;
    top: -60%; left: -30%;
    width: 45%; height: 220%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.09), transparent);
    transform: skewX(-18deg);
    animation: bandShine 6s var(--ease) infinite;
    pointer-events: none;
}
@keyframes bandShine {
    0%, 55% { left: -45%; }
    100% { left: 130%; }
}
.bonus-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 260px at 12% 120%, rgba(229, 9, 20, 0.45), transparent 55%);
    pointer-events: none;
}
.bonus-band .wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem 2.5rem;
    padding-block: clamp(1.6rem, 4vw, 2.6rem);
    flex-wrap: wrap;
}
.bb-main { flex: 1 1 320px; }
.bb-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}
.bb-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.05;
    font-size: clamp(1.7rem, 4.2vw, 2.9rem);
    color: #fff;
    margin-bottom: 0.5rem;
}
.bb-title { text-wrap: balance; }
.bb-title .hl { color: var(--gold); }
.bb-sub { color: rgba(255, 255, 255, 0.85); font-size: 0.98rem; max-width: 560px; }
.bonus-band .bb-cta { flex-shrink: 0; }
.bonus-band .bb-cta .btn { background: #fff; color: var(--red-deep); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35); }
.bonus-band .bb-cta .btn:hover { background: var(--gold); color: #1a0509; }
.bb-note { display: block; margin-top: 0.6rem; font-size: 0.74rem; color: rgba(255, 255, 255, 0.6); }

/* ============================================================
   JACKPOT STRIP
   ============================================================ */

.jackpot-strip {
    position: relative;
    z-index: 5;
    background: linear-gradient(180deg, rgba(231, 185, 100, 0.07), rgba(11, 11, 15, 0));
    border-top: 1px solid rgba(231, 185, 100, 0.2);
    border-bottom: 1px solid var(--line);
}
.jackpot-strip .wrap {
    display: flex;
    align-items: center;
    gap: 1.2rem 1.5rem;
    padding-block: 1.05rem;
    flex-wrap: wrap;
}
.js-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
}
.jackpot-list { display: flex; gap: 1.4rem; flex: 1; flex-wrap: wrap; }
.jp { display: flex; align-items: center; gap: 0.6rem; padding: 0.3rem 0.2rem; }
.jp-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px currentColor;
}
.jp.mega  .jp-dot { color: var(--gold); background: var(--gold); }
.jp.major .jp-dot { color: var(--red); background: var(--red); }
.jp.minor .jp-dot { color: #4f7bd6; background: #4f7bd6; }
.jp-name {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mute);
}
.jp-val {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.12rem;
    font-weight: 600;
    color: #fff;
    font-variant-numeric: tabular-nums;
}
.jp-val.tick { animation: jpTick 0.9s var(--ease); }
@keyframes jpTick {
    0%, 100% { transform: none; text-shadow: none; }
    30% { transform: translateY(-2px); text-shadow: 0 0 16px rgba(231, 185, 100, 0.6); }
}

/* ============================================================
   SECTION SHELL / PROSE
   ============================================================ */

.section { padding-block: clamp(3.2rem, 7vw, 6rem); }
.section.alt {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-head { margin-bottom: 2.2rem; }
.section-head.center { text-align: center; max-width: 760px; margin-inline: auto; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center .eyebrow::after {
    content: ''; order: -1;
    width: 22px; height: 2px;
    background: linear-gradient(270deg, var(--red), transparent);
    border-radius: 2px;
}
.section-head h2 {
    font-size: clamp(1.55rem, 3.4vw, 2.4rem);
    margin-bottom: 0.6rem;
}
.section-head p { color: var(--dim); font-size: 1.02rem; max-width: 640px; }
.section-head.center p { margin-inline: auto; }

.prose { max-width: 820px; }
.prose.center { margin-inline: auto; }
.prose p { color: var(--dim); line-height: 1.85; margin-bottom: 1.15rem; font-size: 1.02rem; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text); font-weight: 600; }

/* ============================================================
   RAILS
   ============================================================ */

.rail { position: relative; }
.rail-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.6rem 1rem;
    margin-bottom: 1.1rem;
    flex-wrap: wrap;
}
.rail-head h2 { font-size: clamp(1.3rem, 2.6vw, 1.8rem); }
.rail-cta {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--red-bright);
    white-space: nowrap;
}
.rail-cta:hover { color: #fff; }

.rail-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(176px, 1fr);
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 0.6rem;
    scrollbar-width: thin;
    scrollbar-color: var(--surface-2) transparent;
    overscroll-behavior-x: contain;
}
.rail-track::-webkit-scrollbar { height: 6px; }
.rail-track::-webkit-scrollbar-track { background: transparent; }
.rail-track::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 99px; }
.rail-track.landscape { grid-auto-columns: minmax(300px, 1fr); }

/* --- Griglia giochi fissa (nessuno scroll): tutto visibile subito --- */
.game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
}
.game-grid.top-grid { column-gap: 0.9rem; }
.game-grid .poster { aspect-ratio: 2 / 3; }
.game-grid .ranked { aspect-ratio: 2 / 3; height: auto; }

/* --- Poster (2:3) --- */
.poster {
    position: relative;
    aspect-ratio: 2 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    scroll-snap-align: start;
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    box-shadow: var(--shadow-card);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    cursor: pointer;
    display: block;
}
.poster img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s var(--ease), filter 0.3s var(--ease); }
.poster:hover { transform: translateY(-8px); box-shadow: var(--glow-red); }
.poster:hover img { transform: scale(1.07); filter: brightness(1.08); }
.poster .badge,
.tile .badge {
    position: absolute;
    top: 0.7rem; left: 0.7rem;
    z-index: 2;
    font-family: 'Oswald', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.28rem 0.62rem;
    border-radius: 99px;
    background: var(--red);
    color: #fff;
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.5);
}
.poster .meta {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 1.8rem 0.85rem 0.85rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.92) 18%, transparent);
}
.poster .meta h3 {
    font-family: 'Inter', sans-serif;
    text-transform: none;
    font-size: 0.96rem;
    font-weight: 600;
    letter-spacing: 0;
}
.poster .meta span {
    font-size: 0.72rem;
    color: var(--red-bright);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Ranked (Netflix Top-6) --- */
.ranked {
    display: flex;
    align-items: stretch;
    scroll-snap-align: start;
    height: 100%;
    -webkit-tap-highlight-color: transparent;
}
.ranked .poster {
    flex: 1;
    min-width: 0;
    aspect-ratio: auto;
    height: 100%;
    z-index: 1;
}
.rank {
    align-self: flex-end;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(4.4rem, 8.5vw, 7.6rem);
    line-height: 0.78;
    letter-spacing: -0.05em;
    margin-right: -0.3em;
    z-index: 0;
    color: rgba(255, 255, 255, 0.12);
    user-select: none;
    transition: color 0.3s var(--ease);
}
@supports (-webkit-text-stroke: 1px #000) {
    .rank {
        color: transparent;
        -webkit-text-stroke: 3px rgba(255, 255, 255, 0.24);
    }
    .ranked:hover .rank { -webkit-text-stroke-color: rgba(229, 9, 20, 0.75); }
}
.ranked:hover .poster { transform: translateY(-8px); box-shadow: var(--glow-red); }
.ranked:hover .poster img { transform: scale(1.07); filter: brightness(1.08); }

/* Mystery / Catalog cards */
.poster.mystery,
.poster.catalog {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
}
.ranked .poster.mystery,
.ranked .poster.catalog { width: 100%; }
.poster.mystery {
    border: 1px dashed var(--line-strong);
    background: radial-gradient(120% 100% at 50% 0%, rgba(229, 9, 20, 0.14), var(--surface));
}
.poster.mystery .q {
    font-family: 'Oswald', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--red-bright);
    line-height: 1;
    text-shadow: 0 0 24px rgba(229, 9, 20, 0.5);
}
.poster.mystery strong { font-size: 0.95rem; color: var(--text); }
.poster.mystery small { font-size: 0.78rem; color: var(--dim); }
.poster.catalog {
    border: 1px solid rgba(231, 185, 100, 0.35);
    background: linear-gradient(160deg, rgba(231, 185, 100, 0.14), var(--surface));
}
.poster.catalog .big {
    font-family: 'Oswald', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.poster.catalog strong { font-size: 0.92rem; color: var(--text); }
.poster.catalog .go { margin-top: 0.4rem; font-size: 0.82rem; font-weight: 700; color: var(--gold); }

/* --- Tile (16:10) --- */
.tile {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius);
    overflow: hidden;
    scroll-snap-align: start;
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    box-shadow: var(--shadow-card);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    cursor: pointer;
    display: block;
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s var(--ease); }
.tile:hover { transform: translateY(-6px); box-shadow: var(--glow-red); }
.tile:hover img { transform: scale(1.06); }
.tile .meta {
    position: absolute; inset: auto 0 0 0; z-index: 2;
    padding: 2rem 1.2rem 1.1rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 12%, transparent);
}
.tile .meta h3 {
    font-family: 'Inter', sans-serif;
    text-transform: none;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 0.15rem;
}
.tile .meta p { color: var(--dim); font-size: 0.88rem; }

/* Rail arrows */
.rail-btn {
    position: absolute;
    top: calc(50% + 1.1rem);
    transform: translateY(-50%);
    z-index: 6;
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: rgba(8, 8, 12, 0.85);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
    backdrop-filter: blur(6px);
}
.rail:hover .rail-btn { opacity: 1; }
.rail-btn:hover { background: var(--red); transform: translateY(-50%) scale(1.08); }
.rail-btn.prev { left: -10px; }
.rail-btn.next { right: -10px; }
@media (hover: none) { .rail-btn { display: none; } }

/* ============================================================
   STEPS
   ============================================================ */

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}
.step {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.6rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.step:hover { transform: translateY(-4px); border-color: rgba(229, 9, 20, 0.35); }
.step::before {
    content: attr(data-n);
    position: absolute;
    top: -0.6rem; right: 0.4rem;
    font-family: 'Oswald', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: rgba(229, 9, 20, 0.12);
    line-height: 1;
}
.step h3 {
    font-family: 'Inter', sans-serif;
    text-transform: none;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 0.5rem;
}
.step p { color: var(--dim); font-size: 0.95rem; }

/* ============================================================
   PROMOS
   ============================================================ */

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 1.4rem;
}
.promo {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    box-shadow: var(--shadow-card);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.promo:hover { transform: translateY(-6px); box-shadow: var(--glow-red); }
.promo > img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.5s var(--ease);
}
.promo:hover > img { transform: scale(1.08); }
.promo .promo-body {
    position: relative; z-index: 2;
    width: 100%;
    padding: 1.6rem 1.4rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.94) 20%, transparent);
}
.promo .tag {
    display: inline-block;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.promo h3 {
    font-family: 'Inter', sans-serif;
    text-transform: none;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 0.4rem;
}
.promo p { color: var(--dim); font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.5; }

/* ============================================================
   VIP
   ============================================================ */

.vip {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.12), rgba(231, 185, 100, 0.05));
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    padding: clamp(1.4rem, 4vw, 2.6rem);
}
.vip-art { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; }
.vip-art img { width: 100%; height: 100%; object-fit: cover; }
.vip-copy h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 0.8rem; }
.vip-copy h2 .accent { color: var(--gold); }
.vip-copy > p { color: var(--dim); margin-bottom: 1.4rem; line-height: 1.7; }
.vip-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1.2rem; margin-bottom: 1.6rem; }
.vip-perks li { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.92rem; color: var(--text); }
.vip-perks li::before { content: '✦'; color: var(--gold); flex-shrink: 0; }

/* ============================================================
   FEATURES
   ============================================================ */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 1.2rem;
}
.feature {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.8rem 1.6rem;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.feature:hover { transform: translateY(-6px); border-color: rgba(229, 9, 20, 0.4); background: var(--surface-2); }
.feature .ic {
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: rgba(229, 9, 20, 0.14);
    color: var(--red-bright);
    margin-bottom: 1.1rem;
}
.feature .ic svg { width: 24px; height: 24px; }
.feature h3 {
    font-family: 'Inter', sans-serif;
    text-transform: none;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 0.5rem;
}
.feature p { color: var(--dim); font-size: 0.94rem; }

/* ============================================================
   GUIDE (long-form)
   ============================================================ */

.guide-block { max-width: 900px; margin-inline: auto; }
.guide-block + .guide-block {
    margin-top: clamp(2.4rem, 5vw, 3.6rem);
    padding-top: clamp(2.4rem, 5vw, 3.6rem);
    border-top: 1px solid var(--line);
}
.guide-block h2 {
    font-size: clamp(1.4rem, 3.2vw, 2.05rem);
    margin-bottom: 1rem;
    padding-left: 0.95rem;
    border-left: 4px solid var(--red);
}
.guide-block h3 {
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: 0;
    font-size: 1.14rem;
    font-weight: 700;
    margin: 1.7rem 0 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--text);
}
.guide-block h3::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 2px;
    flex-shrink: 0;
}
.guide-block p { color: var(--dim); line-height: 1.85; margin-bottom: 1rem; font-size: 1.01rem; }
.guide-block p:last-child { margin-bottom: 0; }
.guide-block strong { color: var(--text); font-weight: 600; }

.editorial-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1.2rem 0 1.8rem;
}
.editorial-meta span {
    padding: 0.48rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--dim);
    font-size: 0.8rem;
}
.content-table-wrap {
    overflow-x: auto;
    margin: 1.35rem 0 1.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}
.content-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    color: var(--dim);
    font-size: 0.92rem;
}
.content-table th,
.content-table td {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}
.content-table th {
    background: var(--surface-2);
    color: var(--text);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.content-table tr:last-child td { border-bottom: 0; }
.content-table td:first-child { color: var(--text); font-weight: 600; }
.check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1.4rem;
    margin: 1.2rem 0;
}
.check-list li {
    position: relative;
    padding-left: 1.45rem;
    color: var(--dim);
    line-height: 1.65;
}
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 800;
}
.notice {
    margin: 1.35rem 0;
    padding: 1rem 1.15rem;
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: rgba(231, 185, 100, 0.08);
    color: var(--dim);
    line-height: 1.7;
}
.notice strong { color: var(--text); }

@media (max-width: 640px) {
    .check-list { grid-template-columns: 1fr; }
}

.pay-methods { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.1rem; }
.pay-methods span {
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 8px;
    padding: 0.55rem 0.95rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    transition: border-color 0.25s var(--ease);
}
.pay-methods span:hover { border-color: rgba(229, 9, 20, 0.4); }

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
    gap: 0.9rem;
    margin: 1.3rem 0;
}
.info-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1.1rem 1.2rem;
    background: var(--surface);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.info-card:hover { transform: translateY(-3px); border-color: rgba(231, 185, 100, 0.4); }
.info-card .k { font-family: 'Oswald', sans-serif; font-size: 1.1rem; color: var(--gold); margin-bottom: 0.15rem; }
.info-card .v { font-size: 0.86rem; color: var(--dim); }

/* ============================================================
   PROS / CONS
   ============================================================ */

.balance { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.balance-col {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.8rem 1.7rem;
    background: var(--surface);
}
.balance-col h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    margin-bottom: 1.2rem;
    display: flex; align-items: center; gap: 0.6rem;
    color: #fff;
}
.balance-col.pro h3 .dot { color: #3ddc84; }
.balance-col.con h3 .dot { color: var(--red-bright); }
.balance-col li {
    display: flex; gap: 0.7rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--dim);
    line-height: 1.55;
    font-size: 0.95rem;
}
.balance-col li:last-child { border-bottom: 0; }
.balance-col li::before { flex-shrink: 0; font-weight: 700; }
.balance-col.pro li::before { content: '＋'; color: #3ddc84; }
.balance-col.con li::before { content: '－'; color: var(--red-bright); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.tst-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 1.3rem;
}
.tst {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.tst::before {
    content: '“';
    position: absolute;
    top: 0.4rem; right: 1.1rem;
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    line-height: 1;
    color: rgba(229, 9, 20, 0.18);
    pointer-events: none;
}
.tst:hover { transform: translateY(-5px); border-color: rgba(229, 9, 20, 0.35); }
.tst .stars { color: var(--gold); letter-spacing: 0.1em; font-size: 1rem; }
.tst .stars .off { color: var(--surface-2); }
.tst blockquote { color: var(--text); font-size: 0.97rem; line-height: 1.65; }
.tst .who { display: flex; align-items: center; gap: 0.7rem; margin-top: auto; }
.tst .avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}
.tst .who b { font-size: 0.9rem; font-weight: 600; }
.tst .who span { font-size: 0.8rem; color: var(--mute); display: block; }

/* ============================================================
   FAQ
   ============================================================ */

.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-bottom: 0.8rem;
    overflow: hidden;
    background: var(--surface);
    transition: border-color 0.25s var(--ease);
}
.faq-item:has(.faq-q.open) { border-color: rgba(229, 9, 20, 0.4); }
.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    color: var(--text);
    font-size: 1.02rem;
    font-weight: 600;
    padding: 1.25rem 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.25s var(--ease);
    -webkit-tap-highlight-color: transparent;
}
.faq-q:hover { color: var(--red-bright); }
.faq-q .pm {
    flex-shrink: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--red);
    transition: transform 0.3s var(--ease);
}
.faq-q.open .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a-inner { padding: 0 1.4rem 1.3rem; color: var(--dim); line-height: 1.75; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background: #07070a;
    border-top: 1px solid var(--line);
    padding-top: clamp(2.5rem, 5vw, 4rem);
}
.footer-grid {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 2.2rem;
    padding-bottom: 2.4rem;
}
.footer-brand img { height: 30px; margin-bottom: 1rem; }
.footer-brand p { color: var(--mute); font-size: 0.9rem; line-height: 1.7; max-width: 360px; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.1rem; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    color: var(--dim);
    transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer-social a:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-2px); }

.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 1rem;
}
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a, .footer-col p { color: var(--mute); font-size: 0.9rem; }
.footer-col a:hover { color: var(--red-bright); }

.footer-pay { border-top: 1px solid var(--line); }
.footer-pay .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    padding-block: 1.4rem;
}
.pm-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pm-row span {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 0.42rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dim);
}
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.footer-badges .b {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 0.42rem 0.7rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dim);
    font-weight: 600;
}
.footer-badges .b.age { border-color: var(--red); color: var(--red-bright); font-weight: 700; }

.footer-legal { border-top: 1px solid var(--line); }
.footer-legal .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem 1.4rem;
    padding-block: 1.4rem;
    padding-bottom: calc(1.4rem + env(safe-area-inset-bottom));
}
.footer-legal .age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 2px solid var(--red);
    color: var(--red-bright);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.footer-legal p { color: var(--mute); font-size: 0.82rem; line-height: 1.6; flex: 1; min-width: 240px; }
.footer-legal .flag { width: 26px; height: auto; border-radius: 2px; }

/* ============================================================
   FLOATING CTA (mobile) — safe-area aware
   ============================================================ */

.float-cta {
    position: fixed;
    left: 1rem; right: 1rem;
    bottom: calc(0.9rem + env(safe-area-inset-bottom));
    z-index: 90;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 0.55rem;
    padding: 1.05rem;
    border-radius: 99px;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 12px 30px rgba(229, 9, 20, 0.45);
    transform: translateY(140%);
    transition: transform 0.4s var(--ease);
}
.float-cta::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
    animation: ctaPulse 1.6s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.55; }
}
.float-cta.show { transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .hero-figure { max-width: 50%; opacity: 0.9; }
    .vip { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    html { scroll-padding-top: 74px; }

    .header-inner { height: 64px; }
    .brand img { height: 28px; }

    .main-nav {
        position: fixed;
        inset: calc(64px + env(safe-area-inset-top)) 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        background: rgba(8, 8, 12, 0.98);
        border-bottom: 1px solid var(--line);
        padding: 0.6rem clamp(1rem, 4vw, 2.5rem) 1.2rem;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    }
    .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .main-nav a { padding: 1.05rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
    .main-nav a::after { display: none; }
    .nav-mobile-cta { display: block; color: var(--red-bright) !important; font-weight: 700; }

    .flag-text { display: none; }
    .flag-chip { padding: 0.42rem; }
    .link-login { display: none; }
    .burger { display: flex; }

    /* Hero: компактнее, текст по центру-низу */
    .hero { align-items: flex-end; min-height: 78svh; }
    .hero-figure { display: none; }
    .hero-content { padding-top: 96px; padding-bottom: 2.2rem; }
    .hero-inner { max-width: 100%; }
    .hero-scrim {
        background: linear-gradient(180deg, rgba(11, 11, 15, 0.55) 0%, rgba(11, 11, 15, 0.25) 40%, var(--bg) 94%);
    }
    .hero-cta .btn { flex: 1 1 100%; }

    .bonus-band .wrap { flex-direction: column; align-items: center; text-align: center; gap: 0.35rem; }
    .bb-main { display: contents; }
    .bb-eyebrow { margin-bottom: 0.15rem; }
    .bb-title { margin-bottom: 0.25rem; }
    .bb-sub { max-width: 36ch; margin-bottom: 0.4rem; }
    .bonus-band .bb-cta { order: 5; width: 100%; margin-top: 0.45rem; }
    .bonus-band .bb-cta .btn { width: 100%; }
    .bb-note { order: 6; margin-top: 0.15rem; max-width: 40ch; }

    /* Джекпоты — вертикальная «таблица лидеров» */
    .jackpot-strip .wrap { flex-direction: column; align-items: stretch; gap: 0.3rem; padding-block: 1.2rem; }
    .js-title { font-size: 0.76rem; margin-bottom: 0.2rem; }
    .jackpot-list { flex-direction: column; gap: 0; }
    .jp { padding: 0.7rem 0.1rem; border-bottom: 1px solid var(--line); }
    .jp:last-child { border-bottom: 0; }
    .jp-val { margin-left: auto; font-size: 1.08rem; }
    .jackpot-strip .btn { width: 100%; margin-top: 0.7rem; }

    /* Live rail: peek — видно край следующей карточки */
    .rail-track { grid-auto-columns: 80%; gap: 0.8rem; }

    /* Griglie giochi: 2 colonne, tutto visibile senza scroll */
    .game-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem 0.7rem; }
    .rank { font-size: 3.1rem; -webkit-text-stroke-width: 2px; margin-right: -0.24em; }

    .balance { grid-template-columns: 1fr; }
    .vip-perks { grid-template-columns: 1fr; }
    .info-cards { grid-template-columns: 1fr 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-pay .wrap { flex-direction: column; align-items: flex-start; }

    /* производительность на слабых телефонах */
    .btn-ghost, .rail-btn { backdrop-filter: none; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.15rem; }
    .hero-sub { font-size: 0.97rem; }
    .bonus-banner { width: 100%; padding: 0.9rem 1.1rem; }
    .bonus-banner .b-amount { font-size: 1.6rem; }
    .bb-title { font-size: 1.55rem; }
    .bb-title .hl { font-size: 1.9rem; display: inline-block; }

    .section { padding-block: 2.6rem; }
    .section-head h2 { font-size: 1.42rem; }

    .rail-track { grid-auto-columns: 86%; }
    .rank { font-size: 2.6rem; -webkit-text-stroke-width: 1.5px; }
    .poster .meta h3 { font-size: 0.9rem; }

    .btn { padding: 1rem 1.7rem; }
    .guide-block h2 { font-size: 1.32rem; }
    .guide-block h3 { font-size: 1.05rem; }
    .guide-block p { font-size: 0.98rem; }
    .info-cards { grid-template-columns: 1fr; }
    .pay-methods span { font-size: 0.78rem; padding: 0.5rem 0.8rem; }

    .tst { padding: 1.4rem; }
    .faq-q { padding: 1.1rem 1.15rem; font-size: 0.97rem; }
    .faq-a-inner { padding: 0 1.15rem 1.15rem; }

    .footer-grid { grid-template-columns: 1fr; }
    .float-cta { display: flex; }
}

/* ============================================================
   MOTION SAFETY
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
