/* ============================================================
   1win — «BETTING SLIP» theme
   Концепт: букмекерский купон / чековая лента / ночное табло.
   Палитра официального 1win: фон #0e1116 · панели #151a21
   синий #1f7aff · зелёный #00b34a · бумага купона #f5f7fb
   Шрифты: Unbounded (дисплей) · JetBrains Mono (служебный) · Inter (текст)
   ============================================================ */

:root {
    --ink: #0e1116;
    --ink-2: #151a21;
    --paper: #f5f7fb;
    --paper-dim: #e3e8f2;
    --lime: #1f7aff;          /* фирменный синий 1win (основной акцент) */
    --lime-dim: #0d6efd;
    --green: #00b34a;         /* фирменный зелёный 1win (CTA) */
    --green-bright: #00c853;
    --red: #ff4d2e;
    --radius-btn: 10px;
    --line: #232b38;
    --line-paper: #c3cbdc;
    --text: #f2f4f8;
    --muted: #8a92a5;
    --ink-on-paper: #12161f;
    --muted-on-paper: #5d6577;
    --font-display: 'Unbounded', 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    --font-text: 'Inter', -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background:
        radial-gradient(1200px 500px at 80% -100px, rgba(31,122,255,.06), transparent 60%),
        var(--ink);
    color: var(--text);
    font-family: var(--font-text);
    font-size: 16.5px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--lime); text-decoration: none; }

.mono { font-family: var(--font-mono); }
.lime { color: var(--lime); }

.page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 22px;
}

::selection { background: var(--lime); color: #fff; }

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: var(--radius-btn);
    font-family: var(--font-text);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .01em;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: transform .13s ease, box-shadow .13s ease, background .13s, color .13s, border-color .13s;
    border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }
/* Зелёная CTA — как на официальном сайте 1win */
.btn--lime {
    background: linear-gradient(180deg, var(--green-bright), var(--green));
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 200, 83, .35);
}
.btn--lime:hover { box-shadow: 0 8px 24px rgba(0, 200, 83, .5); }
.btn--outline {
    background: #1e2530;
    color: var(--text);
    border-color: #2c3648;
}
.btn--outline:hover { border-color: var(--lime); color: #fff; background: #232c3a; }
/* Синяя кнопка (на светлом купоне и CTA-полосе) */
.btn--ink {
    background: linear-gradient(180deg, #2b86ff, var(--lime-dim));
    color: #fff;
    box-shadow: 0 6px 18px rgba(31, 122, 255, .35);
}
.btn--ink:hover { box-shadow: 0 8px 24px rgba(31, 122, 255, .5); }
.btn--outline-ink {
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 2px solid rgba(255,255,255,.75);
}
.btn--outline-ink:hover { background: #fff; color: var(--lime-dim); border-color: #fff; }
.btn--lg { padding: 17px 32px; font-size: 15.5px; border-radius: 12px; }

/* ============ Marquee animation (используется в CTA-полосе) ============ */
@keyframes ticker-run {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============ Header ============ */
.header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(10,13,18,.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.header__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 26px;
}
.header__logo { display: flex; align-items: center; gap: 10px; }
.header__logo img { width: 92px; height: auto; }
.header__logo-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    color: #fff;
    background: linear-gradient(180deg, #2b86ff, var(--lime-dim));
    padding: 3px 6px;
    border-radius: 4px;
}
.header__nav { display: flex; gap: 4px; flex: 1; }
.nav-link {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    padding: 9px 13px;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    border: 1px solid transparent;
    transition: border-color .15s, color .15s;
}
.nav-link i {
    font-style: normal;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--muted);
}
.nav-link:hover { border-color: var(--line); color: var(--lime); }
.nav-link:hover i { color: var(--lime); }
.header__auth { display: flex; gap: 10px; }

/* ============ Hero ============ */
.hero {
    max-width: 1240px;
    margin: 0 auto;
    padding: 54px 22px 40px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 46px;
    align-items: start;
    position: relative;
}
.hero__left { position: relative; }
.hero__meta {
    display: flex;
    gap: 22px;
    font-size: 11.5px;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 22px;
}
.hero__meta b { font-weight: 700; }
.hero__title {
    margin: 0 0 20px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(34px, 4.6vw, 60px);
    line-height: 1.04;
    letter-spacing: -.01em;
    text-transform: uppercase;
}
.hero__odds {
    color: #fff;
    background: linear-gradient(135deg, #2b86ff, var(--lime-dim));
    padding: 0 12px;
    border-radius: 8px;
    display: inline-block;
    transform: rotate(-1.5deg);
    box-shadow: 5px 5px 0 rgba(31,122,255,.22);
}
.hero__sub {
    color: var(--muted);
    max-width: 430px;
    margin: 0 0 28px;
    font-size: 16px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stamp {
    position: absolute;
    right: 6px;
    bottom: -12px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .18em;
    text-align: center;
    color: var(--red);
    border: 3px double var(--red);
    border-radius: 50%;
    width: 108px;
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(12deg);
    opacity: .75;
    pointer-events: none;
}

/* --- Ticket (главный купон в hero) --- */
.ticket {
    position: relative;
    display: block;
    background: var(--paper);
    color: var(--ink-on-paper);
    padding: 16px 18px 14px;
    box-shadow: 8px 8px 0 rgba(31,122,255,.16);
    transform: rotate(1.2deg);
    transition: transform .18s ease, box-shadow .18s ease;
}
.ticket:hover { transform: rotate(0deg) translateY(-3px); box-shadow: 10px 12px 0 rgba(31,122,255,.22); }
.ticket__punch {
    position: absolute;
    top: 50%;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--ink);
    transform: translateY(-50%);
}
.ticket__punch--l { left: -11px; }
.ticket__punch--r { right: -11px; }
.ticket__head, .ticket__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 0 10px;
}
.ticket__head span:last-child { color: var(--red); font-size: 15px; }
.ticket img { border: 1px solid var(--line-paper); }
.ticket__row {
    padding: 10px 0;
    border-bottom: 1px dashed var(--line-paper);
    color: var(--muted-on-paper);
}
.ticket__row b { color: var(--ink-on-paper); }
.ticket__barcode {
    height: 34px;
    margin: 12px 0 8px;
    background: repeating-linear-gradient(90deg,
        var(--ink-on-paper) 0 2px, transparent 2px 5px,
        var(--ink-on-paper) 5px 6px, transparent 6px 11px,
        var(--ink-on-paper) 11px 14px, transparent 14px 17px);
}
.ticket__foot {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--ink-on-paper);
}

.hero__stubs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 22px;
}
.stub {
    position: relative;
    display: block;
    border: 1px solid var(--line);
    background: var(--ink-2);
    overflow: hidden;
    transition: border-color .15s, transform .15s;
}
.stub:hover { border-color: var(--lime); transform: translateY(-2px); }
.stub img { opacity: .9; }
.stub__label {
    display: block;
    padding: 10px 12px;
    font-size: 11px;
    letter-spacing: .05em;
    color: var(--muted);
    border-top: 1px dashed var(--line);
}
.stub__label b { display: block; color: var(--lime); font-size: 12px; letter-spacing: .1em; }

/* ============ Coupon (промокод) ============ */
.coupon {
    max-width: 1180px;
    margin: 8px auto 0;
    padding: 0 22px;
}
.coupon__cut {
    color: #3a4356;
    font-size: 13px;
    letter-spacing: 2px;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: -1px;
}
.coupon__body {
    background: var(--paper);
    color: var(--ink-on-paper);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    flex-wrap: wrap;
    position: relative;
}
.coupon__body::before, .coupon__body::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--ink);
    transform: translateY(-50%);
}
.coupon__body::before { left: -10px; }
.coupon__body::after { right: -10px; }
.coupon__info b { display: block; font-size: 17px; }
.coupon__info { font-size: 14.5px; color: var(--muted-on-paper); }
.coupon__code {
    display: inline-block;
    background: var(--ink);
    color: var(--lime);
    padding: 4px 12px;
    font-size: 14px;
    letter-spacing: .08em;
    cursor: pointer;
    user-select: all;
    transition: transform .1s;
}
.coupon__code:hover { transform: scale(1.03); }
.coupon__hint { font-style: normal; font-size: 11px; color: var(--muted-on-paper); margin-left: 8px; }

/* ============ Board (быстрая навигация-табло) ============ */
.board {
    margin: 42px 0;
    border: 1px solid var(--line);
    background: var(--ink-2);
}
.board__row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px 20px;
    color: var(--text);
    font-size: 14px;
    border-bottom: 1px solid var(--line);
    transition: background .14s, padding-left .14s;
}
.board__row:last-child { border-bottom: none; }
.board__row:hover { background: rgba(31,122,255,.05); padding-left: 26px; }
.board__row:hover .board__arr { color: var(--lime); transform: translateX(3px); }
.board__num { color: var(--muted); font-size: 12px; }
.board__row b { font-size: 15px; letter-spacing: .04em; text-transform: uppercase; }
.board__dots {
    flex: 1;
    border-bottom: 1px dotted #2c3648;
    height: 1px;
    margin: 0 4px;
}
.board__val { color: var(--lime); font-size: 13px; }
.board__arr { color: var(--muted); transition: color .14s, transform .14s; }

/* ============ Section: FIFA ============ */
.fifa-season {
    border: 1px solid var(--line);
    background:
        linear-gradient(140deg, rgba(31,122,255,.05), transparent 45%),
        var(--ink-2);
    padding: 40px 38px 44px;
    margin: 46px 0;
    position: relative;
}
.fifa-season::before {
    content: 'PROMO';
    position: absolute;
    top: 18px; right: -34px;
    transform: rotate(38deg);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3em;
    background: var(--red);
    color: #fff;
    padding: 4px 44px;
}
.section-head { margin-bottom: 14px; }
.section-head__no {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    color: #fff;
    background: linear-gradient(180deg, #2b86ff, var(--lime-dim));
    padding: 4px 10px;
    border-radius: 5px;
    margin-bottom: 14px;
}
.section-head h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(22px, 2.8vw, 34px);
    line-height: 1.2;
    text-transform: uppercase;
}
.section-sub { color: var(--muted); max-width: 860px; }
.fifa-video { margin: 26px 0; border: 1px solid var(--line); }
.fifa-video video { width: 100%; display: block; }
.fifa-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    margin: 26px 0;
}
.fifa-fact {
    padding: 20px 18px;
    border-right: 1px dashed var(--line);
}
.fifa-fact:last-child { border-right: none; }
.fifa-fact b {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 21px;
    color: var(--lime);
    margin-bottom: 6px;
}
.fifa-fact span { color: var(--muted); font-size: 13.5px; line-height: 1.5; display: block; }
.fifa-btn { margin-top: 18px; }

/* ============ Article base ============ */
.wrapper-post { padding-bottom: 30px; }

.wrapper-post h1 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(26px, 3.6vw, 44px);
    line-height: 1.14;
    text-transform: uppercase;
    letter-spacing: -.01em;
    margin: 54px 0 30px;
    max-width: 980px;
}

.wrapper-post h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(21px, 2.6vw, 31px);
    line-height: 1.22;
    text-transform: uppercase;
    margin: 64px 0 22px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
}
.h-no {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(180deg, #2b86ff, var(--lime-dim));
    padding: 3px 9px;
    border-radius: 5px;
    flex: none;
    transform: translateY(-4px);
}
.wrapper-post h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    line-height: 1.3;
    margin: 40px 0 16px;
}
.wrapper-post p { color: #cfd2c8; max-width: 900px; }
.wrapper-post p strong { color: var(--lime); }

/* ============ Spec table (чек) ============ */
.spec-table {
    margin: 0 0 34px;
    max-width: 720px;
    background: var(--paper);
    color: var(--ink-on-paper);
    padding: 16px 20px 14px;
    box-shadow: 8px 8px 0 rgba(31,122,255,.14);
    font-family: var(--font-mono);
}
.spec-table__head, .spec-table__foot {
    display: flex;
    justify-content: space-between;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .1em;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--line-paper);
}
.spec-table__foot {
    justify-content: center;
    border-bottom: none;
    border-top: 1px dashed var(--line-paper);
    padding: 10px 0 0;
    color: var(--muted-on-paper);
}
.spec-table table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.spec-table td {
    padding: 9px 4px;
    border-bottom: 1px dotted var(--line-paper);
    vertical-align: top;
}
.spec-table tr:first-child td {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 11.5px;
    color: var(--muted-on-paper);
}
.spec-table td:first-child { color: var(--muted-on-paper); width: 40%; }
.spec-table td:last-child { font-weight: 500; }

/* ============ Figures ============ */
.app-shot { margin: 30px 0; }
.app-shot img { border: 1px solid var(--line); }
.app-shot figcaption, .install-col__shot figcaption, .media-text__media figcaption {
    font-size: 11.5px;
    letter-spacing: .04em;
    color: var(--muted);
    padding: 10px 2px 0;
    text-transform: uppercase;
}

/* ============ Note ============ */
.note {
    margin: 34px 0;
    padding: 22px 26px;
    border: 1px dashed #3a4356;
    background: rgba(31,122,255,.035);
    position: relative;
    max-width: 900px;
}
.note::before {
    content: '! ЗАМЕТКА';
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .18em;
    background: var(--ink);
    color: var(--lime);
    padding: 2px 10px;
    border: 1px dashed #3a4356;
}
.note p { margin: 0; color: #d6d9cd; }

/* ============ Bonus tickets ============ */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin: 30px 0 36px;
}
.bticket {
    position: relative;
    background: var(--paper);
    color: var(--ink-on-paper);
    padding: 16px 20px 14px;
    transition: transform .16s ease, box-shadow .16s ease;
    box-shadow: 6px 6px 0 rgba(31,122,255,.12);
}
.bticket:nth-child(odd) { transform: rotate(-.5deg); }
.bticket:nth-child(even) { transform: rotate(.5deg); }
.bticket:hover { transform: rotate(0) translateY(-4px); box-shadow: 8px 10px 0 rgba(31,122,255,.2); }
.bticket--lime { background: linear-gradient(160deg, #2b86ff, var(--lime-dim)); color: #fff; box-shadow: 6px 6px 0 rgba(31,122,255,.28); }
.bticket__head {
    display: flex;
    justify-content: space-between;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--muted-on-paper);
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(18,22,31,.28);
}
.bticket--lime .bticket__head { color: rgba(255,255,255,.75); border-bottom-color: rgba(255,255,255,.35); }
.bticket__value {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 46px;
    line-height: 1.1;
    margin: 12px 0 2px;
    letter-spacing: -.01em;
}
.bticket__title { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.bticket__terms { margin: 0 0 14px; font-size: 13.5px; line-height: 1.6; color: var(--muted-on-paper) !important; max-width: none !important; }
.bticket--lime .bticket__terms { color: rgba(255,255,255,.85) !important; }
.bticket__barcode {
    height: 26px;
    background: repeating-linear-gradient(90deg,
        currentColor 0 2px, transparent 2px 5px,
        currentColor 5px 6px, transparent 6px 11px,
        currentColor 11px 13px, transparent 13px 16px);
    opacity: .85;
}

/* ============ Promo cards ============ */
.promo-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin: 30px 0 8px;
}
.promo-card {
    border: 1px solid var(--line);
    background: var(--ink-2);
    display: flex;
    flex-direction: column;
    transition: border-color .15s, transform .15s;
}
.promo-card:hover { border-color: var(--lime); transform: translateY(-3px); }
.promo-card img { border-bottom: 1px dashed var(--line); }
.promo-card__body { padding: 20px 22px 22px; }
.promo-card__body h3 { margin: 0 0 10px !important; font-size: 17px !important; }
.promo-card__body p { margin: 0; font-size: 14.5px; color: var(--muted) !important; }

/* ============ Install ============ */
.install-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin: 30px 0 10px;
}
.install-col {
    border: 1px solid var(--line);
    background: var(--ink-2);
    padding: 26px 26px 22px;
}
.install-col__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.install-col__head h3 { margin: 0 !important; font-size: 17px !important; }
.os-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    padding: 5px 10px;
    background: linear-gradient(180deg, #2b86ff, var(--lime-dim));
    color: #fff;
    flex: none;
    border-radius: 5px;
}
.install-col__note { font-size: 14px; color: var(--muted) !important; }
.install-col__shot { margin: 18px 0; }
.install-col__shot img {
    max-width: 300px;
    margin: 0 auto;
    border: 1px solid var(--line);
}
.install-col__shot figcaption { text-align: center; }
.steps {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: step;
}
.steps li {
    counter-increment: step;
    position: relative;
    padding: 11px 0 11px 46px;
    border-top: 1px dotted #2a3345;
    font-size: 14.5px;
    color: #cfd2c8;
}
.steps li::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 12px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 12px;
    color: var(--lime);
    border: 1px solid #2c3648;
    padding: 2px 6px;
}

/* ============ Media-text ============ */
.media-text {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 30px;
    align-items: center;
    border: 1px solid var(--line);
    background: var(--ink-2);
    padding: 28px;
    margin: 30px 0;
}
.media-text__body h3 { margin-top: 0 !important; }
.media-text__body p { font-size: 15px; }
.media-text__media { margin: 0; }
.media-text__media img { border: 1px solid var(--line); }
.media-text--phone .media-text__media img { max-width: 300px; margin: 0 auto; }
.media-text--phone .media-text__media figcaption { text-align: center; }

/* ============ Games ============ */
.games-h3 { text-transform: uppercase; letter-spacing: .02em; }
.igry {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin: 24px 0 10px;
}
.igra {
    position: relative;
    border: 1px solid var(--line);
    overflow: hidden;
    background: var(--ink-2);
    transition: transform .16s, border-color .16s;
}
.igra:hover { transform: translateY(-4px); border-color: var(--lime); }
.igra img { width: 100%; }
.o_igre {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px 12px;
    border-top: 1px dashed var(--line);
}
.o_igre span { font-weight: 700; font-size: 13.5px; }
.o_igre a {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--lime);
}
.o_igre a:hover { text-decoration: underline; }

/* ============ WC odds ============ */
.wc-odds {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 26px 0;
}
.wc-odds figure { margin: 0; border: 1px solid var(--line); background: var(--ink-2); }
.wc-odds img { border-bottom: 1px dashed var(--line); }
.wc-odds figcaption { padding: 12px 14px 14px; font-size: 12.5px; color: var(--muted); }
.wc-odds figcaption b { display: block; color: var(--text); font-size: 14px; margin-bottom: 3px; font-family: var(--font-text); }
.wc-odds figcaption .mono { font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }

/* ============ Crypto table ============ */
.crypto-table-wrap { overflow-x: auto; margin: 26px 0; max-width: 720px; }
.crypto-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--paper);
    color: var(--ink-on-paper);
    font-size: 14px;
    box-shadow: 8px 8px 0 rgba(31,122,255,.14);
}
.crypto-table th {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    text-align: left;
    padding: 13px 16px;
    background: var(--ink);
    color: var(--lime);
}
.crypto-table td {
    padding: 10px 16px;
    border-bottom: 1px dotted var(--line-paper);
}
.crypto-table tbody tr:hover { background: rgba(31,122,255,.14); }
.ticker-cell { font-weight: 700; font-size: 13px; }

/* ============ FAQ ============ */
.casino_h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(21px, 2.6vw, 31px);
    text-transform: uppercase;
    margin: 64px 0 22px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: baseline;
    gap: 16px;
}
.faq { border: 1px solid var(--line); }
.faq__block { border-bottom: 1px solid var(--line); position: relative; }
.faq__block:last-child { border-bottom: none; }
.fag-checkbox { position: absolute; opacity: 0; pointer-events: none; }
.faq__question {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 18px 56px 18px 20px;
    font-weight: 600;
    font-size: 15.5px;
    cursor: pointer;
    position: relative;
    transition: background .14s, color .14s;
}
.faq__question:hover { background: rgba(31,122,255,.04); color: var(--lime); }
.faq__q {
    flex: none;
    font-size: 11px;
    font-weight: 700;
    color: var(--lime);
    border: 1px solid #2c3648;
    padding: 2px 7px;
}
.faq__question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-mono);
    font-size: 20px;
    color: var(--muted);
    transition: transform .18s, color .18s;
}
.fag-checkbox:checked ~ .faq__question { background: rgba(31,122,255,.05); color: var(--lime); }
.fag-checkbox:checked ~ .faq__question::after { transform: translateY(-50%) rotate(45deg); color: var(--lime); }
.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease;
}
.fag-checkbox:checked ~ .faq__answer { max-height: 400px; }
.faq__answer p {
    margin: 0;
    padding: 4px 20px 20px 20px;
    color: var(--muted) !important;
    font-size: 14.5px;
    border-top: 1px dashed var(--line);
    padding-top: 14px;
}

/* ============ CTA stripe ============ */
.cta-stripe {
    margin-top: 60px;
    background: linear-gradient(120deg, var(--lime-dim), #2b86ff 55%, #4d9bff);
    color: #fff;
    border-top: 2px solid var(--ink);
    overflow: hidden;
}
.cta-stripe__marquee {
    white-space: nowrap;
    overflow: hidden;
    border-bottom: 1px dashed rgba(255,255,255,.35);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    padding: 6px 0;
    opacity: .85;
}
.cta-stripe__marquee span {
    display: inline-block;
    animation: ticker-run 26s linear infinite;
}
.cta-stripe__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 30px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cta-stripe__text b {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 26px;
    text-transform: uppercase;
}
.cta-stripe__text span { font-size: 15px; opacity: .85; }
.cta-stripe__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ Footer ============ */
.footer {
    background: var(--ink);
    border-top: 1px solid var(--line);
}
.footer__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 44px 22px 30px;
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 34px;
    align-items: start;
}
.footer__brand img { width: 100px; margin-bottom: 14px; }
.footer__brand p { color: var(--muted); font-size: 13px; margin: 0; max-width: 340px; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a {
    color: var(--muted);
    font-size: 13px;
    letter-spacing: .06em;
    transition: color .14s, padding-left .14s;
}
.footer__nav a:hover { color: var(--lime); padding-left: 6px; }
.footer__actions { display: flex; gap: 10px; }
.footer__bottom {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 22px 26px;
    border-top: 1px dashed var(--line);
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .04em;
}
.footer__age {
    border: 2px solid var(--red);
    color: var(--red);
    font-weight: 700;
    padding: 3px 8px;
    font-size: 12px;
}

/* ============ Toast ============ */
.promo-toast {
    position: fixed;
    left: 50%;
    bottom: 26px;
    transform: translate(-50%, 16px);
    background: var(--paper);
    color: var(--ink-on-paper);
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    padding: 13px 22px;
    box-shadow: 6px 6px 0 rgba(31,122,255,.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s, transform .22s;
    z-index: 100;
}
.promo-toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
    .igry { grid-template-columns: repeat(3, 1fr); }
    .fifa-facts { grid-template-columns: repeat(2, 1fr); }
    .fifa-fact:nth-child(2) { border-right: none; }
    .fifa-fact { border-bottom: 1px dashed var(--line); }
    .fifa-fact:nth-child(3), .fifa-fact:nth-child(4) { border-bottom: none; }
    .wc-odds { grid-template-columns: 1fr 1fr; }
    .header__nav { display: none; }
}

@media (max-width: 860px) {
    .hero { grid-template-columns: 1fr; gap: 34px; padding-top: 38px; }
    .hero__stamp { right: 0; bottom: auto; top: -10px; width: 88px; height: 88px; font-size: 12px; }
    .bonus-grid, .promo-cards, .install-grid { grid-template-columns: 1fr; }
    .media-text { grid-template-columns: 1fr; padding: 22px; }
    .media-text--reverse .media-text__media { order: 2; }
    .footer__inner { grid-template-columns: 1fr; gap: 26px; }
}

@media (max-width: 640px) {
    body { font-size: 15.5px; }
    .header__inner { flex-wrap: wrap; gap: 12px; padding: 12px 16px; }
    .header__auth { width: 100%; }
    .header__auth .btn { flex: 1; padding: 12px 10px; font-size: 12px; }
    .page, .coupon { padding-left: 16px; padding-right: 16px; }
    .hero { padding-left: 16px; padding-right: 16px; }
    .hero__stubs { grid-template-columns: 1fr; }
    .coupon__body { flex-direction: column; align-items: flex-start; }
    .coupon__body .btn { width: 100%; }
    .igry { grid-template-columns: repeat(2, 1fr); }
    .wc-odds { grid-template-columns: 1fr; }
    .fifa-season { padding: 26px 20px 30px; }
    .fifa-facts { grid-template-columns: 1fr; }
    .fifa-fact { border-right: none; border-bottom: 1px dashed var(--line); }
    .fifa-fact:last-child, .fifa-fact:nth-child(3) { border-bottom: none; }
    .fifa-fact:nth-child(3) { border-bottom: 1px dashed var(--line); }
    .cta-stripe__actions { width: 100%; }
    .cta-stripe__actions .btn { flex: 1; }
    .footer__actions { width: 100%; }
    .footer__actions .btn { flex: 1; }
}
