/*!
 * 4six Redesign v3 — Inner Pages (fx-page-*)
 * Shared styles for About, Betting, Promotions, Contact, Blog index.
 */

/* ── Legacy suppressor ───────────────────────────────────────
   These pages render via new page-{slug}.php templates, but the
   legacy theme wp_footer hooks still inject .bt-*, .c4s-*, etc.
   markup. Hide all of it on fx-redesign body.
*/
body.fx-redesign #bt-betting-page,
body.fx-redesign .bt-wrap,
body.fx-redesign [id^="bt-"]:not(.fx-bt):not(.fx-bt *),
body.fx-redesign [class^="bt-"]:not(.fx-bt):not(.fx-bt *),
body.fx-redesign #c4s-contact-page,
body.fx-redesign [id^="c4s-"],
body.fx-redesign [class^="c4s-"],
body.fx-redesign [id^="ab4-"],
body.fx-redesign [class^="ab4-"],
body.fx-redesign [id^="p4s-"],
body.fx-redesign [class^="p4s-"],
body.fx-redesign [id^="b4s-"],
body.fx-redesign [class^="b4s-"],
body.fx-redesign .elementor-location-header,
body.fx-redesign .elementor-location-footer,
body.fx-redesign [data-elementor-type="wp-page"] {
    display: none !important;
}

/* ── Page hero (shared banner for all inner pages) ────────── */
.fx-page-hero {
    position: relative;
    padding-block: clamp(var(--fx-sp-12), 10vw, var(--fx-sp-20));
    overflow: hidden;
    isolation: isolate;
    background: radial-gradient(1200px 500px at 10% 10%, rgba(16,185,129,.08), transparent 60%),
                radial-gradient(900px 400px at 90% 90%, rgba(245,158,11,.07), transparent 60%);
}
.fx-page-hero__orbs { position: absolute; inset: 0; z-index: -1; }
.fx-page-hero__orbs .fx-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .45;
}
.fx-page-hero__orbs .fx-orb--a {
    width: 360px; height: 360px;
    background: radial-gradient(circle, var(--fx-accent) 0%, transparent 60%);
    top: -120px; left: -80px;
}
.fx-page-hero__orbs .fx-orb--b {
    width: 420px; height: 420px;
    background: radial-gradient(circle, var(--fx-gold) 0%, transparent 60%);
    bottom: -180px; right: -120px;
}
.fx-page-hero--violet .fx-orb--a { background: radial-gradient(circle, #8b5cf6 0%, transparent 60%); }
.fx-page-hero--violet .fx-orb--b { background: radial-gradient(circle, #ec4899 0%, transparent 60%); }
.fx-page-hero--gold .fx-orb--a { background: radial-gradient(circle, var(--fx-gold) 0%, transparent 60%); }

.fx-page-hero__inner { max-width: 820px; display: flex; flex-direction: column; gap: var(--fx-sp-4); }
.fx-page-hero__title {
    font-size: clamp(var(--fx-fs-3xl), 5vw, var(--fx-fs-5xl));
    font-family: var(--fx-font-display);
    line-height: 1.08;
    margin: 0;
}
.fx-page-hero__title em {
    font-style: normal;
    background: linear-gradient(90deg, var(--fx-accent), var(--fx-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.fx-page-hero__lede { color: var(--fx-text-muted); font-size: var(--fx-fs-lg); max-width: 680px; margin: 0; }

/* ── Content blocks shared across inner pages ─────────────── */
.fx-rich {
    display: flex;
    flex-direction: column;
    gap: var(--fx-sp-6);
    font-size: var(--fx-fs-md);
    color: var(--fx-text-muted);
    max-width: 720px;
}
.fx-rich h2, .fx-rich h3 { color: var(--fx-text); margin: var(--fx-sp-6) 0 var(--fx-sp-2); }
.fx-rich h2 { font-size: var(--fx-fs-2xl); }
.fx-rich h3 { font-size: var(--fx-fs-xl); }
.fx-rich p { margin: 0; }
.fx-rich ul { padding-left: 1.2em; display: flex; flex-direction: column; gap: var(--fx-sp-2); }
.fx-rich li::marker { color: var(--fx-accent); }
.fx-rich strong { color: var(--fx-text); }

/* ── Feature cards grid (reusable) ─────────────────────────── */
.fx-feat {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--fx-sp-5);
}
.fx-feat__card {
    background: var(--fx-card-bg);
    border: 1px solid var(--fx-card-border);
    border-radius: var(--fx-r-lg);
    padding: var(--fx-sp-6);
    display: flex;
    flex-direction: column;
    gap: var(--fx-sp-3);
    transition: transform .35s var(--fx-ease-out), border-color .35s var(--fx-ease-out), background .35s var(--fx-ease-out);
}
.fx-feat__card:hover { transform: translateY(-4px); border-color: var(--fx-accent); }
.fx-feat__icon {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    background: rgba(16,185,129,.12);
    border-radius: var(--fx-r-md);
    font-size: 22px;
}
.fx-feat__title { font-size: var(--fx-fs-lg); color: var(--fx-text); margin: 0; }
.fx-feat__desc { color: var(--fx-text-muted); font-size: var(--fx-fs-sm); margin: 0; line-height: 1.55; }

/* ── Stat strip ─────────────────────────────────────────────── */
.fx-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--fx-sp-8);
    padding: var(--fx-sp-6) var(--fx-sp-7);
    background: var(--fx-card-bg);
    border: 1px solid var(--fx-card-border);
    border-radius: var(--fx-r-xl);
}
.fx-stats__item { display: flex; flex-direction: column; gap: var(--fx-sp-1); }
.fx-stats__num { font-size: var(--fx-fs-3xl); font-family: var(--fx-font-display); color: var(--fx-accent); }
.fx-stats__label { color: var(--fx-text-muted); font-size: var(--fx-fs-sm); }

/* ── Two-column split ───────────────────────────────────────── */
.fx-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--fx-sp-12);
    align-items: start;
}
@media (max-width: 960px) { .fx-split { grid-template-columns: 1fr; gap: var(--fx-sp-8); } }
.fx-split__media img {
    width: 100%;
    border-radius: var(--fx-r-xl);
    border: 1px solid var(--fx-card-border);
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ── Betting: sport picker ─────────────────────────────────── */
.fx-sportsbook {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--fx-sp-6);
}
.fx-sb-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--fx-r-xl);
    aspect-ratio: 4/5;
    isolation: isolate;
    background: #111a2e;
    border: 1px solid var(--fx-card-border);
    transition: transform .4s var(--fx-ease-out), border-color .4s var(--fx-ease-out);
}
.fx-sb-card:hover { transform: translateY(-6px); border-color: var(--fx-accent); }
.fx-sb-card__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: .6;
    transition: opacity .5s var(--fx-ease-out), transform .8s var(--fx-ease-out);
}
.fx-sb-card:hover .fx-sb-card__bg { opacity: .85; transform: scale(1.04); }
.fx-sb-card::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(4,6,13,.92) 100%);
    z-index: 1;
}
.fx-sb-card__body {
    position: relative;
    z-index: 2;
    padding: var(--fx-sp-6);
    display: flex; flex-direction: column; justify-content: flex-end;
    height: 100%;
    gap: var(--fx-sp-2);
}
.fx-sb-card__title { font-size: var(--fx-fs-2xl); font-family: var(--fx-font-display); margin: 0; }
.fx-sb-card__markets { color: var(--fx-accent); font-size: var(--fx-fs-sm); font-weight: 600; }
.fx-sb-card__tags { display: flex; flex-wrap: wrap; gap: var(--fx-sp-2); margin-top: var(--fx-sp-2); }
.fx-sb-card__tag {
    padding: 4px 10px;
    background: rgba(255,255,255,.08);
    border-radius: 999px;
    font-size: 12px;
    color: var(--fx-text-muted);
    backdrop-filter: blur(6px);
}

/* ── Promotions: promo cards ───────────────────────────────── */
.fx-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--fx-sp-6);
}
.fx-promo-card {
    position: relative;
    padding: var(--fx-sp-7);
    border-radius: var(--fx-r-xl);
    overflow: hidden;
    isolation: isolate;
    min-height: 260px;
    display: flex; flex-direction: column; gap: var(--fx-sp-3);
    background: linear-gradient(135deg, var(--promo-from, #10b981), var(--promo-to, #059669));
    color: #fff;
    transition: transform .35s var(--fx-ease-out);
}
.fx-promo-card:hover { transform: translateY(-6px); }
.fx-promo-card__tag {
    align-self: flex-start;
    padding: 4px 10px;
    background: rgba(0,0,0,.25);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 700;
    backdrop-filter: blur(8px);
}
.fx-promo-card__title { font-family: var(--fx-font-display); font-size: var(--fx-fs-2xl); margin: 0; }
.fx-promo-card__desc { opacity: .92; font-size: var(--fx-fs-sm); margin: 0; line-height: 1.55; }
.fx-promo-card__meta {
    margin-top: auto;
    display: flex; align-items: center; gap: var(--fx-sp-3);
    font-size: var(--fx-fs-xs);
    opacity: .88;
}
.fx-promo-card__cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-weight: 700; color: #fff;
    text-decoration: none;
    border-bottom: 2px solid rgba(255,255,255,.6);
    align-self: flex-start;
    padding-bottom: 2px;
}
.fx-promo-card__cta:hover { border-bottom-color: #fff; }

/* ── Contact: methods & form ───────────────────────────────── */
.fx-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--fx-sp-10);
    align-items: start;
}
@media (max-width: 960px) { .fx-contact-grid { grid-template-columns: 1fr; } }
.fx-channels { display: flex; flex-direction: column; gap: var(--fx-sp-4); }
.fx-channel {
    display: flex; gap: var(--fx-sp-4); align-items: flex-start;
    padding: var(--fx-sp-5);
    background: var(--fx-card-bg);
    border: 1px solid var(--fx-card-border);
    border-radius: var(--fx-r-lg);
    text-decoration: none;
    color: inherit;
    transition: border-color .3s var(--fx-ease-out), transform .3s var(--fx-ease-out);
}
.fx-channel:hover { border-color: var(--fx-accent); transform: translateY(-2px); }
.fx-channel__icon { font-size: 26px; width: 48px; height: 48px; display: grid; place-items: center; background: rgba(16,185,129,.1); border-radius: var(--fx-r-md); flex-shrink: 0; }
.fx-channel__title { margin: 0 0 4px; color: var(--fx-text); font-size: var(--fx-fs-lg); }
.fx-channel__value { color: var(--fx-accent); font-weight: 600; font-size: var(--fx-fs-sm); }
.fx-channel__hint { color: var(--fx-text-muted); font-size: var(--fx-fs-xs); margin-top: 2px; }

.fx-form {
    background: var(--fx-card-bg);
    border: 1px solid var(--fx-card-border);
    border-radius: var(--fx-r-xl);
    padding: var(--fx-sp-7);
    display: flex; flex-direction: column; gap: var(--fx-sp-4);
}
.fx-form__row { display: flex; flex-direction: column; gap: var(--fx-sp-2); }
.fx-form label { color: var(--fx-text); font-size: var(--fx-fs-sm); font-weight: 600; }
.fx-form input,
.fx-form select,
.fx-form textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--fx-card-border);
    border-radius: var(--fx-r-md);
    color: var(--fx-text);
    font-family: inherit;
    font-size: var(--fx-fs-sm);
    outline: none;
    transition: border-color .2s var(--fx-ease-out), background .2s var(--fx-ease-out);
}
.fx-form textarea { min-height: 130px; resize: vertical; }
.fx-form input:focus,
.fx-form select:focus,
.fx-form textarea:focus { border-color: var(--fx-accent); background: rgba(16,185,129,.04); }

/* ── Blog index cards ──────────────────────────────────────── */
.fx-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--fx-sp-6);
}
.fx-blog-card {
    display: flex; flex-direction: column;
    background: var(--fx-card-bg);
    border: 1px solid var(--fx-card-border);
    border-radius: var(--fx-r-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .35s var(--fx-ease-out), border-color .35s var(--fx-ease-out);
}
.fx-blog-card:hover { transform: translateY(-4px); border-color: var(--fx-accent); }
.fx-blog-card__media { aspect-ratio: 16/9; overflow: hidden; background: #0f1627; }
.fx-blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--fx-ease-out); }
.fx-blog-card:hover .fx-blog-card__media img { transform: scale(1.05); }
.fx-blog-card__body { padding: var(--fx-sp-5); display: flex; flex-direction: column; gap: var(--fx-sp-2); flex: 1; }
.fx-blog-card__meta { color: var(--fx-text-muted); font-size: var(--fx-fs-xs); display: flex; gap: var(--fx-sp-3); }
.fx-blog-card__title { color: var(--fx-text); font-size: var(--fx-fs-lg); line-height: 1.25; margin: 0; }
.fx-blog-card__excerpt { color: var(--fx-text-muted); font-size: var(--fx-fs-sm); margin: 0; }

/* ── Section title alignment utility ──────────────────────── */
.fx-section__head--center { align-items: center; text-align: center; max-width: 720px; margin-inline: auto; }

/* ── FAQ accordion ─────────────────────────────────────────── */
.fx-faq { display: flex; flex-direction: column; gap: var(--fx-sp-3); }
.fx-faq__item {
    background: var(--fx-card-bg);
    border: 1px solid var(--fx-card-border);
    border-radius: var(--fx-r-md);
    overflow: hidden;
}
.fx-faq__q {
    width: 100%;
    padding: var(--fx-sp-4) var(--fx-sp-5);
    display: flex; justify-content: space-between; align-items: center; gap: var(--fx-sp-4);
    background: transparent;
    border: 0;
    color: var(--fx-text);
    font-size: var(--fx-fs-md);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}
.fx-faq__q::after { content: "+"; color: var(--fx-accent); font-size: 20px; transition: transform .2s ease; }
.fx-faq__item[open] .fx-faq__q::after { transform: rotate(45deg); }
.fx-faq__a { padding: 0 var(--fx-sp-5) var(--fx-sp-5); color: var(--fx-text-muted); font-size: var(--fx-fs-sm); line-height: 1.65; }

/* ==========================================================================
   Betting page redesign — v3.1
   Sections: live-strip, sports grid, bet-types, leagues
   ========================================================================== */

/* ── Live odds strip ─────────────────────────────────────── */
.fx-bet-live { padding-block: clamp(var(--fx-sp-6), 4vw, var(--fx-sp-8)); }
.fx-bet-live__head {
    display: flex; align-items: center; gap: var(--fx-sp-3);
    margin-bottom: var(--fx-sp-5);
    flex-wrap: wrap;
}
.fx-bet-live__title {
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
    font-family: var(--fx-font-display);
    margin: 0;
    color: var(--fx-text);
}
.fx-bet-live__count { color: var(--fx-text-muted); font-size: 0.8rem; margin-left: auto; }
.fx-live-pulse {
    position: relative; display: inline-block;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 0 0 rgba(239,68,68,.6);
    animation: fxLivePulse 1.6s ease-out infinite;
}
.fx-live-pulse > span { display: none; }
@keyframes fxLivePulse {
    0%   { box-shadow: 0 0 0 0 rgba(239,68,68,.55); }
    70%  { box-shadow: 0 0 0 12px rgba(239,68,68,0); }
    100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

.fx-bet-live__scroller {
    display: flex; gap: var(--fx-sp-3);
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(16px, calc((100vw - var(--fx-container-max, 1200px)) / 2));
    padding-inline: max(16px, calc((100vw - var(--fx-container-max, 1200px)) / 2));
    padding-block: 6px var(--fx-sp-2);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(16,185,129,.35) transparent;
}
.fx-bet-live__scroller::-webkit-scrollbar { height: 6px; }
.fx-bet-live__scroller::-webkit-scrollbar-thumb {
    background: rgba(16,185,129,.35); border-radius: 999px;
}

.fx-live-card {
    position: relative; flex: 0 0 auto;
    width: 260px;
    scroll-snap-align: start;
    display: flex; flex-direction: column; gap: 10px;
    padding: 12px 14px 14px;
    background: linear-gradient(180deg, rgba(16,185,129,.06) 0%, rgba(255,255,255,.02) 50%), var(--fx-card-bg);
    border: 1px solid var(--fx-card-border);
    border-radius: 14px;
    text-decoration: none; color: inherit;
    transition: transform .25s var(--fx-ease-out), border-color .25s var(--fx-ease-out);
    isolation: isolate;
    overflow: hidden;
}
.fx-live-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--fx-accent) 60%, var(--fx-card-border));
}
.fx-live-card.is-hot {
    border-color: color-mix(in srgb, #f59e0b 45%, var(--fx-card-border));
    background:
        radial-gradient(140px 80px at 100% 0%, rgba(245,158,11,.14), transparent 70%),
        linear-gradient(180deg, rgba(16,185,129,.05) 0%, rgba(255,255,255,.02) 50%),
        var(--fx-card-bg);
}
.fx-live-card__head {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.68rem; letter-spacing: .04em; text-transform: uppercase;
    color: var(--fx-text-muted);
}
.fx-live-card__sport { color: var(--fx-text); font-weight: 700; }
.fx-live-card__league { opacity: .85; }
.fx-live-card__status {
    margin-left: auto;
    display: inline-flex; align-items: center; gap: 5px;
    color: #ef4444; font-weight: 700;
    text-transform: none; letter-spacing: 0;
}
.fx-live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 0 0 rgba(239,68,68,.6);
    animation: fxLivePulse 1.6s ease-out infinite;
}
.fx-live-card__teams {
    display: flex; flex-direction: column; gap: 4px;
    border-block: 1px dashed var(--fx-card-border);
    padding-block: 8px;
}
.fx-live-card__team {
    display: flex; align-items: center; justify-content: space-between;
    gap: 8px;
    font-size: 0.88rem;
}
.fx-live-card__team strong { color: var(--fx-text); font-weight: 700; }
.fx-live-card__team span { color: var(--fx-text-muted); font-variant-numeric: tabular-nums; }
.fx-live-card__odds {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
}
.fx-live-odd {
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    padding: 7px 4px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--fx-card-border);
    border-radius: 9px;
    font-weight: 700; font-size: 0.92rem;
    color: var(--fx-text);
    font-variant-numeric: tabular-nums;
    transition: background .2s, border-color .2s;
}
.fx-live-odd em {
    font-style: normal;
    font-size: 0.6rem; font-weight: 600;
    color: var(--fx-text-muted);
    letter-spacing: .04em; text-transform: uppercase;
}
.fx-live-odd.is-mute { opacity: .4; }
.fx-live-card:hover .fx-live-odd {
    background: rgba(16,185,129,.07);
    border-color: color-mix(in srgb, var(--fx-accent) 40%, var(--fx-card-border));
}
.fx-live-card__hot {
    position: absolute; top: 10px; right: -2px;
    padding: 3px 10px 3px 8px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff; font-size: 0.6rem; font-weight: 800;
    letter-spacing: .05em; text-transform: uppercase;
    border-radius: 999px 0 0 999px;
    box-shadow: 0 4px 12px -4px rgba(239,68,68,.4);
}

/* ── Sports grid (new, replaces .fx-sportsbook) ─────────── */
.fx-bet-sports-sec { padding-block: clamp(var(--fx-sp-8), 6vw, var(--fx-sp-12)); }

.fx-bet-sports {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--fx-sp-4);
}
@media (max-width: 1200px) { .fx-bet-sports { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 860px)  { .fx-bet-sports { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } }

.fx-bet-sport {
    position: relative;
    display: flex; flex-direction: column;
    background: var(--fx-card-bg);
    border: 1px solid var(--fx-card-border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none; color: inherit;
    transition: transform .3s var(--fx-ease-out), border-color .3s var(--fx-ease-out), box-shadow .3s var(--fx-ease-out);
    isolation: isolate;
}
.fx-bet-sport:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--fx-accent) 50%, var(--fx-card-border));
    box-shadow: 0 14px 30px -18px rgba(16,185,129,.35);
}
.fx-bet-sport.is-hot {
    border-color: color-mix(in srgb, #f59e0b 40%, var(--fx-card-border));
}
.fx-bet-sport__media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.fx-bet-sport__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: .55;
    transition: transform .6s var(--fx-ease-out), opacity .3s var(--fx-ease-out);
}
.fx-bet-sport:hover .fx-bet-sport__bg { transform: scale(1.08); opacity: .78; }
.fx-bet-sport__media::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(4,6,13,.25) 0%, rgba(4,6,13,.88) 90%);
}
.fx-bet-sport__icon {
    position: absolute; left: 10px; top: 10px;
    font-size: 1.35rem;
    width: 36px; height: 36px;
    display: grid; place-items: center;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    z-index: 1;
}
.fx-bet-sport__live {
    position: absolute; right: 10px; top: 10px;
    display: inline-flex; align-items: center; gap: 5px;
    padding: 4px 9px;
    background: rgba(239,68,68,.18);
    border: 1px solid rgba(239,68,68,.38);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    font-size: 0.62rem; font-weight: 700; color: #fecaca;
    letter-spacing: .04em; text-transform: uppercase;
    z-index: 1;
}
.fx-bet-sport__body {
    padding: 12px 14px 14px;
    display: flex; flex-direction: column; gap: 6px;
}
.fx-bet-sport__row {
    display: flex; align-items: baseline; justify-content: space-between; gap: 8px;
}
.fx-bet-sport__name {
    margin: 0;
    font-size: 1rem;
    font-family: var(--fx-font-display);
    color: var(--fx-text);
    line-height: 1.15;
}
.fx-bet-sport__markets {
    color: var(--fx-accent);
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: .03em;
    white-space: nowrap;
}
.fx-bet-sport__hot {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 8px;
    background: linear-gradient(135deg, rgba(245,158,11,.18), rgba(239,68,68,.12));
    border: 1px solid rgba(245,158,11,.3);
    border-radius: 999px;
    font-size: 0.62rem; font-weight: 700;
    color: #fcd34d;
    align-self: flex-start;
}
.fx-bet-sport__tags {
    display: flex; flex-wrap: wrap; gap: 4px;
    margin-top: 2px;
}
.fx-bet-sport__tag {
    padding: 3px 8px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--fx-card-border);
    border-radius: 999px;
    font-size: 0.62rem;
    color: var(--fx-text-muted);
}

/* ── Bet types showcase ──────────────────────────────────── */
.fx-bet-types-sec { padding-block: clamp(var(--fx-sp-8), 6vw, var(--fx-sp-12)); }

.fx-bet-types {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--fx-sp-4);
}
@media (max-width: 1024px) { .fx-bet-types { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px)  { .fx-bet-types { grid-template-columns: 1fr; gap: 12px; } }

.fx-bet-type {
    --bt-accent: var(--fx-accent);
    --bt-accent-2: var(--fx-accent);
    position: relative;
    padding: var(--fx-sp-5);
    background:
        radial-gradient(300px 160px at 100% 0%, color-mix(in srgb, var(--bt-accent) 12%, transparent), transparent 70%),
        var(--fx-card-bg);
    border: 1px solid var(--fx-card-border);
    border-radius: 16px;
    display: flex; flex-direction: column; gap: 10px;
    transition: transform .3s var(--fx-ease-out), border-color .3s var(--fx-ease-out);
    isolation: isolate;
    overflow: hidden;
}
.fx-bet-type:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--bt-accent) 55%, var(--fx-card-border));
}
.fx-bet-type::before {
    content: "";
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--bt-accent) 0%, var(--bt-accent-2) 100%);
    opacity: .65;
}
.fx-bet-type--green  { --bt-accent: #10b981; --bt-accent-2: #059669; }
.fx-bet-type--gold   { --bt-accent: #f59e0b; --bt-accent-2: #d97706; }
.fx-bet-type--violet { --bt-accent: #8b5cf6; --bt-accent-2: #6d28d9; }
.fx-bet-type--red    { --bt-accent: #ef4444; --bt-accent-2: #b91c1c; }
.fx-bet-type--blue   { --bt-accent: #3b82f6; --bt-accent-2: #1d4ed8; }
.fx-bet-type__icon {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    background: color-mix(in srgb, var(--bt-accent) 14%, transparent);
    border: 1px solid color-mix(in srgb, var(--bt-accent) 30%, transparent);
    border-radius: 12px;
    font-size: 22px;
}
.fx-bet-type__title {
    margin: 0;
    color: var(--fx-text);
    font-size: 1.1rem;
    font-family: var(--fx-font-display);
}
.fx-bet-type__desc {
    margin: 0;
    color: var(--fx-text-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}
.fx-bet-type__ex {
    margin-top: auto;
    padding: 8px 12px;
    background: color-mix(in srgb, var(--bt-accent) 8%, rgba(255,255,255,.02));
    border: 1px dashed color-mix(in srgb, var(--bt-accent) 35%, var(--fx-card-border));
    border-radius: 10px;
    font-size: 0.82rem; font-weight: 600;
    color: var(--fx-text);
    display: flex; flex-direction: column; gap: 2px;
}
.fx-bet-type__ex span {
    font-size: 0.58rem; font-weight: 700;
    color: color-mix(in srgb, var(--bt-accent) 80%, var(--fx-text-muted));
    letter-spacing: .1em; text-transform: uppercase;
}

/* ── Popular leagues ─────────────────────────────────────── */
.fx-bet-leagues-sec { padding-block: clamp(var(--fx-sp-8), 6vw, var(--fx-sp-12)); }

.fx-bet-leagues {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--fx-sp-5);
}
@media (max-width: 960px) { .fx-bet-leagues { grid-template-columns: 1fr; gap: var(--fx-sp-4); } }

.fx-bet-lg {
    background: var(--fx-card-bg);
    border: 1px solid var(--fx-card-border);
    border-radius: 16px;
    padding: var(--fx-sp-5);
    display: flex; flex-direction: column; gap: 14px;
}
.fx-bet-lg__head { display: flex; align-items: center; gap: 10px; }
.fx-bet-lg__icon {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    background: rgba(16,185,129,.12);
    border: 1px solid rgba(16,185,129,.25);
    border-radius: 10px;
    font-size: 20px;
}
.fx-bet-lg__sport {
    margin: 0;
    color: var(--fx-text);
    font-size: 1.1rem;
    font-family: var(--fx-font-display);
}
.fx-bet-lg__items {
    list-style: none;
    margin: 0; padding: 0;
    display: flex; flex-direction: column;
    gap: 6px;
}
.fx-bet-lg__item a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    background: rgba(255,255,255,.02);
    border: 1px solid var(--fx-card-border);
    border-radius: 10px;
    text-decoration: none;
    transition: background .2s, border-color .2s, transform .2s;
}
.fx-bet-lg__item a:hover {
    background: rgba(16,185,129,.06);
    border-color: color-mix(in srgb, var(--fx-accent) 40%, var(--fx-card-border));
    transform: translateX(2px);
}
.fx-bet-lg__t {
    color: var(--fx-text); font-weight: 600;
    font-size: 0.92rem;
    flex: 1;
}
.fx-bet-lg__d {
    color: var(--fx-text-muted);
    font-size: 0.72rem;
}
.fx-bet-lg__tag {
    padding: 2px 8px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff; font-size: 0.58rem; font-weight: 800;
    letter-spacing: .08em; text-transform: uppercase;
    border-radius: 999px;
}

/* ── Mobile tuning (≤700px) ──────────────────────────────── */
@media (max-width: 700px) {
    .fx-bet-live__head {
        flex-wrap: wrap;
        gap: 8px;
    }
    .fx-bet-live__title { order: 1; }
    .fx-bet-live__nav   { order: 2; margin-left: auto; }
    .fx-bet-live__count {
        order: 3;
        margin-left: 0;
        width: 100%;
        font-size: 0.72rem;
    }
    .fx-live-card { width: 230px; padding: 11px 12px 12px; }
    .fx-live-card__team { font-size: 0.82rem; }
    .fx-live-odd { font-size: 0.85rem; padding: 6px 3px; }

    .fx-bet-sports { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 10px; }
    .fx-bet-sport__media { aspect-ratio: 16/10; }
    .fx-bet-sport__body { padding: 10px 11px 12px; gap: 5px; }
    .fx-bet-sport__name { font-size: 0.9rem; }
    .fx-bet-sport__markets { font-size: 0.62rem; }
    .fx-bet-sport__icon { font-size: 1.1rem; width: 30px; height: 30px; left: 8px; top: 8px; border-radius: 8px; }
    .fx-bet-sport__live { font-size: 0.56rem; padding: 3px 7px; right: 8px; top: 8px; }
    .fx-bet-sport__hot  { font-size: 0.56rem; padding: 2px 7px; }
    .fx-bet-sport__tag  { font-size: 0.56rem; padding: 2px 7px; }

    .fx-bet-type { padding: var(--fx-sp-4); }
    .fx-bet-type__icon { width: 38px; height: 38px; font-size: 18px; }
    .fx-bet-type__title { font-size: 1rem; }
    .fx-bet-type__desc  { font-size: 0.82rem; }
    .fx-bet-type__ex    { font-size: 0.78rem; padding: 7px 10px; }

    .fx-bet-lg { padding: var(--fx-sp-4); }
    .fx-bet-lg__icon { width: 34px; height: 34px; font-size: 17px; }
    .fx-bet-lg__sport { font-size: 1rem; }
    .fx-bet-lg__item a { padding: 9px 11px; }
    .fx-bet-lg__t { font-size: 0.86rem; }
    .fx-bet-lg__d { font-size: 0.68rem; }
}

/* ── Small mobile (≤420px) — single-col safety ───────────── */
@media (max-width: 420px) {
    .fx-bet-live__title { font-size: 1rem; }
    .fx-live-card { width: 216px; }
    .fx-bet-sport__name { font-size: 0.86rem; }
}

/* ==========================================================================
   Betting verticals — casino, slots, crash, virtual, lottery, poker, etc.
   ========================================================================== */
.fx-bet-verticals-sec { padding-block: clamp(var(--fx-sp-8), 6vw, var(--fx-sp-12)); }

/* Stats row */
.fx-bet-vstats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--fx-sp-3);
    padding: var(--fx-sp-5) var(--fx-sp-6);
    margin: var(--fx-sp-6) 0 var(--fx-sp-7);
    background:
        radial-gradient(400px 160px at 0% 0%, rgba(16,185,129,.12), transparent 70%),
        radial-gradient(400px 160px at 100% 100%, rgba(245,158,11,.10), transparent 70%),
        var(--fx-card-bg);
    border: 1px solid var(--fx-card-border);
    border-radius: 18px;
}
.fx-bet-vstat { display: flex; flex-direction: column; gap: 2px; }
.fx-bet-vstat__n {
    font-family: var(--fx-font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1;
    background-image: linear-gradient(135deg, var(--fx-accent, #10b981), var(--fx-gold, #f59e0b));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 800;
}
.fx-bet-vstat__l {
    font-size: 0.72rem;
    color: var(--fx-text-muted);
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* Verticals grid */
.fx-bet-verticals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--fx-sp-4);
}
@media (max-width: 760px) {
    .fx-bet-verticals { grid-template-columns: 1fr; gap: 12px; }
}

.fx-bet-vert {
    --v-accent: #10b981;
    --v-accent-2: #059669;
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--fx-sp-4);
    align-items: flex-start;
    padding: var(--fx-sp-5);
    background:
        linear-gradient(135deg,
            color-mix(in srgb, var(--v-accent) 12%, transparent) 0%,
            color-mix(in srgb, var(--v-accent-2) 6%, transparent) 60%,
            transparent 100%),
        var(--fx-card-bg);
    border: 1px solid color-mix(in srgb, var(--v-accent) 20%, var(--fx-card-border));
    border-radius: 18px;
    text-decoration: none; color: inherit;
    transition: transform .3s var(--fx-ease-out), border-color .3s var(--fx-ease-out), box-shadow .3s var(--fx-ease-out);
    isolation: isolate;
    overflow: hidden;
}
.fx-bet-vert:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--v-accent) 55%, var(--fx-card-border));
    box-shadow: 0 18px 40px -22px color-mix(in srgb, var(--v-accent) 60%, #000);
}
.fx-bet-vert__glow {
    position: absolute;
    inset: auto -40% -60% auto;
    width: 200px; height: 200px;
    background: radial-gradient(circle, color-mix(in srgb, var(--v-accent-2) 20%, transparent) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.fx-bet-vert__icon {
    position: relative;
    z-index: 1;
    width: 52px; height: 52px;
    display: grid; place-items: center;
    font-size: 26px;
    background: color-mix(in srgb, var(--v-accent) 18%, rgba(0,0,0,.35));
    border: 1px solid color-mix(in srgb, var(--v-accent) 40%, transparent);
    border-radius: 14px;
    box-shadow: 0 6px 18px -8px color-mix(in srgb, var(--v-accent) 70%, #000);
    flex-shrink: 0;
}
.fx-bet-vert__body {
    position: relative;
    z-index: 1;
    display: flex; flex-direction: column; gap: 6px;
    min-width: 0;
}
.fx-bet-vert__row {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 8px; flex-wrap: wrap;
}
.fx-bet-vert__title {
    margin: 0;
    font-family: var(--fx-font-display);
    font-size: 1.15rem;
    color: var(--fx-text);
    line-height: 1.15;
}
.fx-bet-vert__meta {
    font-size: 0.68rem;
    font-weight: 700;
    color: color-mix(in srgb, var(--v-accent) 85%, var(--fx-text));
    letter-spacing: .04em;
    white-space: nowrap;
}
.fx-bet-vert__desc {
    margin: 0;
    color: var(--fx-text-muted);
    font-size: 0.86rem;
    line-height: 1.55;
}
.fx-bet-vert__tags {
    display: flex; flex-wrap: wrap; gap: 4px;
    margin-top: 4px;
}
.fx-bet-vert__tag {
    padding: 3px 9px;
    background: rgba(255,255,255,.04);
    border: 1px solid color-mix(in srgb, var(--v-accent) 20%, var(--fx-card-border));
    border-radius: 999px;
    font-size: 0.65rem;
    color: var(--fx-text-muted);
}
.fx-bet-vert__arrow {
    position: relative;
    z-index: 1;
    width: 28px; height: 28px;
    display: grid; place-items: center;
    color: color-mix(in srgb, var(--v-accent) 80%, var(--fx-text-muted));
    transition: transform .3s var(--fx-ease-out), color .3s var(--fx-ease-out);
    align-self: center;
}
.fx-bet-vert__arrow svg { width: 14px; height: 14px; }
.fx-bet-vert:hover .fx-bet-vert__arrow {
    transform: translateX(3px);
    color: var(--v-accent);
}

/* Tone variants */
.fx-bet-vert--gold   { --v-accent: #f59e0b; --v-accent-2: #d97706; }
.fx-bet-vert--red    { --v-accent: #ef4444; --v-accent-2: #b91c1c; }
.fx-bet-vert--violet { --v-accent: #8b5cf6; --v-accent-2: #6d28d9; }
.fx-bet-vert--green  { --v-accent: #10b981; --v-accent-2: #059669; }
.fx-bet-vert--blue   { --v-accent: #3b82f6; --v-accent-2: #1d4ed8; }
.fx-bet-vert--dark   { --v-accent: #6b7280; --v-accent-2: #1f2937; }

/* Mobile tune */
@media (max-width: 700px) {
    .fx-bet-vstats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: var(--fx-sp-4) var(--fx-sp-4);
        margin: var(--fx-sp-5) 0 var(--fx-sp-5);
    }
    .fx-bet-vstat__n { font-size: 1.35rem; }
    .fx-bet-vstat__l { font-size: 0.64rem; }

    .fx-bet-vert { padding: 14px; gap: 12px; grid-template-columns: auto 1fr; }
    .fx-bet-vert__arrow { display: none; }
    .fx-bet-vert__icon { width: 44px; height: 44px; font-size: 22px; border-radius: 12px; }
    .fx-bet-vert__title { font-size: 1rem; }
    .fx-bet-vert__desc  { font-size: 0.8rem; }
    .fx-bet-vert__meta  { font-size: 0.62rem; }
    .fx-bet-vert__tag   { font-size: 0.58rem; padding: 2px 7px; }
}

/* ==========================================================================
   Betting page v3.2 — Modern neon palette overlay
   Scope: body.fx-betting only. Leaves global tokens untouched.
   Palette: cyan #06b6d4 · violet #a855f7 · pink #ec4899 · amber #fbbf24
   ========================================================================== */
body.fx-betting {
    --b-cyan:    #06e0ff;
    --b-cyan-2:  #0891b2;
    --b-violet:  #a855f7;
    --b-violet-2:#6d28d9;
    --b-pink:    #ec4899;
    --b-pink-2:  #db2777;
    --b-amber:   #fbbf24;
    --b-amber-2: #f59e0b;
    --b-mint:    #34d399;
    --b-ink:     #04070f;
    --b-card:    rgba(14, 20, 36, 0.55);
    --b-card-strong: rgba(14, 20, 36, 0.78);
    --b-stroke:  rgba(168, 85, 247, 0.18);
    --b-stroke-h:rgba(6, 224, 255, 0.45);
    --b-glow-cy: 0 0 48px -14px rgba(6,224,255,.55);
    --b-glow-pk: 0 0 48px -14px rgba(236,72,153,.55);
    --b-glow-vi: 0 0 48px -14px rgba(168,85,247,.55);
    background: var(--b-ink);
}

/* Global background — soft mesh behind the whole page.
   isolation: isolate traps the fixed ::before mesh inside .fx-main's own
   stacking context so it can't escape and cover wp_footer widgets like
   .fsw-trigger-icon (injected as a direct child of <body>). */
body.fx-betting .fx-main {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(700px 420px at 8% 0%,   rgba(6,224,255,.09), transparent 60%),
        radial-gradient(780px 460px at 96% 18%, rgba(236,72,153,.08), transparent 60%),
        radial-gradient(900px 500px at 50% 68%, rgba(168,85,247,.07), transparent 65%),
        var(--b-ink);
}
body.fx-betting .fx-main::before {
    content: "";
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(168,85,247,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6,224,255,.05) 1px, transparent 1px);
    background-size: 48px 48px, 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
    opacity: .5;
}
body.fx-betting .fx-main > * { position: relative; z-index: 1; }

/* ── Hero — cyber mesh + duotone title ─────────────────── */
body.fx-betting .fx-page-hero {
    background:
        radial-gradient(1200px 500px at 10% 10%, rgba(6,224,255,.14), transparent 60%),
        radial-gradient(900px 400px at 90% 90%, rgba(236,72,153,.13), transparent 60%),
        radial-gradient(700px 400px at 50% 50%, rgba(168,85,247,.09), transparent 65%);
}
body.fx-betting .fx-page-hero__orbs .fx-orb--a {
    background: radial-gradient(circle, var(--b-cyan) 0%, transparent 60%);
    opacity: .35;
}
body.fx-betting .fx-page-hero__orbs .fx-orb--b {
    background: radial-gradient(circle, var(--b-pink) 0%, transparent 60%);
    opacity: .30;
}
body.fx-betting .fx-page-hero__title em {
    background-image: linear-gradient(90deg, var(--b-cyan) 0%, var(--b-violet) 50%, var(--b-pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.fx-betting .fx-eyebrow {
    color: var(--b-cyan);
    letter-spacing: .18em;
}

/* ── Section titles — duotone accent ─────────────────── */
body.fx-betting .fx-section__title {
    background-image: linear-gradient(180deg, #fff 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Live strip — electric cyan ─────────────────────────── */
body.fx-betting .fx-bet-live__title {
    background-image: linear-gradient(90deg, var(--b-cyan), #fff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.fx-betting .fx-live-pulse { background: var(--b-pink); box-shadow: 0 0 0 0 rgba(236,72,153,.6); }

body.fx-betting .fx-live-card {
    background: linear-gradient(180deg, rgba(6,224,255,.06) 0%, var(--b-card) 60%);
    border: 1px solid var(--b-stroke);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
}
body.fx-betting .fx-live-card:hover {
    border-color: var(--b-stroke-h);
    box-shadow: var(--b-glow-cy);
}
body.fx-betting .fx-live-card.is-hot {
    border-color: rgba(236,72,153,.4);
    background:
        radial-gradient(160px 90px at 100% 0%, rgba(236,72,153,.18), transparent 70%),
        linear-gradient(180deg, rgba(168,85,247,.05) 0%, var(--b-card) 60%);
}
body.fx-betting .fx-live-card__hot {
    background: linear-gradient(135deg, var(--b-pink), var(--b-violet));
    box-shadow: 0 4px 16px -4px rgba(236,72,153,.45);
}
body.fx-betting .fx-live-card:hover .fx-live-odd {
    background: rgba(6,224,255,.1);
    border-color: rgba(6,224,255,.35);
    color: var(--b-cyan);
}
body.fx-betting .fx-live-card__status { color: var(--b-pink); }
body.fx-betting .fx-live-dot {
    background: var(--b-pink);
    box-shadow: 0 0 0 0 rgba(236,72,153,.55);
}

/* ── Premium live scroller — edge-fade mask + glow rail ────
   Uses mask-image on the scroller itself so nothing sits on top
   of the card row to intercept touch/swipe. */
body.fx-betting .fx-bet-live__scroller {
    scroll-behavior: smooth;
    padding-block: 14px 16px;
    touch-action: pan-x;
    -webkit-mask-image: linear-gradient(90deg,
        transparent 0,
        #000 48px,
        #000 calc(100% - 48px),
        transparent 100%);
            mask-image: linear-gradient(90deg,
        transparent 0,
        #000 48px,
        #000 calc(100% - 48px),
        transparent 100%);
}
body.fx-betting .fx-bet-live__scroller::-webkit-scrollbar {
    height: 8px;
    background: transparent;
}
body.fx-betting .fx-bet-live__scroller::-webkit-scrollbar-track {
    background: linear-gradient(90deg,
        rgba(6,224,255,0.08) 0%,
        rgba(168,85,247,0.1) 50%,
        rgba(236,72,153,0.08) 100%);
    border-radius: 999px;
    margin-inline: 16px;
}
body.fx-betting .fx-bet-live__scroller::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--b-cyan) 0%, var(--b-violet) 50%, var(--b-pink) 100%);
    border-radius: 999px;
    box-shadow:
        0 0 16px rgba(6, 224, 255, 0.55),
        0 0 8px rgba(236, 72, 153, 0.45);
}
body.fx-betting .fx-bet-live__scroller::-webkit-scrollbar-thumb:hover {
    box-shadow:
        0 0 22px rgba(6, 224, 255, 0.9),
        0 0 14px rgba(236, 72, 153, 0.7);
}

/* Card — lift, refresh meter on top, diagonal shine sweep */
body.fx-betting .fx-live-card {
    width: 278px;
    padding: 16px 14px 14px;
    border-radius: 18px;
    transition:
        transform .35s cubic-bezier(0.34,1.56,0.64,1),
        border-color .3s ease,
        box-shadow .3s ease;
    animation: fxLiveCardIn .7s cubic-bezier(0.34,1.56,0.64,1) both;
    animation-delay: var(--fx-lc-delay, 0s);
}
@keyframes fxLiveCardIn {
    from { opacity: 0; transform: translateY(18px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
body.fx-betting .fx-live-card:hover {
    transform: translateY(-6px) scale(1.015);
    border-color: rgba(6, 224, 255, 0.55);
    box-shadow:
        0 16px 40px -12px rgba(6, 224, 255, 0.5),
        0 0 0 1px rgba(6, 224, 255, 0.25);
}
body.fx-betting .fx-live-card.is-hot:hover {
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow:
        0 16px 40px -12px rgba(236, 72, 153, 0.55),
        0 0 0 1px rgba(236, 72, 153, 0.3);
}

/* Top refresh meter — ticks 0 → 100% every 2s (matches "odds refresh every 2s" promise) */
body.fx-betting .fx-live-card__meter {
    position: absolute;
    top: 0; left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--b-cyan) 0%, var(--b-pink) 100%);
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 8px rgba(6, 224, 255, 0.7);
    animation: fxLiveMeter 2s linear infinite;
    z-index: 2;
    pointer-events: none;
}
body.fx-betting .fx-live-card.is-hot .fx-live-card__meter {
    background: linear-gradient(90deg, var(--b-pink) 0%, var(--b-amber) 100%);
    box-shadow: 0 0 8px rgba(236, 72, 153, 0.7);
}
@keyframes fxLiveMeter {
    0%   { width: 0; opacity: 1; }
    90%  { width: 100%; opacity: 1; }
    100% { width: 100%; opacity: 0; }
}

/* Diagonal shine — sweeps across card on hover */
body.fx-betting .fx-live-card__shine {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(110deg,
        transparent 30%,
        rgba(255, 255, 255, 0.08) 50%,
        transparent 70%);
    transform: translateX(-100%);
    pointer-events: none;
    z-index: 1;
    transition: transform .9s cubic-bezier(0.22, 0.61, 0.36, 1);
}
body.fx-betting .fx-live-card:hover .fx-live-card__shine {
    transform: translateX(100%);
}

/* Lift card contents above shine layer */
body.fx-betting .fx-live-card > *:not(.fx-live-card__shine):not(.fx-live-card__meter) {
    position: relative;
    z-index: 2;
}

/* Odds tiles — upgraded surface, hover lift */
body.fx-betting .fx-live-odd {
    background: linear-gradient(180deg, rgba(6,224,255,0.04), rgba(14,20,36,0.6));
    border: 1px solid rgba(6, 224, 255, 0.18);
    border-radius: 11px;
    padding: 9px 4px;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
body.fx-betting .fx-live-odd em {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2px;
}
body.fx-betting .fx-live-odd:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, rgba(6,224,255,0.18), rgba(6,224,255,0.05));
    border-color: var(--b-cyan);
    color: var(--b-cyan);
    box-shadow: 0 6px 18px -8px rgba(6, 224, 255, 0.6);
}

/* Team row — better hierarchy */
body.fx-betting .fx-live-card__teams {
    border-block: 1px solid rgba(168, 85, 247, 0.14);
    padding-block: 10px;
}
body.fx-betting .fx-live-card__team strong {
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.3px;
}
body.fx-betting .fx-live-card__team span {
    color: var(--b-cyan);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

/* Sport tag pill */
body.fx-betting .fx-live-card__sport {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(6, 224, 255, 0.12);
    border: 1px solid rgba(6, 224, 255, 0.3);
    border-radius: 999px;
    color: var(--b-cyan);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}
body.fx-betting .fx-live-card.is-hot .fx-live-card__sport {
    background: rgba(236, 72, 153, 0.14);
    border-color: rgba(236, 72, 153, 0.38);
    color: var(--b-pink);
}

/* Swipe hint — animated chevrons below scroller */
body.fx-betting .fx-bet-live__hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}
body.fx-betting .fx-bet-live__hint-arrow {
    font-size: 1.2rem;
    color: var(--b-cyan);
    animation: fxLiveHintPulse 1.8s ease-in-out infinite;
}
body.fx-betting .fx-bet-live__hint-arrow--l { animation-delay: 0s; }
body.fx-betting .fx-bet-live__hint-arrow--r { animation-delay: 0.9s; color: var(--b-pink); }
@keyframes fxLiveHintPulse {
    0%, 100% { opacity: 0.35; transform: translateX(0); }
    50%      { opacity: 1;    transform: translateX(4px); }
}
body.fx-betting .fx-bet-live__hint-arrow--l { animation-name: fxLiveHintPulseL; }
@keyframes fxLiveHintPulseL {
    0%, 100% { opacity: 0.35; transform: translateX(0); }
    50%      { opacity: 1;    transform: translateX(-4px); }
}

/* Header nav arrows — prev / next scrolls the live list one card at a time */
body.fx-betting .fx-bet-live__nav {
    display: inline-flex;
    gap: 6px;
    margin-left: 10px;
}
body.fx-betting .fx-bet-live__nav-btn {
    width: 36px; height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 999px;
    color: var(--b-cyan);
    background: linear-gradient(135deg, rgba(6,224,255,0.12), rgba(168,85,247,0.08));
    border: 1px solid rgba(6, 224, 255, 0.35);
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, opacity .2s ease;
    -webkit-tap-highlight-color: transparent;
}
body.fx-betting .fx-bet-live__nav-btn svg {
    width: 16px; height: 16px;
    display: block;
}
body.fx-betting .fx-bet-live__nav-btn:hover {
    border-color: var(--b-cyan);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px -8px rgba(6, 224, 255, 0.7);
}
body.fx-betting .fx-bet-live__nav-btn:active {
    transform: translateY(0) scale(0.94);
}
body.fx-betting .fx-bet-live__nav-btn:focus-visible {
    outline: 2px solid var(--b-cyan);
    outline-offset: 2px;
}
body.fx-betting .fx-bet-live__nav-btn[disabled] {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Mobile tuning */
@media (max-width: 620px) {
    body.fx-betting .fx-bet-live__nav-btn { width: 32px; height: 32px; }
    body.fx-betting .fx-bet-live__nav-btn svg { width: 14px; height: 14px; }
    body.fx-betting .fx-live-card { width: 244px; padding: 14px 12px 12px; border-radius: 14px; }
    body.fx-betting .fx-bet-live__scroller {
        -webkit-mask-image: linear-gradient(90deg,
            transparent 0,
            #000 24px,
            #000 calc(100% - 24px),
            transparent 100%);
                mask-image: linear-gradient(90deg,
            transparent 0,
            #000 24px,
            #000 calc(100% - 24px),
            transparent 100%);
    }
    body.fx-betting .fx-bet-live__hint { font-size: 0.64rem; gap: 8px; }
    body.fx-betting .fx-bet-live__hint-arrow { font-size: 1rem; }
}

/* Reduced motion — kill meter + shine + entry animations */
@media (prefers-reduced-motion: reduce) {
    body.fx-betting .fx-live-card,
    body.fx-betting .fx-live-card__meter,
    body.fx-betting .fx-bet-live__hint-arrow {
        animation: none !important;
    }
    body.fx-betting .fx-live-card__shine { display: none; }
}

/* ── Sports grid — glass cards + cyan hover ─────────── */
body.fx-betting .fx-bet-sport {
    background: var(--b-card);
    border: 1px solid var(--b-stroke);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}
body.fx-betting .fx-bet-sport:hover {
    border-color: var(--b-stroke-h);
    box-shadow: var(--b-glow-cy);
}
body.fx-betting .fx-bet-sport.is-hot {
    border-color: rgba(251,191,36,.38);
}
body.fx-betting .fx-bet-sport__markets { color: var(--b-cyan); }
body.fx-betting .fx-bet-sport__live {
    background: rgba(236,72,153,.2);
    border-color: rgba(236,72,153,.42);
    color: #fbcfe8;
}
body.fx-betting .fx-bet-sport__hot {
    background: linear-gradient(135deg, rgba(251,191,36,.22), rgba(236,72,153,.18));
    border-color: rgba(251,191,36,.4);
    color: #fde68a;
}
body.fx-betting .fx-bet-sport__media::after {
    background: linear-gradient(180deg, rgba(4,7,15,.15) 0%, rgba(4,7,15,.92) 92%);
}

/* ── Verticals — override palette toward neon ───────── */
body.fx-betting .fx-bet-vstats {
    background:
        radial-gradient(400px 160px at 0% 0%, rgba(6,224,255,.14), transparent 70%),
        radial-gradient(400px 160px at 100% 100%, rgba(236,72,153,.13), transparent 70%),
        var(--b-card-strong);
    border: 1px solid var(--b-stroke);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}
body.fx-betting .fx-bet-vstat__n {
    background-image: linear-gradient(135deg, var(--b-cyan), var(--b-pink));
}

body.fx-betting .fx-bet-vert {
    background:
        linear-gradient(135deg,
            color-mix(in srgb, var(--v-accent) 14%, transparent) 0%,
            color-mix(in srgb, var(--v-accent-2) 7%, transparent) 60%,
            transparent 100%),
        var(--b-card);
    border: 1px solid color-mix(in srgb, var(--v-accent) 22%, var(--b-stroke));
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}
body.fx-betting .fx-bet-vert:hover {
    box-shadow: 0 18px 40px -22px color-mix(in srgb, var(--v-accent) 70%, #000);
}
/* Remap vertical tones to modern palette */
body.fx-betting .fx-bet-vert--gold   { --v-accent: #fbbf24; --v-accent-2: #f59e0b; }
body.fx-betting .fx-bet-vert--red    { --v-accent: #ec4899; --v-accent-2: #db2777; }
body.fx-betting .fx-bet-vert--violet { --v-accent: #a855f7; --v-accent-2: #7c3aed; }
body.fx-betting .fx-bet-vert--green  { --v-accent: #06e0ff; --v-accent-2: #0891b2; }
body.fx-betting .fx-bet-vert--blue   { --v-accent: #60a5fa; --v-accent-2: #2563eb; }
body.fx-betting .fx-bet-vert--dark   { --v-accent: #94a3b8; --v-accent-2: #334155; }

/* ── Bet types — remap palette to neon ─────────────── */
body.fx-betting .fx-bet-type {
    background:
        radial-gradient(300px 160px at 100% 0%, color-mix(in srgb, var(--bt-accent) 14%, transparent), transparent 70%),
        var(--b-card);
    border: 1px solid color-mix(in srgb, var(--bt-accent) 22%, var(--b-stroke));
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
}
body.fx-betting .fx-bet-type:hover {
    border-color: color-mix(in srgb, var(--bt-accent) 65%, var(--b-stroke));
    box-shadow: 0 16px 36px -18px color-mix(in srgb, var(--bt-accent) 65%, #000);
}
body.fx-betting .fx-bet-type--green  { --bt-accent: #06e0ff; --bt-accent-2: #0891b2; }
body.fx-betting .fx-bet-type--gold   { --bt-accent: #fbbf24; --bt-accent-2: #f59e0b; }
body.fx-betting .fx-bet-type--violet { --bt-accent: #a855f7; --bt-accent-2: #7c3aed; }
body.fx-betting .fx-bet-type--red    { --bt-accent: #ec4899; --bt-accent-2: #db2777; }
body.fx-betting .fx-bet-type--blue   { --bt-accent: #60a5fa; --bt-accent-2: #2563eb; }

/* ── Leagues — glass cards + cyan icons ────────────── */
body.fx-betting .fx-bet-lg {
    background: var(--b-card);
    border: 1px solid var(--b-stroke);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}
body.fx-betting .fx-bet-lg__icon {
    background: linear-gradient(135deg, rgba(6,224,255,.16), rgba(168,85,247,.14));
    border: 1px solid rgba(6,224,255,.28);
}
body.fx-betting .fx-bet-lg__item a:hover {
    background: rgba(6,224,255,.06);
    border-color: rgba(6,224,255,.35);
}
body.fx-betting .fx-bet-lg__tag {
    background: linear-gradient(135deg, var(--b-pink), var(--b-violet));
}

/* ── How it works + Edge cards (legacy .fx-feat) ────── */
body.fx-betting .fx-feat__card {
    background: var(--b-card);
    border: 1px solid var(--b-stroke);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
}
body.fx-betting .fx-feat__card:hover {
    border-color: var(--b-stroke-h);
    box-shadow: var(--b-glow-cy);
}
body.fx-betting .fx-feat__icon {
    background: linear-gradient(135deg, rgba(6,224,255,.18), rgba(168,85,247,.14));
    border: 1px solid rgba(6,224,255,.3);
    color: var(--b-cyan);
}

/* ── FAQ — glass items + accent on open ────────────── */
body.fx-betting .fx-faq__item {
    background: var(--b-card);
    border: 1px solid var(--b-stroke);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    transition: border-color .2s ease, background .2s ease;
}
body.fx-betting .fx-faq__item[open] {
    border-color: rgba(6,224,255,.4);
    background: linear-gradient(180deg, rgba(6,224,255,.06), var(--b-card));
}
body.fx-betting .fx-faq__q::after { color: var(--b-cyan); }

/* ── CTA band hint ─────────────────────────────────── */
body.fx-betting .fx-cta-band {
    background:
        radial-gradient(600px 280px at 0% 50%, rgba(6,224,255,.12), transparent 70%),
        radial-gradient(600px 280px at 100% 50%, rgba(236,72,153,.1), transparent 70%),
        var(--b-card);
    border: 1px solid var(--b-stroke);
}

/* ── Hero animated decoration (right side) ─────────────
   Anchored inside .fx-page-hero (which has overflow:hidden + isolation).
   pointer-events:none everywhere so clicks pass through. */
body.fx-betting .fx-page-hero { position: relative; }
body.fx-betting .fx-page-hero__inner { position: relative; z-index: 2; }

.fx-bet-herofx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.fx-bet-herofx > * { position: absolute; }

/* Concentric pulsing rings — top right anchor */
.fx-bet-herofx__ring {
    top: 4%;
    right: 4%;
    border-radius: 50%;
    border: 1px solid;
    transform-origin: center;
    animation: fxBetRing 4.8s ease-out infinite;
}
.fx-bet-herofx__ring--1 {
    width: 160px; height: 160px;
    border-color: rgba(6, 224, 255, 0.55);
    box-shadow: 0 0 22px rgba(6, 224, 255, 0.35) inset, 0 0 26px rgba(6, 224, 255, 0.25);
    animation-delay: 0s;
}
.fx-bet-herofx__ring--2 {
    width: 240px; height: 240px;
    margin-top: -40px; margin-right: -40px;
    border-color: rgba(168, 85, 247, 0.42);
    animation-delay: 1.2s;
}
.fx-bet-herofx__ring--3 {
    width: 340px; height: 340px;
    margin-top: -90px; margin-right: -90px;
    border-color: rgba(236, 72, 153, 0.28);
    animation-delay: 2.4s;
}
@keyframes fxBetRing {
    0%   { transform: scale(0.72); opacity: 0.0; }
    20%  { opacity: 0.95; }
    100% { transform: scale(1.12); opacity: 0; }
}

/* Odds chips — glass pills with drift */
.fx-bet-herofx__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-family: var(--fx-font-mono, ui-monospace, monospace);
    font-weight: 700;
    font-size: 12px;
    color: #e6f3ff;
    background: linear-gradient(135deg, rgba(14, 20, 36, 0.85), rgba(14, 20, 36, 0.55));
    border: 1px solid rgba(6, 224, 255, 0.35);
    border-radius: 999px;
    box-shadow:
        0 10px 30px -12px rgba(6, 224, 255, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px) saturate(140%);
    -webkit-backdrop-filter: blur(8px) saturate(140%);
    white-space: nowrap;
    animation: fxBetDrift 6s ease-in-out infinite;
    will-change: transform;
}
.fx-bet-herofx__chip-label {
    font-size: 9px;
    letter-spacing: 1.2px;
    color: rgba(6, 224, 255, 0.9);
    text-transform: uppercase;
}
.fx-bet-herofx__chip-odd {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.3px;
}
.fx-bet-herofx__chip--a {
    top: 14%;
    right: 7%;
    animation-delay: 0s;
    border-color: rgba(6, 224, 255, 0.55);
}
.fx-bet-herofx__chip--b {
    top: 46%;
    right: 22%;
    animation-delay: 2s;
    border-color: rgba(236, 72, 153, 0.55);
    box-shadow:
        0 10px 30px -12px rgba(236, 72, 153, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.fx-bet-herofx__chip--b .fx-bet-herofx__chip-label { color: rgba(236, 72, 153, 0.9); }
.fx-bet-herofx__chip--c {
    bottom: 18%;
    right: 5%;
    animation-delay: 4s;
    border-color: rgba(168, 85, 247, 0.55);
    box-shadow:
        0 10px 30px -12px rgba(168, 85, 247, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.fx-bet-herofx__chip--c .fx-bet-herofx__chip-label { color: rgba(168, 85, 247, 0.95); }
@keyframes fxBetDrift {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
    50%      { transform: translate3d(-6px, -12px, 0) rotate(2deg); }
}

/* Sport / betting emoji floats */
.fx-bet-herofx__emoji {
    font-size: 28px;
    line-height: 1;
    filter: drop-shadow(0 4px 18px rgba(6, 224, 255, 0.35));
    will-change: transform;
}
.fx-bet-herofx__emoji--ball {
    top: 28%;
    right: 32%;
    animation: fxBetSpin 9s linear infinite, fxBetFloat 5s ease-in-out infinite;
    font-size: 30px;
}
.fx-bet-herofx__emoji--bolt {
    top: 9%;
    right: 28%;
    animation: fxBetBlink 1.6s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.9));
    font-size: 24px;
}
.fx-bet-herofx__emoji--cards {
    bottom: 28%;
    right: 34%;
    animation: fxBetTilt 4.2s ease-in-out infinite;
    filter: drop-shadow(0 4px 14px rgba(236, 72, 153, 0.5));
    font-size: 26px;
}
@keyframes fxBetSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes fxBetFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
@keyframes fxBetBlink {
    0%, 100% { opacity: 1;   transform: scale(1); }
    50%      { opacity: 0.45; transform: scale(0.88); }
}
@keyframes fxBetTilt {
    0%, 100% { transform: rotate(-8deg) translateY(0); }
    50%      { transform: rotate(8deg)  translateY(-6px); }
}

/* Sparkle dots scattered */
.fx-bet-herofx__spark {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px 2px rgba(6, 224, 255, 0.9);
    animation: fxBetSpark 2.4s ease-in-out infinite;
}
.fx-bet-herofx__spark--1 { top: 18%; right: 38%; animation-delay: 0s;   background: #06e0ff; box-shadow: 0 0 10px 2px rgba(6,224,255,.9); }
.fx-bet-herofx__spark--2 { top: 60%; right: 12%; animation-delay: .4s;  background: #ec4899; box-shadow: 0 0 10px 2px rgba(236,72,153,.9); }
.fx-bet-herofx__spark--3 { top: 36%; right: 46%; animation-delay: .8s;  background: #a855f7; box-shadow: 0 0 10px 2px rgba(168,85,247,.9); }
.fx-bet-herofx__spark--4 { bottom: 10%; right: 40%; animation-delay: 1.2s; background: #fbbf24; box-shadow: 0 0 10px 2px rgba(251,191,36,.9); }
.fx-bet-herofx__spark--5 { top: 74%; right: 26%; animation-delay: 1.6s; background: #34d399; box-shadow: 0 0 10px 2px rgba(52,211,153,.9); }
@keyframes fxBetSpark {
    0%, 100% { opacity: 0; transform: scale(0.6); }
    50%      { opacity: 1; transform: scale(1.2); }
}

/* LIVE badge — bottom-right corner accent */
.fx-bet-herofx__live {
    bottom: 6%;
    right: 6%;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(236, 72, 153, 0.14);
    border: 1px solid rgba(236, 72, 153, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.fx-bet-herofx__live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ec4899;
    box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.8);
    animation: fxBetLivePulse 1.4s ease-out infinite;
    position: static;
}
.fx-bet-herofx__live-text {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 800;
    color: #ec4899;
}
@keyframes fxBetLivePulse {
    0%   { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.6); }
    70%  { box-shadow: 0 0 0 10px rgba(236, 72, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0); }
}

/* Mobile (390×844) — shrink, shift inward, let text breathe.
   Chips/emojis hug the right rail with reduced opacity so they
   decorate without fighting the title. */
@media (max-width: 620px) {
    .fx-bet-herofx__ring--1 { width: 110px; height: 110px; }
    .fx-bet-herofx__ring--2 { width: 170px; height: 170px; margin-top: -30px; margin-right: -30px; }
    .fx-bet-herofx__ring--3 { width: 230px; height: 230px; margin-top: -60px; margin-right: -60px; }

    .fx-bet-herofx__chip { padding: 6px 9px; font-size: 10px; opacity: .9; }
    .fx-bet-herofx__chip-odd { font-size: 12px; }
    .fx-bet-herofx__chip--a { top: 8%;  right: 4%; }
    .fx-bet-herofx__chip--b { top: 42%; right: 4%; }
    .fx-bet-herofx__chip--c { bottom: 22%; right: 4%; }

    .fx-bet-herofx__emoji--ball  { top: 24%; right: 22%; font-size: 22px; }
    .fx-bet-herofx__emoji--bolt  { top: 6%;  right: 26%; font-size: 20px; }
    .fx-bet-herofx__emoji--cards { bottom: 34%; right: 22%; font-size: 20px; }

    .fx-bet-herofx__spark { width: 3px; height: 3px; }
    .fx-bet-herofx__spark--3 { display: none; }

    .fx-bet-herofx__live-text { font-size: 9px; letter-spacing: 1.5px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .fx-bet-herofx__ring,
    .fx-bet-herofx__chip,
    .fx-bet-herofx__emoji,
    .fx-bet-herofx__spark,
    .fx-bet-herofx__live-dot {
        animation: none !important;
    }
}

/* ==========================================================================
   Promotions page v3 — Modern neon palette overlay
   Scope: body.fx-promotions only.
   Palette: violet lead · amber accent · pink + cyan + mint supporting
   ========================================================================== */
body.fx-promotions {
    --p-violet:   #a855f7;
    --p-violet-2: #7c3aed;
    --p-pink:     #ec4899;
    --p-pink-2:   #db2777;
    --p-cyan:     #06e0ff;
    --p-cyan-2:   #0891b2;
    --p-amber:    #fbbf24;
    --p-amber-2:  #f59e0b;
    --p-mint:     #34d399;
    --p-mint-2:   #10b981;
    --p-ink:      #04070f;
    --p-card:     rgba(14, 20, 36, 0.55);
    --p-card-strong: rgba(14, 20, 36, 0.78);
    --p-stroke:   rgba(168, 85, 247, 0.18);
    --p-stroke-h: rgba(251, 191, 36, 0.45);
    --p-text:     rgba(255, 255, 255, 0.94);
    --p-muted:    rgba(255, 255, 255, 0.62);
    --p-glow-vi:  0 0 48px -14px rgba(168,85,247,.55);
    --p-glow-am:  0 0 48px -14px rgba(251,191,36,.55);
    --p-glow-pk:  0 0 48px -14px rgba(236,72,153,.55);
    --p-glow-cy:  0 0 48px -14px rgba(6,224,255,.55);
    --p-glow-mt:  0 0 48px -14px rgba(52,211,153,.55);
    background: var(--p-ink);
}

body.fx-promotions .fx-main {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(720px 420px at 10% 0%,   rgba(168,85,247,.12), transparent 60%),
        radial-gradient(780px 460px at 94% 22%,  rgba(251,191,36,.08), transparent 60%),
        radial-gradient(900px 500px at 50% 72%,  rgba(236,72,153,.07), transparent 65%),
        var(--p-ink);
}
body.fx-promotions .fx-main::before {
    content: "";
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(168,85,247,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(251,191,36,.05) 1px, transparent 1px);
    background-size: 48px 48px, 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
    opacity: .45;
}
body.fx-promotions .fx-main > * { position: relative; z-index: 1; }

/* Hero overrides */
body.fx-promotions .fx-page-hero {
    position: relative;
    background:
        radial-gradient(1200px 520px at 10% 10%, rgba(168,85,247,.18), transparent 60%),
        radial-gradient(900px 420px at 92% 90%,  rgba(251,191,36,.14), transparent 60%),
        radial-gradient(700px 420px at 50% 50%,  rgba(236,72,153,.10), transparent 65%);
}
body.fx-promotions .fx-page-hero__inner { position: relative; z-index: 2; max-width: 760px; }
body.fx-promotions .fx-page-hero__orbs .fx-orb--a {
    background: radial-gradient(circle, var(--p-violet) 0%, transparent 60%);
    opacity: .40;
}
body.fx-promotions .fx-page-hero__orbs .fx-orb--b {
    background: radial-gradient(circle, var(--p-amber) 0%, transparent 60%);
    opacity: .30;
}
body.fx-promotions .fx-page-hero__title em {
    background-image: linear-gradient(90deg, var(--p-amber) 0%, var(--p-pink) 50%, var(--p-violet) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
}
body.fx-promotions .fx-eyebrow {
    color: var(--p-amber);
    letter-spacing: .18em;
    text-shadow: 0 0 18px rgba(251,191,36,.35);
}
body.fx-promotions .fx-section__title em {
    background-image: linear-gradient(90deg, var(--p-amber), var(--p-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
}

/* ── Hero fx decoration ───────────────────────────────── */
.fx-pr-herofx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.fx-pr-herofx > * { position: absolute; }

/* Pulsing rings top-right */
.fx-pr-herofx__ring {
    top: 5%;
    right: 4%;
    border-radius: 50%;
    border: 1px solid;
    animation: fxPrRing 5.2s ease-out infinite;
}
.fx-pr-herofx__ring--1 {
    width: 150px; height: 150px;
    border-color: rgba(251, 191, 36, 0.55);
    box-shadow: 0 0 22px rgba(251,191,36,.35) inset, 0 0 26px rgba(251,191,36,.28);
}
.fx-pr-herofx__ring--2 {
    width: 230px; height: 230px;
    margin-top: -40px; margin-right: -40px;
    border-color: rgba(168, 85, 247, 0.42);
    animation-delay: 1.4s;
}
.fx-pr-herofx__ring--3 {
    width: 330px; height: 330px;
    margin-top: -90px; margin-right: -90px;
    border-color: rgba(236, 72, 153, 0.28);
    animation-delay: 2.8s;
}
@keyframes fxPrRing {
    0%   { transform: scale(0.72); opacity: 0; }
    22%  { opacity: 0.95; }
    100% { transform: scale(1.14); opacity: 0; }
}

/* Gift box */
.fx-pr-herofx__gift {
    top: 46%;
    right: 14%;
    width: 74px;
    height: 74px;
    transform-origin: center;
    animation: fxPrGiftBounce 3.6s ease-in-out infinite;
    filter: drop-shadow(0 14px 30px rgba(236, 72, 153, .35));
}
.fx-pr-herofx__gift > * { position: absolute; }
.fx-pr-herofx__gift-box {
    top: 22px; left: 0;
    width: 74px; height: 52px;
    border-radius: 8px;
    background: linear-gradient(180deg, #ec4899 0%, #a855f7 100%);
    box-shadow: 0 0 24px rgba(168,85,247,.4), inset 0 -10px 20px rgba(0,0,0,.2);
}
.fx-pr-herofx__gift-lid {
    top: 12px; left: -3px;
    width: 80px; height: 16px;
    border-radius: 4px;
    background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 0 18px rgba(251,191,36,.5);
    z-index: 2;
}
.fx-pr-herofx__gift-ribbon {
    top: 22px; left: 34px;
    width: 6px; height: 52px;
    background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 0 12px rgba(251,191,36,.6);
    z-index: 3;
}
.fx-pr-herofx__gift-bow {
    top: -2px; left: 22px;
    width: 30px; height: 18px;
    background: radial-gradient(ellipse at center, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(251,191,36,.55);
    z-index: 4;
}
@keyframes fxPrGiftBounce {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50%      { transform: translateY(-10px) rotate(4deg); }
}

/* Value chips */
.fx-pr-herofx__chip {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 8px 14px;
    border-radius: 14px;
    background: rgba(14, 20, 36, 0.82);
    border: 1px solid;
    backdrop-filter: blur(8px) saturate(1.2);
    -webkit-backdrop-filter: blur(8px) saturate(1.2);
    line-height: 1;
    animation: fxPrChipDrift 5.2s ease-in-out infinite;
}
.fx-pr-herofx__chip-big {
    font-family: var(--fx-font-display, system-ui);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -0.01em;
}
.fx-pr-herofx__chip-small {
    margin-top: 2px;
    font-size: 8.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    font-weight: 600;
}
.fx-pr-herofx__chip--a {
    top: 18%; right: 6%;
    border-color: rgba(168, 85, 247, 0.55);
    box-shadow: 0 0 22px rgba(168,85,247,.35), inset 0 0 22px rgba(168,85,247,.12);
    animation-delay: 0s;
}
.fx-pr-herofx__chip--a .fx-pr-herofx__chip-big { color: #a855f7; }
.fx-pr-herofx__chip--b {
    top: 30%; right: 38%;
    border-color: rgba(251, 191, 36, 0.55);
    box-shadow: 0 0 22px rgba(251,191,36,.35), inset 0 0 22px rgba(251,191,36,.12);
    animation-delay: 1.6s;
}
.fx-pr-herofx__chip--b .fx-pr-herofx__chip-big { color: #fbbf24; }
.fx-pr-herofx__chip--c {
    top: 62%; right: 36%;
    border-color: rgba(236, 72, 153, 0.55);
    box-shadow: 0 0 22px rgba(236,72,153,.35), inset 0 0 22px rgba(236,72,153,.12);
    animation-delay: 3.2s;
}
.fx-pr-herofx__chip--c .fx-pr-herofx__chip-big { color: #ec4899; }
@keyframes fxPrChipDrift {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50%      { transform: translateY(-12px) rotate(2deg); }
}

/* Currency coins */
.fx-pr-herofx__coin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    font-family: var(--fx-font-display, system-ui);
    font-weight: 800;
    font-size: 18px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1b1405;
    box-shadow: 0 0 20px rgba(251,191,36,.45), inset 0 -4px 8px rgba(0,0,0,.2), inset 0 4px 8px rgba(255,255,255,.25);
    animation: fxPrCoinSpin 4.4s ease-in-out infinite;
}
.fx-pr-herofx__coin--1 { top: 10%; right: 30%; animation-delay: 0s; }
.fx-pr-herofx__coin--2 { top: 50%; right: 54%; animation-delay: 1.2s; width: 28px; height: 28px; font-size: 16px; }
.fx-pr-herofx__coin--3 { top: 78%; right: 16%; animation-delay: 2.4s; }
@keyframes fxPrCoinSpin {
    0%, 100% { transform: rotateY(0) translateY(0); }
    50%      { transform: rotateY(180deg) translateY(-8px); }
}

/* Sparkles */
.fx-pr-herofx__spark {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px #fff, 0 0 20px rgba(251,191,36,.8);
    animation: fxPrSpark 2.2s ease-in-out infinite;
}
.fx-pr-herofx__spark--1 { top: 14%; right: 50%; animation-delay: 0s; }
.fx-pr-herofx__spark--2 { top: 40%; right: 20%; animation-delay: 0.5s; }
.fx-pr-herofx__spark--3 { top: 60%; right: 60%; animation-delay: 1.0s; }
.fx-pr-herofx__spark--4 { top: 80%; right: 42%; animation-delay: 1.5s; }
.fx-pr-herofx__spark--5 { top: 26%; right: 72%; animation-delay: 2.0s; width: 4px; height: 4px; }
@keyframes fxPrSpark {
    0%, 100% { opacity: 0; transform: scale(0.4); }
    50%      { opacity: 1; transform: scale(1); }
}

/* CLAIMED pulse badge */
.fx-pr-herofx__claimed {
    top: 72%;
    right: 50%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px 7px 8px;
    background: rgba(14, 20, 36, 0.85);
    border: 1px solid rgba(52, 211, 153, 0.55);
    border-radius: 999px;
    box-shadow: 0 0 22px rgba(52,211,153,.4);
    animation: fxPrClaimedPulse 2.4s ease-in-out infinite;
}
.fx-pr-herofx__claimed-tick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #34d399, #10b981);
    color: #04070f;
}
.fx-pr-herofx__claimed-tick svg { width: 14px; height: 14px; }
.fx-pr-herofx__claimed-text {
    font-family: var(--fx-font-display, system-ui);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.14em;
    color: #34d399;
}
@keyframes fxPrClaimedPulse {
    0%, 100% { box-shadow: 0 0 22px rgba(52,211,153,.4); }
    50%      { box-shadow: 0 0 36px rgba(52,211,153,.7); }
}

/* Hide decoration on mobile hero (keep rings + 1 chip only) */
@media (max-width: 720px) {
    .fx-pr-herofx { opacity: 0.55; }
    .fx-pr-herofx__chip--b,
    .fx-pr-herofx__chip--c,
    .fx-pr-herofx__coin--2,
    .fx-pr-herofx__spark--3,
    .fx-pr-herofx__spark--5,
    .fx-pr-herofx__claimed { display: none; }
    .fx-pr-herofx__gift { width: 54px; height: 54px; top: 50%; right: 6%; }
    .fx-pr-herofx__gift-box { width: 54px; height: 38px; top: 16px; }
    .fx-pr-herofx__gift-lid { width: 60px; height: 12px; top: 8px; left: -3px; }
    .fx-pr-herofx__gift-ribbon { top: 16px; left: 24px; width: 4px; height: 38px; }
    .fx-pr-herofx__gift-bow { width: 22px; height: 14px; left: 16px; }
    .fx-pr-herofx__ring--3 { display: none; }
    .fx-pr-herofx__chip--a { top: 16%; right: 4%; padding: 6px 10px; }
    .fx-pr-herofx__chip--a .fx-pr-herofx__chip-big { font-size: 13px; }
    .fx-pr-herofx__chip--a .fx-pr-herofx__chip-small { font-size: 7px; }
}

/* ── Activity marquee ─────────────────────────────────── */
.fx-pr-activity-sec {
    padding-top: clamp(24px, 5vw, 48px);
    padding-bottom: clamp(24px, 5vw, 48px);
}
.fx-pr-activity__head {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.fx-pr-activity__live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 10px 5px 8px;
    background: rgba(236, 72, 153, 0.12);
    border: 1px solid rgba(236, 72, 153, 0.45);
    border-radius: 999px;
    color: #f472b6;
    font-family: var(--fx-font-display, system-ui);
    font-weight: 800;
    font-size: 10.5px;
    letter-spacing: 0.16em;
}
.fx-pr-activity__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #ec4899;
    box-shadow: 0 0 10px #ec4899;
    animation: fxPrLiveDot 1.4s ease-in-out infinite;
}
@keyframes fxPrLiveDot {
    0%, 100% { opacity: 0.5; transform: scale(0.8); }
    50%      { opacity: 1;   transform: scale(1.15); }
}
.fx-pr-activity__title {
    margin: 0;
    font-family: var(--fx-font-display, system-ui);
    font-weight: 700;
    font-size: clamp(15px, 3.2vw, 19px);
    color: var(--p-text);
}
.fx-pr-activity__count {
    margin-left: auto;
    color: var(--p-muted);
    font-size: 13px;
}
.fx-pr-activity__count strong {
    color: var(--p-amber);
    font-weight: 700;
}
.fx-pr-activity {
    position: relative;
    margin-top: 4px;
    padding: 14px 0;
    border-block: 1px solid rgba(168, 85, 247, 0.14);
    background: linear-gradient(180deg, rgba(168,85,247,.06), rgba(251,191,36,.04));
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.fx-pr-activity__track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: fxPrMarquee 50s linear infinite;
}
.fx-pr-activity:hover .fx-pr-activity__track,
.fx-pr-activity:focus-within .fx-pr-activity__track {
    animation-play-state: paused;
}
@keyframes fxPrMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.fx-pr-activity__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px 8px 8px;
    background: rgba(14, 20, 36, 0.72);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 999px;
    white-space: nowrap;
    font-size: 12.5px;
    color: var(--p-muted);
}
.fx-pr-activity__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #fff;
    font-family: var(--fx-font-display, system-ui);
    font-weight: 800;
    font-size: 11px;
}
.fx-pr-activity__user {
    color: var(--p-text);
    font-weight: 600;
}
.fx-pr-activity__verb {
    color: var(--p-muted);
    font-style: italic;
}
.fx-pr-activity__promo {
    color: var(--p-amber);
    font-weight: 600;
}
.fx-pr-activity__value {
    padding: 2px 8px;
    background: rgba(52, 211, 153, 0.14);
    border: 1px solid rgba(52, 211, 153, 0.35);
    border-radius: 6px;
    color: #6ee7b7;
    font-weight: 700;
    font-family: var(--fx-font-mono, ui-monospace, monospace);
    font-size: 11.5px;
}
.fx-pr-activity__time {
    color: rgba(255,255,255,.4);
    font-size: 11px;
}

/* ── Stats strip ──────────────────────────────────────── */
.fx-pr-stats-sec { padding-top: clamp(20px, 4vw, 44px); padding-bottom: clamp(20px, 4vw, 44px); }
.fx-pr-stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}
.fx-pr-stat {
    position: relative;
    padding: 16px 14px;
    background: var(--p-card);
    border: 1px solid rgba(168, 85, 247, 0.16);
    border-radius: 14px;
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    overflow: hidden;
    transition: transform .3s ease, border-color .3s ease;
}
.fx-pr-stat::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: currentColor;
    opacity: .55;
}
.fx-pr-stat:hover { transform: translateY(-2px); }
.fx-pr-stat--violet { color: var(--p-violet); }
.fx-pr-stat--amber  { color: var(--p-amber); }
.fx-pr-stat--cyan   { color: var(--p-cyan); }
.fx-pr-stat--mint   { color: var(--p-mint); }
.fx-pr-stat--pink   { color: var(--p-pink); }
.fx-pr-stat__n {
    font-family: var(--fx-font-display, system-ui);
    font-weight: 800;
    font-size: clamp(20px, 3.4vw, 28px);
    color: currentColor;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.fx-pr-stat__l {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--p-text);
    margin-bottom: 4px;
}
.fx-pr-stat__d {
    font-size: 11px;
    color: var(--p-muted);
    line-height: 1.4;
}

/* ── Live promos grid — redesigned cards ──────────────── */
.fx-pr-promos-sec { padding-top: clamp(32px, 6vw, 64px); padding-bottom: clamp(32px, 6vw, 64px); }
.fx-pr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.fx-pr-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 18px 18px;
    background: var(--p-card-strong);
    border: 1px solid var(--p-stroke);
    border-radius: 20px;
    backdrop-filter: blur(14px) saturate(1.25);
    -webkit-backdrop-filter: blur(14px) saturate(1.25);
    overflow: hidden;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .35s ease;
    isolation: isolate;
}
.fx-pr-card:hover {
    transform: translateY(-6px);
    border-color: var(--p-stroke-h);
    box-shadow: 0 18px 40px -18px rgba(0,0,0,.55), var(--p-glow-vi);
}
.fx-pr-card__glow {
    position: absolute;
    inset: -40%;
    pointer-events: none;
    background: radial-gradient(circle at 30% 20%, var(--pr-glow, rgba(168,85,247,.3)), transparent 55%);
    opacity: .55;
    z-index: -1;
    transition: opacity .3s ease;
}
.fx-pr-card:hover .fx-pr-card__glow { opacity: 0.9; }
.fx-pr-card__grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(ellipse at top right, #000 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at top right, #000 0%, transparent 70%);
    opacity: .4;
    z-index: -1;
}
.fx-pr-card--violet { --pr-accent: var(--p-violet); --pr-glow: rgba(168,85,247,.35); }
.fx-pr-card--amber  { --pr-accent: var(--p-amber);  --pr-glow: rgba(251,191,36,.35); }
.fx-pr-card--pink   { --pr-accent: var(--p-pink);   --pr-glow: rgba(236,72,153,.35); }
.fx-pr-card--cyan   { --pr-accent: var(--p-cyan);   --pr-glow: rgba(6,224,255,.35); }
.fx-pr-card--mint   { --pr-accent: var(--p-mint);   --pr-glow: rgba(52,211,153,.35); }

.fx-pr-card.is-featured {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 0 0 1px rgba(251,191,36,.14), 0 16px 34px -18px rgba(168,85,247,.45);
}
.fx-pr-card__ribbon {
    position: absolute;
    top: 14px; right: -38px;
    transform: rotate(36deg);
    padding: 4px 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1b1405;
    font-family: var(--fx-font-display, system-ui);
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(251,191,36,.4);
    z-index: 3;
}

.fx-pr-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.fx-pr-card__tag {
    padding: 4px 10px;
    background: color-mix(in srgb, var(--pr-accent, #a855f7) 14%, transparent);
    border: 1px solid color-mix(in srgb, var(--pr-accent, #a855f7) 38%, transparent);
    border-radius: 999px;
    color: var(--pr-accent, #a855f7);
    font-family: var(--fx-font-display, system-ui);
    font-weight: 800;
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.fx-pr-card__icon {
    font-size: 24px;
    line-height: 1;
    filter: drop-shadow(0 6px 14px color-mix(in srgb, var(--pr-accent, #a855f7) 55%, transparent));
}

.fx-pr-card__value {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 12px 14px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--pr-accent, #a855f7) 14%, transparent), color-mix(in srgb, var(--pr-accent, #a855f7) 4%, transparent));
    border: 1px solid color-mix(in srgb, var(--pr-accent, #a855f7) 22%, transparent);
    border-radius: 14px;
}
.fx-pr-card__value-sub {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--p-muted);
    font-weight: 600;
}
.fx-pr-card__value-big {
    font-family: var(--fx-font-display, system-ui);
    font-weight: 800;
    font-size: clamp(24px, 4.5vw, 32px);
    color: var(--pr-accent, #a855f7);
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 0 28px color-mix(in srgb, var(--pr-accent, #a855f7) 45%, transparent);
}

.fx-pr-card__title {
    font-family: var(--fx-font-display, system-ui);
    font-weight: 700;
    font-size: clamp(15px, 2.6vw, 17px);
    color: var(--p-text);
    margin: 0;
    line-height: 1.3;
}
.fx-pr-card__desc {
    color: var(--p-muted);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}
.fx-pr-card__terms {
    list-style: none;
    padding: 0;
    margin: 2px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
}
.fx-pr-card__terms li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: rgba(255,255,255,.7);
}
.fx-pr-card__terms svg {
    flex-shrink: 0;
    width: 12px; height: 12px;
    color: var(--pr-accent, #a855f7);
}

.fx-pr-card__foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255,255,255,.08);
}
.fx-pr-card__clock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--p-muted);
}
.fx-pr-card__pulse {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--pr-accent, #a855f7);
    box-shadow: 0 0 10px var(--pr-accent, #a855f7);
    animation: fxPrLiveDot 1.6s ease-in-out infinite;
}
.fx-pr-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(135deg, var(--pr-accent, #a855f7), color-mix(in srgb, var(--pr-accent, #a855f7) 60%, #000));
    color: #fff;
    font-family: var(--fx-font-display, system-ui);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 8px 20px -8px color-mix(in srgb, var(--pr-accent, #a855f7) 60%, transparent);
    transition: transform .2s ease, box-shadow .2s ease;
}
.fx-pr-card__cta svg { width: 12px; height: 12px; transition: transform .2s ease; }
.fx-pr-card__cta:hover { transform: translateX(2px); }
.fx-pr-card__cta:hover svg { transform: translateX(2px); }

/* ── Loyalty progress ─────────────────────────────────── */
.fx-pr-loyalty-sec { padding-top: clamp(32px, 6vw, 64px); padding-bottom: clamp(32px, 6vw, 64px); }
.fx-pr-loyalty {
    margin-top: 32px;
    padding: 28px 24px;
    background: var(--p-card-strong);
    border: 1px solid var(--p-stroke);
    border-radius: 22px;
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
}
.fx-pr-loyalty__hero {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    padding-bottom: 26px;
    margin-bottom: 22px;
    border-bottom: 1px dashed rgba(255,255,255,.08);
}
.fx-pr-loyalty__you-label {
    display: block;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--p-muted);
    margin-bottom: 4px;
}
.fx-pr-loyalty__you-pts {
    display: flex;
    align-items: baseline;
    gap: 6px;
    line-height: 1;
}
.fx-pr-loyalty__you-pts strong {
    font-family: var(--fx-font-display, system-ui);
    font-weight: 800;
    font-size: clamp(34px, 6vw, 48px);
    background: linear-gradient(90deg, var(--p-amber), var(--p-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}
.fx-pr-loyalty__you-pts span {
    font-size: 16px;
    font-weight: 600;
    color: var(--p-muted);
}
.fx-pr-loyalty__you-next {
    display: inline-block;
    margin-top: 6px;
    padding: 3px 10px;
    background: rgba(168, 85, 247, 0.14);
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 999px;
    color: #c4b5fd;
    font-size: 11.5px;
    font-weight: 600;
}
.fx-pr-loyalty__bar {
    position: relative;
    height: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    overflow: visible;
}
.fx-pr-loyalty__bar-fill {
    position: relative;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--p-violet) 0%, var(--p-pink) 50%, var(--p-amber) 100%);
    box-shadow: 0 0 22px rgba(236,72,153,.55);
    overflow: hidden;
}
.fx-pr-loyalty__bar-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    animation: fxPrShine 2.4s ease-in-out infinite;
}
@keyframes fxPrShine {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}
.fx-pr-loyalty__bar-marker {
    position: absolute;
    top: 50%;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #04070f;
    border: 2px solid var(--p-violet);
    transform: translate(-50%, -50%);
    z-index: 2;
}
.fx-pr-loyalty__bar-marker::after {
    content: attr(data-label);
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    color: var(--p-muted);
    white-space: nowrap;
}
.fx-pr-loyalty__bar-marker--end {
    border-color: var(--p-amber);
    box-shadow: 0 0 14px rgba(251,191,36,.6);
}

.fx-pr-loyalty__rewards {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.fx-pr-loyalty__reward {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 12px;
    background: rgba(14, 20, 36, 0.6);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    transition: border-color .3s ease, transform .3s ease;
}
.fx-pr-loyalty__reward:hover { transform: translateY(-2px); border-color: rgba(251,191,36,.35); }
.fx-pr-loyalty__reward.is-claimed {
    background: linear-gradient(180deg, rgba(52,211,153,.12), rgba(52,211,153,.04));
    border-color: rgba(52, 211, 153, 0.38);
}
.fx-pr-loyalty__reward-pts {
    font-family: var(--fx-font-display, system-ui);
    font-weight: 800;
    font-size: 16px;
    color: var(--p-amber);
    line-height: 1;
}
.fx-pr-loyalty__reward-pts small { font-size: 10px; color: var(--p-muted); font-weight: 600; }
.fx-pr-loyalty__reward-name {
    font-size: 12px;
    color: var(--p-text);
    font-weight: 600;
    line-height: 1.35;
}
.fx-pr-loyalty__reward-status {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--p-muted);
    font-weight: 700;
}
.fx-pr-loyalty__reward.is-claimed .fx-pr-loyalty__reward-status { color: #6ee7b7; }
.fx-pr-loyalty__reward-status svg { width: 12px; height: 12px; }

/* ── VIP tier ladder ──────────────────────────────────── */
.fx-pr-vip-sec { padding-top: clamp(32px, 6vw, 64px); padding-bottom: clamp(32px, 6vw, 64px); }
.fx-pr-vip-ladder {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 32px;
    align-items: stretch;
}
.fx-pr-vip-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px 18px;
    background: var(--p-card-strong);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    overflow: hidden;
    transition: transform .35s ease, border-color .35s ease;
    isolation: isolate;
}
.fx-pr-vip-card:hover { transform: translateY(-4px); }
.fx-pr-vip-card__glow {
    position: absolute;
    inset: -40%;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(circle at 50% 0%, var(--vip-glow, rgba(168,85,247,.35)), transparent 60%);
    opacity: .65;
}
.fx-pr-vip-card--bronze   { --vip-c: #d97706; --vip-glow: rgba(217,119,6,.3);  border-color: rgba(217,119,6,.3); }
.fx-pr-vip-card--silver   { --vip-c: #cbd5e1; --vip-glow: rgba(203,213,225,.3); border-color: rgba(203,213,225,.3); }
.fx-pr-vip-card--gold     { --vip-c: #fbbf24; --vip-glow: rgba(251,191,36,.4);  border-color: rgba(251,191,36,.4); }
.fx-pr-vip-card--platinum { --vip-c: #e9d5ff; --vip-glow: rgba(233,213,255,.35); border-color: rgba(233,213,255,.35); }

.fx-pr-vip-card.is-current {
    border-color: var(--p-amber);
    box-shadow: 0 0 0 1px rgba(251,191,36,.4), 0 20px 40px -20px rgba(251,191,36,.5);
    transform: translateY(-6px);
}
.fx-pr-vip-card__badge {
    position: absolute;
    top: 14px; right: 14px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1b1405;
    font-family: var(--fx-font-display, system-ui);
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(251,191,36,.45);
}
.fx-pr-vip-card__rank {
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--p-muted);
    font-weight: 700;
}
.fx-pr-vip-card__crown {
    font-size: 22px;
    color: var(--vip-c);
    text-shadow: 0 0 22px var(--vip-glow, rgba(168,85,247,.35));
    letter-spacing: 4px;
    line-height: 1;
}
.fx-pr-vip-card__name {
    font-family: var(--fx-font-display, system-ui);
    font-weight: 800;
    font-size: clamp(20px, 3.4vw, 26px);
    color: var(--vip-c);
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px var(--vip-glow);
}
.fx-pr-vip-card__qualify {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 12px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
}
.fx-pr-vip-card__qualify span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--p-muted);
    font-weight: 600;
}
.fx-pr-vip-card__qualify strong {
    font-family: var(--fx-font-mono, ui-monospace, monospace);
    font-size: 15px;
    color: var(--p-text);
    font-weight: 700;
}
.fx-pr-vip-card__blurb {
    font-size: 12.5px;
    color: var(--p-muted);
    line-height: 1.5;
    margin: 0;
}
.fx-pr-vip-card__perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.fx-pr-vip-card__perks li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,.82);
    line-height: 1.4;
}
.fx-pr-vip-card__perks svg {
    flex-shrink: 0;
    width: 14px; height: 14px;
    margin-top: 2px;
    color: var(--vip-c);
}

/* ── Tournament leaderboard ───────────────────────────── */
.fx-pr-tour-sec { padding-top: clamp(32px, 6vw, 64px); padding-bottom: clamp(32px, 6vw, 64px); }
.fx-pr-tour {
    margin-top: 28px;
    padding: 22px 20px;
    background: var(--p-card-strong);
    border: 1px solid var(--p-stroke);
    border-radius: 22px;
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
}
.fx-pr-tour__head {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px dashed rgba(255,255,255,.08);
}
.fx-pr-tour__prize,
.fx-pr-tour__timer,
.fx-pr-tour__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.fx-pr-tour__prize-label,
.fx-pr-tour__timer-label,
.fx-pr-tour__stat-label {
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--p-muted);
    font-weight: 700;
}
.fx-pr-tour__prize-n {
    font-family: var(--fx-font-display, system-ui);
    font-weight: 800;
    font-size: clamp(22px, 4vw, 28px);
    background: linear-gradient(90deg, var(--p-amber), var(--p-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    line-height: 1;
}
.fx-pr-tour__timer-n {
    display: inline-flex;
    gap: 8px;
    align-items: baseline;
}
.fx-pr-tour__timer-n > span {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
    padding: 4px 8px;
    background: rgba(168, 85, 247, 0.14);
    border: 1px solid rgba(168, 85, 247, 0.32);
    border-radius: 8px;
    font-family: var(--fx-font-mono, ui-monospace, monospace);
}
.fx-pr-tour__timer-n strong {
    font-size: 16px;
    color: var(--p-text);
    font-weight: 800;
}
.fx-pr-tour__timer-n em {
    font-style: normal;
    font-size: 10px;
    color: var(--p-muted);
    font-weight: 600;
}
.fx-pr-tour__stat-n {
    font-family: var(--fx-font-display, system-ui);
    font-weight: 800;
    font-size: clamp(22px, 4vw, 28px);
    color: var(--p-cyan);
    letter-spacing: -0.02em;
    line-height: 1;
    text-shadow: 0 0 18px rgba(6,224,255,.4);
}

.fx-pr-tour__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    counter-reset: none;
}
.fx-pr-tour__row {
    display: grid;
    grid-template-columns: 44px 1fr auto auto;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    background: rgba(14, 20, 36, 0.55);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    transition: transform .2s ease, border-color .2s ease;
}
.fx-pr-tour__row:hover { transform: translateX(2px); border-color: rgba(251,191,36,.35); }
.fx-pr-tour__row--top {
    background: linear-gradient(90deg, rgba(251,191,36,.12), rgba(168,85,247,.06));
    border-color: rgba(251,191,36,.35);
}
.fx-pr-tour__rank {
    font-family: var(--fx-font-display, system-ui);
    font-weight: 800;
    font-size: 18px;
    color: var(--p-amber);
    text-align: center;
    line-height: 1;
}
.fx-pr-tour__rank span { font-size: 22px; }
.fx-pr-tour__who {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}
.fx-pr-tour__user {
    font-family: var(--fx-font-display, system-ui);
    font-weight: 700;
    font-size: 14px;
    color: var(--p-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.fx-pr-tour__city {
    font-size: 11px;
    color: var(--p-muted);
}
.fx-pr-tour__pts {
    font-family: var(--fx-font-mono, ui-monospace, monospace);
    font-weight: 700;
    font-size: 13px;
    color: var(--p-cyan);
    white-space: nowrap;
}
.fx-pr-tour__pts small { color: var(--p-muted); font-weight: 600; font-size: 10px; }
.fx-pr-tour__prize-val {
    padding: 4px 10px;
    background: rgba(52,211,153,.14);
    border: 1px solid rgba(52,211,153,.38);
    border-radius: 8px;
    color: #6ee7b7;
    font-family: var(--fx-font-mono, ui-monospace, monospace);
    font-weight: 700;
    font-size: 12.5px;
    white-space: nowrap;
}

.fx-pr-tour__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px dashed rgba(255,255,255,.08);
    font-size: 12px;
    color: var(--p-muted);
}
.fx-pr-tour__cta {
    color: var(--p-amber);
    font-weight: 700;
    text-decoration: none;
    transition: opacity .2s ease;
}
.fx-pr-tour__cta:hover { opacity: .8; }

/* ── Claim steps ──────────────────────────────────────── */
.fx-pr-steps-sec { padding-top: clamp(32px, 6vw, 64px); padding-bottom: clamp(32px, 6vw, 64px); }
.fx-pr-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
}
.fx-pr-step {
    position: relative;
    padding: 24px 20px;
    background: var(--p-card-strong);
    border: 1px solid var(--p-stroke);
    border-radius: 20px;
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    overflow: visible;
    isolation: isolate;
    transition: transform .3s ease, border-color .3s ease;
}
.fx-pr-step:hover { transform: translateY(-4px); border-color: var(--p-stroke-h); }
.fx-pr-step__glow {
    position: absolute;
    inset: -30%;
    z-index: -1;
    background: radial-gradient(circle at 30% 20%, var(--step-glow, rgba(168,85,247,.3)), transparent 55%);
    opacity: .55;
    pointer-events: none;
}
.fx-pr-step--cyan   { --step-c: var(--p-cyan);   --step-glow: rgba(6,224,255,.35); }
.fx-pr-step--violet { --step-c: var(--p-violet); --step-glow: rgba(168,85,247,.35); }
.fx-pr-step--amber  { --step-c: var(--p-amber);  --step-glow: rgba(251,191,36,.35); }
.fx-pr-step__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}
.fx-pr-step__n {
    font-family: var(--fx-font-display, system-ui);
    font-weight: 800;
    font-size: 28px;
    color: var(--step-c);
    letter-spacing: -0.03em;
    text-shadow: 0 0 24px color-mix(in srgb, var(--step-c) 40%, transparent);
    line-height: 1;
}
.fx-pr-step__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: color-mix(in srgb, var(--step-c) 14%, transparent);
    border: 1px solid color-mix(in srgb, var(--step-c) 38%, transparent);
    border-radius: 14px;
    font-size: 22px;
    line-height: 1;
}
.fx-pr-step__t {
    font-family: var(--fx-font-display, system-ui);
    font-weight: 700;
    font-size: 17px;
    color: var(--p-text);
    margin: 0 0 8px;
}
.fx-pr-step__d {
    font-size: 13px;
    color: var(--p-muted);
    line-height: 1.55;
    margin: 0;
}
.fx-pr-step__arrow {
    position: absolute;
    top: 50%;
    right: -28px;
    transform: translateY(-50%);
    z-index: 3;
    color: var(--step-c);
    opacity: .7;
}
.fx-pr-step__arrow svg { width: 36px; height: 24px; }

/* ── Rules icon cards ─────────────────────────────────── */
.fx-pr-rules-sec { padding-top: clamp(32px, 6vw, 64px); padding-bottom: clamp(32px, 6vw, 64px); }
.fx-pr-rules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
}
.fx-pr-rule {
    padding: 20px 18px;
    background: var(--p-card);
    border: 1px solid var(--p-stroke);
    border-radius: 16px;
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    transition: transform .3s ease, border-color .3s ease;
}
.fx-pr-rule:hover { transform: translateY(-3px); border-color: var(--rule-c, var(--p-violet)); }
.fx-pr-rule--violet { --rule-c: rgba(168,85,247,.5); }
.fx-pr-rule--mint   { --rule-c: rgba(52,211,153,.5); }
.fx-pr-rule--cyan   { --rule-c: rgba(6,224,255,.5); }
.fx-pr-rule--amber  { --rule-c: rgba(251,191,36,.5); }
.fx-pr-rule--pink   { --rule-c: rgba(236,72,153,.5); }
.fx-pr-rule__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    margin-bottom: 12px;
    background: color-mix(in srgb, var(--rule-c, rgba(168,85,247,.5)) 26%, transparent);
    border: 1px solid var(--rule-c, rgba(168,85,247,.5));
    border-radius: 12px;
    font-size: 20px;
    line-height: 1;
}
.fx-pr-rule__t {
    font-family: var(--fx-font-display, system-ui);
    font-weight: 700;
    font-size: 15px;
    color: var(--p-text);
    margin: 0 0 6px;
}
.fx-pr-rule__d {
    font-size: 12.5px;
    color: var(--p-muted);
    line-height: 1.55;
    margin: 0;
}
.fx-pr-rules__foot {
    margin-top: 22px;
    font-size: 13px;
    color: var(--p-muted);
    text-align: center;
}
.fx-pr-rules__foot a {
    color: var(--p-amber);
    font-weight: 700;
    text-decoration: none;
}
.fx-pr-rules__foot a:hover { text-decoration: underline; }

/* ── FAQ accordion ────────────────────────────────────── */
.fx-pr-faq-sec { padding-top: clamp(32px, 6vw, 64px); padding-bottom: clamp(32px, 6vw, 64px); }
.fx-pr-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 900px;
    margin: 28px auto 0;
}
.fx-pr-faq__item {
    background: var(--p-card-strong);
    border: 1px solid var(--p-stroke);
    border-radius: 14px;
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    overflow: hidden;
    transition: border-color .3s ease;
}
.fx-pr-faq__item[open] { border-color: var(--p-stroke-h); }
.fx-pr-faq__q {
    display: grid;
    grid-template-columns: 40px 1fr 24px;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.fx-pr-faq__q::-webkit-details-marker { display: none; }
.fx-pr-faq__q-n {
    font-family: var(--fx-font-mono, ui-monospace, monospace);
    font-weight: 700;
    font-size: 13px;
    color: var(--p-amber);
    text-align: center;
}
.fx-pr-faq__q-t {
    font-family: var(--fx-font-display, system-ui);
    font-weight: 600;
    font-size: 14.5px;
    color: var(--p-text);
    line-height: 1.4;
}
.fx-pr-faq__q-chev {
    color: var(--p-muted);
    transition: transform .25s ease, color .25s ease;
}
.fx-pr-faq__q-chev svg { width: 18px; height: 18px; display: block; }
.fx-pr-faq__item[open] .fx-pr-faq__q-chev {
    transform: rotate(180deg);
    color: var(--p-amber);
}
.fx-pr-faq__a {
    margin: 0;
    padding: 0 18px 18px 72px;
    font-size: 13px;
    line-height: 1.65;
    color: var(--p-muted);
}

/* ── Section head polish (scoped) ─────────────────────── */
body.fx-promotions .fx-section__head { position: relative; }
body.fx-promotions .fx-section__head .fx-section__title {
    color: var(--p-text);
}
body.fx-promotions .fx-section__desc {
    color: var(--p-muted);
    max-width: 680px;
}

/* ── Visually hidden helper (if not already defined) ───── */
.fx-visually-hidden {
    position: absolute !important;
    clip: rect(0 0 0 0);
    width: 1px; height: 1px;
    overflow: hidden; white-space: nowrap;
    border: 0; padding: 0; margin: -1px;
}

/* ── Tablet breakpoint ─────────────────────────────────── */
@media (max-width: 960px) {
    .fx-pr-stats { grid-template-columns: repeat(3, 1fr); }
    .fx-pr-grid  { grid-template-columns: repeat(2, 1fr); }
    .fx-pr-vip-ladder { grid-template-columns: repeat(2, 1fr); }
    .fx-pr-loyalty__rewards { grid-template-columns: repeat(3, 1fr); }
    .fx-pr-rules { grid-template-columns: repeat(2, 1fr); }
    .fx-pr-steps { grid-template-columns: 1fr; gap: 36px; }
    .fx-pr-step__arrow {
        top: auto;
        right: 50%;
        bottom: -32px;
        transform: translateX(50%) rotate(90deg);
    }
}

/* ── Mobile breakpoint ─────────────────────────────────── */
@media (max-width: 640px) {
    .fx-pr-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .fx-pr-stat { padding: 14px 12px; }
    .fx-pr-stat__n { font-size: 20px; }

    .fx-pr-grid { grid-template-columns: 1fr; gap: 14px; }
    .fx-pr-card { padding: 18px 16px 16px; gap: 12px; }
    .fx-pr-card__terms { grid-template-columns: 1fr 1fr; }
    .fx-pr-card__value-big { font-size: 26px; }
    .fx-pr-card__title { font-size: 15px; }
    .fx-pr-card__desc { font-size: 12.5px; }
    .fx-pr-card__ribbon { top: 10px; right: -40px; font-size: 9px; padding: 3px 40px; }

    .fx-pr-activity__head { gap: 8px; }
    .fx-pr-activity__title { font-size: 14px; }
    .fx-pr-activity__count { font-size: 11.5px; width: 100%; margin-left: 0; }
    .fx-pr-activity { padding: 10px 0; }
    .fx-pr-activity__track { gap: 8px; animation-duration: 40s; }
    .fx-pr-activity__item { padding: 6px 10px 6px 6px; font-size: 11.5px; gap: 6px; }
    .fx-pr-activity__avatar { width: 18px; height: 18px; font-size: 10px; }

    .fx-pr-loyalty { padding: 22px 16px; }
    .fx-pr-loyalty__hero {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 22px;
        margin-bottom: 20px;
    }
    .fx-pr-loyalty__you-pts strong { font-size: 36px; }
    .fx-pr-loyalty__rewards { grid-template-columns: repeat(2, 1fr); }
    .fx-pr-loyalty__bar-marker::after { font-size: 9px; top: 18px; }

    .fx-pr-vip-ladder { grid-template-columns: 1fr; gap: 12px; }
    .fx-pr-vip-card { padding: 18px 16px; }
    .fx-pr-vip-card.is-current { transform: none; }

    .fx-pr-tour { padding: 18px 14px; }
    .fx-pr-tour__head {
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: left;
    }
    .fx-pr-tour__head > * {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 10px;
    }
    .fx-pr-tour__timer-n { justify-self: end; }
    .fx-pr-tour__row {
        grid-template-columns: 34px 1fr auto;
        gap: 8px;
        padding: 10px;
    }
    .fx-pr-tour__prize-val { grid-column: 3; }
    .fx-pr-tour__pts { grid-column: 2; justify-self: start; font-size: 12px; margin-top: 2px; }
    .fx-pr-tour__who { grid-row: 1; grid-column: 2; }
    .fx-pr-tour__rank { grid-row: 1 / span 2; }
    .fx-pr-tour__foot {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
        font-size: 11.5px;
    }

    .fx-pr-rules { grid-template-columns: 1fr; gap: 10px; }
    .fx-pr-rule { padding: 16px 14px; }

    .fx-pr-faq__q {
        grid-template-columns: 32px 1fr 20px;
        gap: 10px;
        padding: 14px 14px;
    }
    .fx-pr-faq__q-n { font-size: 11.5px; }
    .fx-pr-faq__q-t { font-size: 13.5px; }
    .fx-pr-faq__a { padding: 0 14px 16px 56px; font-size: 12.5px; }
}

/* ── Very small screens ────────────────────────────────── */
@media (max-width: 380px) {
    .fx-pr-stats { grid-template-columns: 1fr 1fr; }
    .fx-pr-loyalty__rewards { grid-template-columns: 1fr; }
    .fx-pr-card__terms { grid-template-columns: 1fr; }
}

/* ── Reduced motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .fx-pr-herofx__ring,
    .fx-pr-herofx__chip,
    .fx-pr-herofx__coin,
    .fx-pr-herofx__spark,
    .fx-pr-herofx__gift,
    .fx-pr-herofx__claimed,
    .fx-pr-activity__track,
    .fx-pr-activity__dot,
    .fx-pr-loyalty__bar-shine,
    .fx-pr-card__pulse {
        animation: none !important;
    }
}

/* ==========================================================================
   Blog listing v3 — Modern neon palette
   Scope: body.fx-blog only.
   Palette: violet lead · cyan accent · pink + amber + mint supporting
   ========================================================================== */
body.fx-blog {
    --bl-violet:   #a855f7;
    --bl-violet-2: #7c3aed;
    --bl-cyan:     #06e0ff;
    --bl-cyan-2:   #0891b2;
    --bl-pink:     #ec4899;
    --bl-amber:    #fbbf24;
    --bl-mint:     #34d399;
    --bl-ink:      #04070f;
    --bl-card:     rgba(14, 20, 36, 0.6);
    --bl-card-strong: rgba(14, 20, 36, 0.8);
    --bl-stroke:   rgba(168, 85, 247, 0.18);
    --bl-stroke-h: rgba(6, 224, 255, 0.45);
    --bl-text:     rgba(255, 255, 255, 0.94);
    --bl-muted:    rgba(255, 255, 255, 0.62);
    background: var(--bl-ink);
}

body.fx-blog .fx-main {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(720px 420px at 10% 0%,   rgba(168,85,247,.12), transparent 60%),
        radial-gradient(780px 460px at 94% 22%,  rgba(6,224,255,.08),  transparent 60%),
        radial-gradient(900px 500px at 50% 72%,  rgba(236,72,153,.07), transparent 65%),
        var(--bl-ink);
}
body.fx-blog .fx-main::before {
    content: "";
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(168,85,247,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6,224,255,.05) 1px, transparent 1px);
    background-size: 48px 48px, 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
    opacity: .4;
}
body.fx-blog .fx-main > * { position: relative; z-index: 1; }

/* Hero overrides */
body.fx-blog .fx-page-hero {
    position: relative;
    background:
        radial-gradient(1200px 520px at 10% 10%, rgba(168,85,247,.18), transparent 60%),
        radial-gradient(900px 420px at 92% 90%,  rgba(6,224,255,.14),  transparent 60%),
        radial-gradient(700px 420px at 50% 50%,  rgba(236,72,153,.10), transparent 65%);
    padding-block: clamp(44px, 8vw, 96px);
}
body.fx-blog .fx-page-hero__inner { position: relative; z-index: 2; max-width: 760px; }
body.fx-blog .fx-page-hero__orbs .fx-orb--a {
    background: radial-gradient(circle, var(--bl-violet) 0%, transparent 60%);
    opacity: .40;
}
body.fx-blog .fx-page-hero__orbs .fx-orb--b {
    background: radial-gradient(circle, var(--bl-cyan) 0%, transparent 60%);
    opacity: .32;
}
body.fx-blog .fx-page-hero__title em {
    background-image: linear-gradient(90deg, var(--bl-cyan) 0%, var(--bl-violet) 50%, var(--bl-pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
}
body.fx-blog .fx-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bl-cyan);
    letter-spacing: .18em;
    text-shadow: 0 0 16px rgba(6,224,255,.3);
}
body.fx-blog .fx-section__title em {
    background-image: linear-gradient(90deg, var(--bl-cyan), var(--bl-violet));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
}
.fx-blog-hero__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--bl-pink);
    box-shadow: 0 0 10px var(--bl-pink);
    animation: fxBlogPulse 1.5s ease-in-out infinite;
}
@keyframes fxBlogPulse {
    0%, 100% { opacity: .5; transform: scale(.8); }
    50%      { opacity: 1;  transform: scale(1.15); }
}

/* Hero search */
.fx-blog-search {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    padding: 6px 6px 6px 14px;
    background: rgba(14, 20, 36, 0.72);
    border: 1px solid var(--bl-stroke);
    border-radius: 999px;
    max-width: 520px;
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    transition: border-color .25s ease, box-shadow .25s ease;
}
.fx-blog-search:focus-within {
    border-color: var(--bl-stroke-h);
    box-shadow: 0 0 0 4px rgba(6,224,255,.12);
}
.fx-blog-search__icon {
    display: inline-flex;
    color: var(--bl-muted);
}
.fx-blog-search__icon svg { width: 16px; height: 16px; }
.fx-blog-search input[type="search"] {
    flex: 1;
    background: transparent;
    border: 0;
    outline: 0;
    padding: 10px 8px;
    font: inherit;
    color: var(--bl-text);
    min-width: 0;
}
.fx-blog-search input::placeholder { color: rgba(255,255,255,.42); }
.fx-blog-search__btn {
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--bl-cyan), var(--bl-violet));
    color: #04070f;
    font-family: var(--fx-font-display, system-ui);
    font-weight: 700;
    font-size: 13px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 8px 22px -10px rgba(6,224,255,.6);
    transition: transform .2s ease;
}
.fx-blog-search__btn:hover { transform: translateY(-1px); }

.fx-blog-hero__stats {
    margin-top: 18px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 12px;
    font-size: 13px;
    color: var(--bl-muted);
}
.fx-blog-hero__stats strong {
    color: var(--bl-text);
    font-weight: 800;
    font-family: var(--fx-font-display, system-ui);
}

/* ── Hero fx decoration (right side) ─────────────────── */
.fx-blog-herofx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.fx-blog-herofx > * { position: absolute; }

.fx-blog-herofx__ring {
    top: 6%;
    right: 4%;
    border-radius: 50%;
    border: 1px solid;
    animation: fxBlogRing 5.2s ease-out infinite;
}
.fx-blog-herofx__ring--1 {
    width: 150px; height: 150px;
    border-color: rgba(6, 224, 255, 0.55);
    box-shadow: 0 0 22px rgba(6,224,255,.3) inset, 0 0 26px rgba(6,224,255,.25);
}
.fx-blog-herofx__ring--2 {
    width: 230px; height: 230px;
    margin-top: -40px; margin-right: -40px;
    border-color: rgba(168, 85, 247, 0.42);
    animation-delay: 1.4s;
}
.fx-blog-herofx__ring--3 {
    width: 330px; height: 330px;
    margin-top: -90px; margin-right: -90px;
    border-color: rgba(236, 72, 153, 0.28);
    animation-delay: 2.8s;
}
@keyframes fxBlogRing {
    0%   { transform: scale(0.72); opacity: 0; }
    22%  { opacity: 0.95; }
    100% { transform: scale(1.14); opacity: 0; }
}

/* News-post mock cards floating */
.fx-blog-herofx__news {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 12px;
    background: rgba(14, 20, 36, 0.85);
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 12px;
    width: 150px;
    backdrop-filter: blur(8px) saturate(1.2);
    -webkit-backdrop-filter: blur(8px) saturate(1.2);
    animation: fxBlogDrift 5s ease-in-out infinite;
    box-shadow: 0 10px 30px -10px rgba(168,85,247,.4);
}
.fx-blog-herofx__news--a { top: 16%; right: 8%; }
.fx-blog-herofx__news--b { top: 56%; right: 34%; animation-delay: 1.6s; border-color: rgba(6, 224, 255, 0.45); box-shadow: 0 10px 30px -10px rgba(6,224,255,.4); }
.fx-blog-herofx__news-tag {
    font-family: var(--fx-font-display, system-ui);
    font-weight: 800;
    font-size: 9px;
    letter-spacing: .16em;
    color: var(--bl-cyan);
    align-self: flex-start;
    padding: 2px 7px;
    background: rgba(6, 224, 255, 0.14);
    border-radius: 999px;
}
.fx-blog-herofx__news--a .fx-blog-herofx__news-tag { color: var(--bl-violet); background: rgba(168, 85, 247, 0.14); }
.fx-blog-herofx__news-line {
    height: 5px;
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,.28), rgba(255,255,255,.08));
}
.fx-blog-herofx__news-line--short { width: 60%; }
@keyframes fxBlogDrift {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50%      { transform: translateY(-10px) rotate(2deg); }
}

.fx-blog-herofx__icon {
    font-size: 22px;
    filter: drop-shadow(0 8px 18px rgba(6,224,255,.4));
    animation: fxBlogFloat 4.4s ease-in-out infinite;
}
.fx-blog-herofx__icon--1 { top: 40%; right: 20%; animation-delay: 0s; }
.fx-blog-herofx__icon--2 { top: 80%; right: 18%; animation-delay: 1.2s; }
.fx-blog-herofx__icon--3 { top: 30%; right: 52%; animation-delay: 2.4s; font-size: 18px; }
@keyframes fxBlogFloat {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50%      { transform: translateY(-10px) rotate(4deg); }
}

.fx-blog-herofx__spark {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px #fff, 0 0 18px rgba(6,224,255,.7);
    animation: fxBlogSpark 2.2s ease-in-out infinite;
}
.fx-blog-herofx__spark--1 { top: 12%; right: 48%; }
.fx-blog-herofx__spark--2 { top: 44%; right: 10%; animation-delay: .5s; }
.fx-blog-herofx__spark--3 { top: 68%; right: 52%; animation-delay: 1s; }
.fx-blog-herofx__spark--4 { top: 88%; right: 36%; animation-delay: 1.5s; width: 3px; height: 3px; }
@keyframes fxBlogSpark {
    0%, 100% { opacity: 0; transform: scale(0.4); }
    50%      { opacity: 1; transform: scale(1); }
}

@media (max-width: 860px) {
    .fx-blog-herofx { opacity: .45; }
    .fx-blog-herofx__news--b,
    .fx-blog-herofx__icon--3,
    .fx-blog-herofx__ring--3,
    .fx-blog-herofx__spark--3 { display: none; }
    .fx-blog-herofx__news--a { width: 110px; top: 10%; right: 4%; padding: 7px 9px; }
    .fx-blog-herofx__news-tag { font-size: 8px; }
}

/* ── Filter chips ─────────────────────────────────────── */
.fx-blog-filters-sec { padding-top: clamp(20px, 4vw, 36px); padding-bottom: clamp(14px, 3vw, 28px); }
.fx-blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.fx-blog-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px 9px 12px;
    background: var(--bl-card);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    color: var(--bl-muted);
    font-family: var(--fx-font-display, system-ui);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    backdrop-filter: blur(10px) saturate(1.2);
    -webkit-backdrop-filter: blur(10px) saturate(1.2);
    transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
    white-space: nowrap;
}
.fx-blog-chip:hover {
    transform: translateY(-2px);
    border-color: var(--bl-stroke-h);
    color: var(--bl-text);
}
.fx-blog-chip__icon {
    font-size: 14px;
    line-height: 1;
}
.fx-blog-chip__n {
    padding: 2px 7px;
    background: rgba(255,255,255,.06);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,.55);
    font-family: var(--fx-font-mono, ui-monospace, monospace);
}
.fx-blog-chip.is-active {
    background: linear-gradient(135deg, rgba(6,224,255,.18), rgba(168,85,247,.18));
    border-color: var(--bl-stroke-h);
    color: var(--bl-text);
    box-shadow: 0 10px 26px -14px rgba(6,224,255,.5);
}
.fx-blog-chip.is-active .fx-blog-chip__n {
    background: var(--bl-cyan);
    color: #04070f;
}

/* ── Featured post card ──────────────────────────────── */
.fx-blog-featured-sec { padding-top: clamp(24px, 5vw, 48px); padding-bottom: clamp(24px, 5vw, 48px); }
.fx-blog-feat {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    margin-top: 28px;
    background: var(--bl-card-strong);
    border: 1px solid var(--bl-stroke);
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .35s ease;
    isolation: isolate;
}
.fx-blog-feat:hover {
    transform: translateY(-4px);
    border-color: var(--bl-stroke-h);
    box-shadow: 0 22px 50px -24px rgba(6,224,255,.4), 0 0 0 1px rgba(6,224,255,.18);
}
.fx-blog-feat__media {
    position: relative;
    min-height: 340px;
    overflow: hidden;
}
.fx-blog-feat__media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.fx-blog-feat:hover .fx-blog-feat__media img { transform: scale(1.06); }
.fx-blog-feat__ph {
    position: absolute; inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(80px, 14vw, 140px);
    background: linear-gradient(135deg, rgba(168,85,247,.2), rgba(6,224,255,.1));
}
.fx-blog-feat__grad {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(4,7,15,.1) 0%, rgba(4,7,15,.55) 100%);
    pointer-events: none;
}
.fx-blog-feat__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px 5px 9px;
    background: linear-gradient(135deg, var(--bl-amber), #f59e0b);
    color: #1b1405;
    font-family: var(--fx-font-display, system-ui);
    font-weight: 800;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 8px 22px -10px rgba(251,191,36,.6);
}
.fx-blog-feat__badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #1b1405;
    animation: fxBlogPulse 1.5s ease-in-out infinite;
}
.fx-blog-feat__cat {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 11px;
    background: rgba(14, 20, 36, 0.85);
    border: 1px solid rgba(168, 85, 247, 0.45);
    color: #c4b5fd;
    font-family: var(--fx-font-display, system-ui);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.fx-blog-feat__body {
    padding: clamp(20px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
}
.fx-blog-feat__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--bl-muted);
    font-size: 12.5px;
}
.fx-blog-feat__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.fx-blog-feat__meta-item svg { width: 13px; height: 13px; color: var(--bl-cyan); }
.fx-blog-feat__title {
    font-family: var(--fx-font-display, system-ui);
    font-weight: 800;
    font-size: clamp(22px, 3.6vw, 32px);
    line-height: 1.18;
    color: var(--bl-text);
    letter-spacing: -0.02em;
    margin: 0;
}
.fx-blog-feat__excerpt {
    color: var(--bl-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}
.fx-blog-feat__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: linear-gradient(135deg, var(--bl-cyan), var(--bl-violet));
    color: #04070f;
    font-family: var(--fx-font-display, system-ui);
    font-weight: 700;
    font-size: 13.5px;
    border-radius: 999px;
    align-self: flex-start;
    margin-top: 4px;
    box-shadow: 0 12px 30px -14px rgba(6,224,255,.6);
    transition: transform .2s ease, gap .2s ease;
}
.fx-blog-feat:hover .fx-blog-feat__cta { gap: 12px; }
.fx-blog-feat__cta svg { width: 13px; height: 13px; }

/* ── Blog grid ───────────────────────────────────────── */
.fx-blog-grid-sec { padding-top: clamp(32px, 6vw, 64px); padding-bottom: clamp(32px, 6vw, 64px); }
.fx-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 28px;
}
.fx-blog-grid .fx-blog-card.is-wide { grid-column: span 2; }
.fx-blog-grid .fx-blog-card.is-wide .fx-blog-card__link {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}
.fx-blog-grid .fx-blog-card.is-wide .fx-blog-card__media {
    height: 100%;
    min-height: 260px;
}
.fx-blog-grid .fx-blog-card.is-wide .fx-blog-card__title {
    font-size: clamp(18px, 2.4vw, 22px);
}

.fx-blog-card {
    position: relative;
    background: var(--bl-card-strong);
    border: 1px solid var(--bl-stroke);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .35s ease;
    isolation: isolate;
}
.fx-blog-card::before {
    content: "";
    position: absolute;
    top: -1px; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bc-accent, var(--bl-cyan)), transparent);
    opacity: 0;
    transition: opacity .35s ease;
    z-index: 2;
}
.fx-blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--bc-accent, var(--bl-stroke-h));
    box-shadow: 0 22px 48px -22px rgba(0,0,0,.6), 0 0 0 1px color-mix(in srgb, var(--bc-accent, var(--bl-cyan)) 18%, transparent);
}
.fx-blog-card:hover::before { opacity: .9; }

.fx-blog-card--violet { --bc-accent: var(--bl-violet); }
.fx-blog-card--cyan   { --bc-accent: var(--bl-cyan); }
.fx-blog-card--amber  { --bc-accent: var(--bl-amber); }
.fx-blog-card--pink   { --bc-accent: var(--bl-pink); }
.fx-blog-card--mint   { --bc-accent: var(--bl-mint); }

.fx-blog-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.fx-blog-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(168,85,247,.16), rgba(6,224,255,.08));
}
.fx-blog-card__media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.fx-blog-card:hover .fx-blog-card__media img { transform: scale(1.08); }
.fx-blog-card__ph {
    position: absolute; inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(44px, 8vw, 80px);
    filter: drop-shadow(0 12px 28px color-mix(in srgb, var(--bc-accent, var(--bl-cyan)) 35%, transparent));
}
.fx-blog-card__grad {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(4,7,15,0) 55%, rgba(4,7,15,.4) 100%);
    pointer-events: none;
}
.fx-blog-card__read {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 9px 4px 7px;
    background: rgba(14, 20, 36, 0.85);
    border: 1px solid rgba(255,255,255,.1);
    color: var(--bl-text);
    font-family: var(--fx-font-mono, ui-monospace, monospace);
    font-weight: 700;
    font-size: 11px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.fx-blog-card__read svg { width: 12px; height: 12px; color: var(--bc-accent, var(--bl-cyan)); }

.fx-blog-card__cat {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: color-mix(in srgb, var(--bc-accent, var(--bl-cyan)) 22%, rgba(14,20,36,.85));
    border: 1px solid color-mix(in srgb, var(--bc-accent, var(--bl-cyan)) 55%, transparent);
    color: color-mix(in srgb, var(--bc-accent, var(--bl-cyan)) 80%, #fff);
    font-family: var(--fx-font-display, system-ui);
    font-weight: 700;
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.fx-blog-card__body {
    padding: 18px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.fx-blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 8px;
    color: var(--bl-muted);
    font-size: 11.5px;
}
.fx-blog-card__title {
    font-family: var(--fx-font-display, system-ui);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.32;
    color: var(--bl-text);
    letter-spacing: -0.01em;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .25s ease;
}
.fx-blog-card:hover .fx-blog-card__title {
    color: var(--bc-accent, var(--bl-cyan));
}
.fx-blog-card__excerpt {
    color: var(--bl-muted);
    font-size: 12.5px;
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fx-blog-card__foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255,255,255,.08);
}
.fx-blog-card__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--fx-font-display, system-ui);
    font-weight: 700;
    font-size: 12.5px;
    color: var(--bc-accent, var(--bl-cyan));
    transition: gap .2s ease;
}
.fx-blog-card__more svg { width: 12px; height: 12px; transition: transform .2s ease; }
.fx-blog-card:hover .fx-blog-card__more { gap: 10px; }
.fx-blog-card:hover .fx-blog-card__more svg { transform: translateX(2px); }

.fx-blog-card__comments {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    color: var(--bl-muted);
}
.fx-blog-card__comments svg { width: 13px; height: 13px; }

/* ── Pagination ──────────────────────────────────────── */
.fx-blog-pag {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.fx-blog-pag__item { display: inline-flex; }
.fx-blog-pag a,
.fx-blog-pag span.page-numbers,
.fx-blog-pag .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--bl-card);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    color: var(--bl-muted);
    font-family: var(--fx-font-display, system-ui);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    backdrop-filter: blur(10px) saturate(1.2);
    -webkit-backdrop-filter: blur(10px) saturate(1.2);
    transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}
.fx-blog-pag a:hover {
    transform: translateY(-2px);
    color: var(--bl-text);
    border-color: var(--bl-stroke-h);
}
.fx-blog-pag .page-numbers.current {
    background: linear-gradient(135deg, var(--bl-cyan), var(--bl-violet));
    color: #04070f;
    border-color: transparent;
    box-shadow: 0 10px 26px -14px rgba(6,224,255,.6);
}
.fx-blog-pag .page-numbers.dots {
    background: transparent;
    border-color: transparent;
}
.fx-blog-pag svg { width: 13px; height: 13px; }

/* ── Empty state ─────────────────────────────────────── */
.fx-blog-empty {
    max-width: 520px;
    margin: 40px auto 0;
    padding: 36px 24px;
    background: var(--bl-card-strong);
    border: 1px solid var(--bl-stroke);
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
}
.fx-blog-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px; height: 60px;
    margin-bottom: 14px;
    background: rgba(168, 85, 247, 0.14);
    border: 1px solid rgba(168, 85, 247, 0.32);
    border-radius: 16px;
    font-size: 28px;
}
.fx-blog-empty h3 {
    font-family: var(--fx-font-display, system-ui);
    font-weight: 700;
    font-size: 20px;
    color: var(--bl-text);
    margin: 0 0 6px;
}
.fx-blog-empty p { color: var(--bl-muted); font-size: 14px; margin: 0 0 18px; }
.fx-blog-empty__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--bl-cyan), var(--bl-violet));
    color: #04070f;
    font-family: var(--fx-font-display, system-ui);
    font-weight: 700;
    font-size: 13px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 10px 26px -14px rgba(6,224,255,.6);
}

/* ── Newsletter band ─────────────────────────────────── */
.fx-blog-nl-sec { padding-bottom: clamp(40px, 7vw, 80px); }
.fx-blog-nl {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    padding: clamp(24px, 4vw, 44px);
    background:
        radial-gradient(600px 300px at 0% 100%, rgba(6,224,255,.18), transparent 60%),
        radial-gradient(600px 300px at 100% 0%, rgba(168,85,247,.18), transparent 60%),
        var(--bl-card-strong);
    border: 1px solid var(--bl-stroke);
    border-radius: 26px;
    overflow: hidden;
    isolation: isolate;
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
}
.fx-blog-nl__grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(168,85,247,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6,224,255,.05) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 80%);
    opacity: .5;
}
.fx-blog-nl__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--bl-mint);
    box-shadow: 0 0 10px var(--bl-mint);
    animation: fxBlogPulse 1.5s ease-in-out infinite;
}
.fx-blog-nl__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 520px;
}
.fx-blog-nl__title {
    font-family: var(--fx-font-display, system-ui);
    font-weight: 800;
    font-size: clamp(22px, 3.2vw, 30px);
    line-height: 1.2;
    color: var(--bl-text);
    margin: 0;
    letter-spacing: -0.02em;
}
.fx-blog-nl__title em {
    background-image: linear-gradient(90deg, var(--bl-cyan), var(--bl-violet));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
}
.fx-blog-nl__desc {
    color: var(--bl-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.fx-blog-nl__form {
    display: flex;
    gap: 6px;
    padding: 6px 6px 6px 14px;
    background: rgba(4, 7, 15, 0.65);
    border: 1px solid var(--bl-stroke);
    border-radius: 999px;
    max-width: 460px;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.fx-blog-nl__form:focus-within {
    border-color: var(--bl-stroke-h);
    box-shadow: 0 0 0 4px rgba(6,224,255,.12);
}
.fx-blog-nl__form input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: 0;
    font: inherit;
    color: var(--bl-text);
    padding: 10px 8px;
    min-width: 0;
}
.fx-blog-nl__form input::placeholder { color: rgba(255,255,255,.42); }
.fx-blog-nl__form button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--bl-cyan), var(--bl-violet));
    color: #04070f;
    font-family: var(--fx-font-display, system-ui);
    font-weight: 700;
    font-size: 13.5px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 8px 22px -10px rgba(6,224,255,.6);
    transition: transform .2s ease, gap .2s ease;
}
.fx-blog-nl__form button:hover { transform: translateY(-1px); gap: 10px; }
.fx-blog-nl__form button svg { width: 13px; height: 13px; }
.fx-blog-nl__perks {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.fx-blog-nl__perks li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--bl-muted);
}
.fx-blog-nl__perks svg {
    width: 13px; height: 13px;
    color: var(--bl-mint);
    flex-shrink: 0;
}

.fx-blog-nl__side {
    display: flex;
    align-items: center;
    justify-content: center;
}
.fx-blog-nl__card {
    width: 100%;
    max-width: 320px;
    padding: 16px;
    background: rgba(4, 7, 15, 0.72);
    border: 1px solid rgba(6, 224, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 20px 40px -20px rgba(6,224,255,.35), 0 0 0 1px rgba(6,224,255,.12);
    transform: rotate(-2deg);
    transition: transform .35s ease;
}
.fx-blog-nl:hover .fx-blog-nl__card { transform: rotate(0); }
.fx-blog-nl__card-tag {
    display: inline-block;
    margin-bottom: 10px;
    padding: 3px 9px;
    background: rgba(6, 224, 255, 0.14);
    border: 1px solid rgba(6, 224, 255, 0.4);
    color: var(--bl-cyan);
    font-family: var(--fx-font-display, system-ui);
    font-weight: 700;
    font-size: 10.5px;
    letter-spacing: 0.1em;
    border-radius: 999px;
}
.fx-blog-nl__card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255,255,255,.06);
    font-size: 12.5px;
}
.fx-blog-nl__card-row:last-of-type { border-bottom: 0; }
.fx-blog-nl__card-row span { color: var(--bl-muted); }
.fx-blog-nl__card-row strong {
    color: var(--bl-mint);
    font-family: var(--fx-font-mono, ui-monospace, monospace);
    font-weight: 700;
    font-size: 12px;
}
.fx-blog-nl__card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 12.5px;
}
.fx-blog-nl__card-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--bl-muted);
    font-weight: 600;
}
.fx-blog-nl__card-live span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--bl-mint);
    box-shadow: 0 0 8px var(--bl-mint);
    animation: fxBlogPulse 1.5s ease-in-out infinite;
}
.fx-blog-nl__card-foot strong {
    color: var(--bl-mint);
    font-family: var(--fx-font-display, system-ui);
    font-weight: 800;
    font-size: 15px;
}

/* ── Tablet breakpoint ───────────────────────────────── */
@media (max-width: 960px) {
    .fx-blog-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .fx-blog-grid .fx-blog-card.is-wide { grid-column: span 2; }
    .fx-blog-grid .fx-blog-card.is-wide .fx-blog-card__link { grid-template-columns: 1fr 1fr; }
    .fx-blog-feat { grid-template-columns: 1fr; }
    .fx-blog-feat__media { min-height: 220px; aspect-ratio: 16 / 9; }
    .fx-blog-nl { grid-template-columns: 1fr; gap: 24px; }
    .fx-blog-nl__side { order: -1; }
}

/* ── Mobile breakpoint ───────────────────────────────── */
@media (max-width: 640px) {
    body.fx-blog .fx-page-hero { padding-block: clamp(36px, 12vw, 64px); }
    body.fx-blog .fx-page-hero__title { font-size: clamp(30px, 8vw, 42px); }
    .fx-blog-search { max-width: 100%; }
    .fx-blog-search__btn { padding: 9px 14px; font-size: 12.5px; }

    .fx-blog-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        padding-bottom: 6px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
        scroll-snap-type: x proximity;
    }
    .fx-blog-filters::-webkit-scrollbar { display: none; }
    .fx-blog-chip {
        flex-shrink: 0;
        scroll-snap-align: start;
        font-size: 12.5px;
        padding: 8px 12px 8px 10px;
    }

    .fx-blog-feat__body { padding: 20px 18px; gap: 10px; }
    .fx-blog-feat__title { font-size: 22px; }
    .fx-blog-feat__excerpt { font-size: 13.5px; }
    .fx-blog-feat__cta { padding: 10px 16px; font-size: 12.5px; }
    .fx-blog-feat__media { min-height: 180px; aspect-ratio: 4 / 3; }

    .fx-blog-grid { grid-template-columns: 1fr; gap: 14px; }
    .fx-blog-grid .fx-blog-card.is-wide { grid-column: auto; }
    .fx-blog-grid .fx-blog-card.is-wide .fx-blog-card__link { grid-template-columns: 1fr; }
    .fx-blog-grid .fx-blog-card.is-wide .fx-blog-card__media { min-height: 200px; aspect-ratio: 16 / 10; }
    .fx-blog-card__body { padding: 16px; }
    .fx-blog-card__title { font-size: 15px; }
    .fx-blog-card__excerpt { font-size: 12px; }

    .fx-blog-pag a,
    .fx-blog-pag .page-numbers {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 12.5px;
    }

    .fx-blog-nl { padding: 22px 18px; border-radius: 20px; }
    .fx-blog-nl__form { flex-direction: column; gap: 8px; padding: 8px; border-radius: 16px; }
    .fx-blog-nl__form input { padding: 10px 12px; }
    .fx-blog-nl__form button { justify-content: center; }
    .fx-blog-nl__card { transform: none; }
    .fx-blog-nl__perks { gap: 8px 14px; }
}

/* ── Very small screens ─────────────────────────────── */
@media (max-width: 380px) {
    .fx-blog-hero__stats { font-size: 12px; gap: 4px 10px; }
    .fx-blog-search { padding: 4px 4px 4px 12px; }
    .fx-blog-search input { padding: 9px 6px; font-size: 13.5px; }
}

/* ── Reduced motion ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .fx-blog-herofx__ring,
    .fx-blog-herofx__news,
    .fx-blog-herofx__icon,
    .fx-blog-herofx__spark,
    .fx-blog-hero__dot,
    .fx-blog-feat__badge-dot,
    .fx-blog-nl__dot,
    .fx-blog-nl__card-live span,
    .fx-blog-feat__media img,
    .fx-blog-card__media img {
        animation: none !important;
        transition: none !important;
    }
}

/* ==========================================================================
   About page — modern neon · trust-led
   Scope: body.fx-about only. Same palette family as betting/promotions but
   leaning violet-primary + mint (legitimacy) with cyan/pink accents.
   ========================================================================== */
body.fx-about {
    --a-cyan:    #06e0ff;
    --a-cyan-2:  #0891b2;
    --a-violet:  #a855f7;
    --a-violet-2:#6d28d9;
    --a-pink:    #ec4899;
    --a-pink-2:  #db2777;
    --a-amber:   #fbbf24;
    --a-mint:    #34d399;
    --a-mint-2:  #10b981;
    --a-ink:     #04070f;
    --a-card:    rgba(14, 20, 36, 0.55);
    --a-card-strong: rgba(14, 20, 36, 0.82);
    --a-stroke:  rgba(168, 85, 247, 0.18);
    --a-stroke-h:rgba(52, 211, 153, 0.45);
    --a-glow-vi: 0 0 48px -14px rgba(168,85,247,.55);
    --a-glow-mn: 0 0 48px -14px rgba(52,211,153,.55);
    --a-glow-pk: 0 0 48px -14px rgba(236,72,153,.55);
    background: var(--a-ink);
}

body.fx-about .fx-main {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(720px 420px at 8% 0%,   rgba(168,85,247,.10), transparent 60%),
        radial-gradient(820px 480px at 96% 18%, rgba(52,211,153,.08), transparent 60%),
        radial-gradient(900px 500px at 50% 68%, rgba(236,72,153,.06), transparent 65%),
        var(--a-ink);
}
body.fx-about .fx-main::before {
    content: "";
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(168,85,247,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52,211,153,.04) 1px, transparent 1px);
    background-size: 48px 48px, 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
    opacity: .5;
}
body.fx-about .fx-main > * { position: relative; z-index: 1; }

/* ── Hero ────────────────────────────────────────────── */
body.fx-about .fx-page-hero {
    background:
        radial-gradient(1200px 500px at 10% 10%, rgba(168,85,247,.16), transparent 60%),
        radial-gradient(900px 400px at 90% 90%, rgba(52,211,153,.12), transparent 60%),
        radial-gradient(700px 400px at 50% 50%, rgba(236,72,153,.08), transparent 65%);
}
body.fx-about .fx-page-hero__orbs .fx-orb--a {
    background: radial-gradient(circle, var(--a-violet) 0%, transparent 60%);
    opacity: .38;
}
body.fx-about .fx-page-hero__orbs .fx-orb--b {
    background: radial-gradient(circle, var(--a-mint) 0%, transparent 60%);
    opacity: .30;
}
body.fx-about .fx-page-hero__title em {
    background-image: linear-gradient(90deg, var(--a-violet) 0%, var(--a-cyan) 55%, var(--a-mint) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.fx-about .fx-eyebrow {
    color: var(--a-violet);
    letter-spacing: .18em;
}
body.fx-about .fx-section__title {
    background-image: linear-gradient(180deg, #fff 0%, #ddd6fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.fx-about .fx-section__title em {
    background-image: linear-gradient(90deg, var(--a-mint) 0%, var(--a-cyan) 50%, var(--a-violet) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
}

/* ── Hero decoration (right column) ─────────────────── */
body.fx-about .fx-page-hero { position: relative; }
body.fx-about .fx-page-hero__inner { position: relative; z-index: 2; max-width: 640px; }

.fx-about-herofx {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 380px;
    height: 380px;
    pointer-events: none;
    z-index: 1;
}
.fx-about-herofx__ring {
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    border: 1.5px solid rgba(168,85,247,.28);
    transform: translate(-50%, -50%);
    animation: fxAboutRing 14s linear infinite;
}
.fx-about-herofx__ring--1 { width: 200px; height: 200px; border-color: rgba(168,85,247,.3); }
.fx-about-herofx__ring--2 { width: 300px; height: 300px; border-color: rgba(52,211,153,.22); animation-duration: 20s; animation-direction: reverse; }
.fx-about-herofx__ring--3 { width: 380px; height: 380px; border-color: rgba(6,224,255,.16); animation-duration: 28s; }

@keyframes fxAboutRing {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.fx-about-herofx__shield {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 130px; height: 150px;
    background: linear-gradient(145deg, rgba(168,85,247,.92), rgba(109,40,217,.92));
    clip-path: polygon(50% 0%, 100% 22%, 100% 75%, 50% 100%, 0% 75%, 0% 22%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 24px 60px -18px rgba(168,85,247,.65);
    animation: fxAboutFloat 5s ease-in-out infinite;
}
.fx-about-herofx__shield-inner {
    text-align: center;
    color: #fff;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.fx-about-herofx__shield-check {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    display: grid; place-items: center;
    color: #fff;
}
.fx-about-herofx__shield-check svg { width: 24px; height: 24px; }
.fx-about-herofx__shield-label {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    font-size: 10px;
    letter-spacing: .22em;
    font-weight: 800;
}

@keyframes fxAboutFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50%      { transform: translate(-50%, -50%) translateY(-8px); }
}

.fx-about-herofx__badge {
    position: absolute;
    padding: 9px 14px;
    border-radius: 14px;
    background: var(--a-card-strong);
    border: 1px solid var(--a-stroke);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    display: flex; align-items: center; gap: 10px;
    animation: fxAboutDrift 7s ease-in-out infinite;
}
.fx-about-herofx__badge-icon { font-size: 22px; }
.fx-about-herofx__badge-text { display: flex; flex-direction: column; line-height: 1; }
.fx-about-herofx__badge-text strong {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    color: #fff; font-size: 14px; font-weight: 800;
}
.fx-about-herofx__badge-text em {
    font-style: normal;
    color: rgba(255,255,255,.55);
    font-size: 10px;
    letter-spacing: .08em;
    margin-top: 2px;
}
.fx-about-herofx__badge--a { top: 10%; left: -10px; border-color: rgba(168,85,247,.45); }
.fx-about-herofx__badge--b { top: 46%; right: 0; border-color: rgba(52,211,153,.45); animation-delay: -2s; }
.fx-about-herofx__badge--c { bottom: 8%; left: 8%; border-color: rgba(6,224,255,.45); animation-delay: -4s; }

@keyframes fxAboutDrift {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-10px) rotate(-1deg); }
}

.fx-about-herofx__spark {
    position: absolute;
    width: 5px; height: 5px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(255,255,255,.8);
    animation: fxAboutSpark 3s ease-in-out infinite;
}
.fx-about-herofx__spark--1 { top: 20%; right: 28%; animation-delay: 0s; }
.fx-about-herofx__spark--2 { top: 62%; left: 20%; animation-delay: -0.8s; }
.fx-about-herofx__spark--3 { bottom: 30%; right: 18%; animation-delay: -1.6s; }
.fx-about-herofx__spark--4 { top: 38%; left: 42%; animation-delay: -2.2s; }
.fx-about-herofx__spark--5 { bottom: 12%; right: 40%; animation-delay: -1s; }

@keyframes fxAboutSpark {
    0%, 100% { opacity: 0; transform: scale(0.4); }
    50%      { opacity: 1; transform: scale(1.2); }
}

.fx-about-herofx__flag {
    position: absolute;
    top: -4px;
    right: 20px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(239, 44, 54, .14); /* BD red */
    border: 1px solid rgba(0, 106, 78, .45); /* BD green */
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    display: flex; align-items: center; gap: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.fx-about-herofx__flag-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 0 0 rgba(239,68,68,.6);
    animation: fxAboutPulse 2s ease-out infinite;
}
@keyframes fxAboutPulse {
    0%   { box-shadow: 0 0 0 0 rgba(239,68,68,.6); }
    70%  { box-shadow: 0 0 0 10px rgba(239,68,68,0); }
    100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

/* ── Trust strip ─────────────────────────────────────── */
.fx-about-trust-sec { padding-block: 18px 10px; }
.fx-about-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(168,85,247,.06), rgba(52,211,153,.04));
    border: 1px solid var(--a-stroke);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
}
.fx-about-trust__item {
    display: flex;
    flex-direction: column;
    min-width: 130px;
    padding: 6px 12px;
    border-left: 2px solid rgba(168,85,247,.24);
    flex: 1 0 auto;
}
.fx-about-trust__item:first-child { border-left: 0; }
.fx-about-trust__k {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    font-weight: 700;
    color: #fff;
    font-size: 13.5px;
    letter-spacing: .01em;
}
.fx-about-trust__v {
    color: rgba(255,255,255,.55);
    font-size: 11.5px;
    margin-top: 2px;
}

/* ── Mission split (copy + priority card) ────────────── */
body.fx-about .fx-about-mission-sec { padding-block: 32px 24px; }
.fx-about-mission {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 36px;
    align-items: start;
}
.fx-about-mission__copy .fx-section__title { margin-bottom: 14px; }
.fx-about-mission__lede {
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255,255,255,.86);
    margin-bottom: 14px;
}
.fx-about-mission__copy p {
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 14px;
}
.fx-about-mission__copy strong { color: #fff; font-weight: 700; }
.fx-about-mission__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 18px;
}
.fx-about-mission__pill {
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(168,85,247,.1);
    border: 1px solid rgba(168,85,247,.28);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.fx-about-mission__sig {
    padding: 14px 16px;
    border-left: 3px solid var(--a-mint);
    background: rgba(52,211,153,.06);
    color: rgba(255,255,255,.88);
    font-style: italic;
    border-radius: 0 10px 10px 0;
    font-size: 14.5px;
}

.fx-about-mission__visual {
    position: relative;
    padding-top: 20px;
}
.fx-about-mission__card {
    background: var(--a-card-strong);
    border: 1px solid var(--a-stroke);
    border-radius: 22px;
    padding: 22px 22px 18px;
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    box-shadow: 0 22px 48px -20px rgba(168,85,247,.32);
    position: relative;
    overflow: hidden;
}
.fx-about-mission__card::before {
    content: "";
    position: absolute;
    top: -40%; right: -20%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(168,85,247,.25), transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.fx-about-mission__card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.fx-about-mission__card-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--a-mint);
    box-shadow: 0 0 8px rgba(52,211,153,.7);
    animation: fxAboutPulse 2s ease-out infinite;
}
.fx-about-mission__card-title {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    letter-spacing: .04em;
}
.fx-about-mission__list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.fx-about-mission__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.88);
    font-size: 14px;
    font-weight: 600;
}
.fx-about-mission__n {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    font-weight: 800;
    color: var(--a-violet);
    font-size: 12px;
    min-width: 22px;
}
.fx-about-mission__list li:nth-child(1) .fx-about-mission__n { color: var(--a-mint); }
.fx-about-mission__list li:nth-child(2) .fx-about-mission__n { color: var(--a-cyan); }
.fx-about-mission__list li:nth-child(3) .fx-about-mission__n { color: var(--a-amber); }
.fx-about-mission__list li:nth-child(4) .fx-about-mission__n { color: var(--a-pink); }
.fx-about-mission__card-foot {
    color: rgba(255,255,255,.6);
    font-size: 12.5px;
    font-style: italic;
    margin: 0;
}
.fx-about-mission__stamp {
    position: absolute;
    top: -8px; right: -8px;
    width: 84px; height: 84px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--a-mint), var(--a-mint-2));
    color: #04241a;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    letter-spacing: .04em;
    box-shadow: 0 12px 32px -8px rgba(52,211,153,.6);
    transform: rotate(8deg);
    z-index: 2;
}
.fx-about-mission__stamp svg { width: 28px; height: 28px; margin-bottom: 2px; }

/* ── Stat strip (6 tone variants) ────────────────────── */
body.fx-about .fx-about-stats-sec { padding-block: 18px 28px; }
.fx-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.fx-about-stat {
    padding: 18px 16px;
    border-radius: 18px;
    background: var(--a-card-strong);
    border: 1px solid var(--a-stroke);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.fx-about-stat:hover {
    transform: translateY(-3px);
    border-color: var(--a-stroke-h);
}
.fx-about-stat::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: currentColor;
    opacity: .55;
}
.fx-about-stat--violet { color: var(--a-violet); }
.fx-about-stat--cyan   { color: var(--a-cyan); }
.fx-about-stat--pink   { color: var(--a-pink); }
.fx-about-stat--amber  { color: var(--a-amber); }
.fx-about-stat--mint   { color: var(--a-mint); }
.fx-about-stat__num {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    font-weight: 800;
    font-size: clamp(22px, 4vw, 30px);
    line-height: 1;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.fx-about-stat__val {
    background-image: linear-gradient(180deg, #fff 0%, currentColor 130%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.fx-about-stat__suf {
    color: currentColor;
    font-size: .55em;
    font-weight: 700;
}
.fx-about-stat__lbl {
    color: rgba(255,255,255,.9);
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 2px;
}
.fx-about-stat__sub {
    color: rgba(255,255,255,.55);
    font-size: 11.5px;
}
.fx-about-stats__foot {
    text-align: center;
    color: rgba(255,255,255,.55);
    font-size: 12.5px;
    margin-top: 18px;
    font-style: italic;
}

/* ── Why-choose comparison table ─────────────────────── */
body.fx-about .fx-about-why-sec { padding-block: 24px 28px; }
.fx-about-why {
    border-radius: 22px;
    background: var(--a-card-strong);
    border: 1px solid var(--a-stroke);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    overflow: hidden;
}
.fx-about-why__head {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(168,85,247,.16);
    background: linear-gradient(180deg, rgba(168,85,247,.08), transparent);
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.fx-about-why__head-us   { color: var(--a-mint); }
.fx-about-why__head-them { color: rgba(255,255,255,.4); }
.fx-about-why__row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,.04);
    align-items: center;
    transition: background .2s;
}
.fx-about-why__row:last-child { border-bottom: 0; }
.fx-about-why__row:hover { background: rgba(168,85,247,.04); }
.fx-about-why__cat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}
.fx-about-why__icon {
    font-size: 20px;
    width: 34px; height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(168,85,247,.1);
    border: 1px solid rgba(168,85,247,.18);
}
.fx-about-why__us {
    color: rgba(255,255,255,.92);
    font-size: 13.5px;
    font-weight: 600;
    display: flex; align-items: center; gap: 8px;
}
.fx-about-why__check {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--a-mint), var(--a-mint-2));
    display: grid; place-items: center;
    color: #04241a;
    flex-shrink: 0;
}
.fx-about-why__check svg { width: 13px; height: 13px; }
.fx-about-why__them {
    color: rgba(255,255,255,.5);
    font-size: 13px;
    text-decoration: line-through;
    text-decoration-color: rgba(236,72,153,.45);
    display: flex; align-items: center; gap: 8px;
}
.fx-about-why__cross {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(236,72,153,.16);
    border: 1px solid rgba(236,72,153,.3);
    display: grid; place-items: center;
    color: var(--a-pink);
    flex-shrink: 0;
}
.fx-about-why__cross svg { width: 12px; height: 12px; }

/* ── Values grid (tone cards) ────────────────────────── */
body.fx-about .fx-about-values-sec { padding-block: 32px; }
.fx-about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.fx-about-value {
    padding: 22px 20px 20px;
    border-radius: 20px;
    background: var(--a-card-strong);
    border: 1px solid var(--a-stroke);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.fx-about-value:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -18px rgba(168,85,247,.45);
}
.fx-about-value::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 60px; height: 60px;
    background: radial-gradient(circle at top left, currentColor, transparent 70%);
    opacity: .18;
    pointer-events: none;
}
.fx-about-value--violet { color: var(--a-violet); }
.fx-about-value--cyan   { color: var(--a-cyan); }
.fx-about-value--mint   { color: var(--a-mint); }
.fx-about-value--amber  { color: var(--a-amber); }
.fx-about-value--pink   { color: var(--a-pink); }
.fx-about-value--violet:hover { border-color: rgba(168,85,247,.45); }
.fx-about-value--cyan:hover   { border-color: rgba(6,224,255,.45); }
.fx-about-value--mint:hover   { border-color: rgba(52,211,153,.5); }
.fx-about-value--amber:hover  { border-color: rgba(251,191,36,.45); }
.fx-about-value--pink:hover   { border-color: rgba(236,72,153,.45); }
.fx-about-value__icon {
    display: inline-grid;
    place-items: center;
    width: 48px; height: 48px;
    font-size: 26px;
    border-radius: 14px;
    background: color-mix(in srgb, currentColor 14%, transparent);
    border: 1px solid color-mix(in srgb, currentColor 30%, transparent);
    margin-bottom: 14px;
}
.fx-about-value__t {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.25;
}
.fx-about-value__d {
    color: rgba(255,255,255,.68);
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
}

/* ── Story / timeline ────────────────────────────────── */
body.fx-about .fx-about-story-sec { padding-block: 30px 32px; }
.fx-about-story {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.fx-about-story::before {
    content: "";
    position: absolute;
    top: 8px; bottom: 8px;
    left: 64px;
    width: 2px;
    background: linear-gradient(180deg, rgba(168,85,247,.5) 0%, rgba(52,211,153,.3) 100%);
}
.fx-about-story__item {
    display: grid;
    grid-template-columns: 128px 1fr;
    gap: 24px;
    align-items: flex-start;
    position: relative;
}
.fx-about-story__mark {
    width: 128px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(168,85,247,.1);
    border: 1px solid rgba(168,85,247,.26);
    text-align: center;
    position: relative;
    z-index: 1;
}
.fx-about-story__mark::after {
    content: "";
    position: absolute;
    top: 50%; right: -14px;
    transform: translateY(-50%);
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--a-violet);
    border: 3px solid var(--a-ink);
    box-shadow: 0 0 0 3px rgba(168,85,247,.3);
}
.fx-about-story__item.is-current .fx-about-story__mark {
    background: linear-gradient(145deg, var(--a-mint), var(--a-mint-2));
    border-color: var(--a-mint);
    box-shadow: 0 10px 28px -8px rgba(52,211,153,.55);
}
.fx-about-story__item.is-current .fx-about-story__mark::after {
    background: var(--a-mint);
    box-shadow: 0 0 0 3px rgba(52,211,153,.35);
    animation: fxAboutPulse 2s ease-out infinite;
}
.fx-about-story__y {
    display: block;
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}
.fx-about-story__item.is-current .fx-about-story__y { color: #04241a; }
.fx-about-story__q {
    display: block;
    color: rgba(255,255,255,.6);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    margin-top: 4px;
}
.fx-about-story__item.is-current .fx-about-story__q { color: rgba(4,36,26,.7); }
.fx-about-story__body {
    padding: 14px 18px;
    background: var(--a-card-strong);
    border: 1px solid var(--a-stroke);
    border-radius: 16px;
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
}
.fx-about-story__tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(52,211,153,.12);
    border: 1px solid rgba(52,211,153,.3);
    color: var(--a-mint);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.fx-about-story__item.is-current .fx-about-story__tag {
    background: rgba(168,85,247,.14);
    border-color: rgba(168,85,247,.35);
    color: var(--a-violet);
}
.fx-about-story__t {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 6px;
}
.fx-about-story__d {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ── Licensing cards ─────────────────────────────────── */
body.fx-about .fx-about-lic-sec { padding-block: 32px; }
.fx-about-lic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.fx-about-lic__card {
    padding: 20px;
    border-radius: 20px;
    background: var(--a-card-strong);
    border: 1px solid var(--a-stroke);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    transition: transform .3s ease, border-color .3s ease;
    position: relative;
    overflow: hidden;
}
.fx-about-lic__card:hover { transform: translateY(-3px); }
.fx-about-lic__card--violet { color: var(--a-violet); }
.fx-about-lic__card--cyan   { color: var(--a-cyan); }
.fx-about-lic__card--mint   { color: var(--a-mint); }
.fx-about-lic__card--amber  { color: var(--a-amber); }
.fx-about-lic__card--pink   { color: var(--a-pink); }
.fx-about-lic__card--violet:hover { border-color: rgba(168,85,247,.5); }
.fx-about-lic__card--cyan:hover   { border-color: rgba(6,224,255,.5); }
.fx-about-lic__card--mint:hover   { border-color: rgba(52,211,153,.5); }
.fx-about-lic__card--amber:hover  { border-color: rgba(251,191,36,.5); }
.fx-about-lic__card--pink:hover   { border-color: rgba(236,72,153,.5); }
.fx-about-lic__head {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 12px;
}
.fx-about-lic__icon {
    display: grid;
    place-items: center;
    width: 48px; height: 48px;
    font-size: 24px;
    border-radius: 14px;
    background: color-mix(in srgb, currentColor 14%, transparent);
    border: 1px solid color-mix(in srgb, currentColor 32%, transparent);
    flex-shrink: 0;
}
.fx-about-lic__t {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.25;
}
.fx-about-lic__id {
    color: currentColor;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.fx-about-lic__d {
    color: rgba(255,255,255,.68);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* ── Team grid ───────────────────────────────────────── */
body.fx-about .fx-about-team-sec { padding-block: 32px; }
.fx-about-team {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.fx-about-team__card {
    padding: 22px 18px;
    border-radius: 20px;
    background: var(--a-card-strong);
    border: 1px solid var(--a-stroke);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    text-align: center;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.fx-about-team__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -16px rgba(168,85,247,.4);
}
.fx-about-team__card--violet { --tt: var(--a-violet); }
.fx-about-team__card--cyan   { --tt: var(--a-cyan); }
.fx-about-team__card--pink   { --tt: var(--a-pink); }
.fx-about-team__card--amber  { --tt: var(--a-amber); }
.fx-about-team__card--mint   { --tt: var(--a-mint); }
.fx-about-team__card:hover { border-color: color-mix(in srgb, var(--tt) 55%, transparent); }
.fx-about-team__avatar {
    width: 72px; height: 72px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(145deg,
        color-mix(in srgb, var(--tt) 85%, #1a0f28 15%),
        color-mix(in srgb, var(--tt) 45%, #0d1b26 55%));
    display: grid;
    place-items: center;
    color: #fff;
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: .04em;
    box-shadow: 0 12px 28px -10px color-mix(in srgb, var(--tt) 65%, transparent);
    border: 2px solid rgba(255,255,255,.08);
}
.fx-about-team__name {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 2px;
}
.fx-about-team__role {
    display: block;
    color: var(--tt);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.fx-about-team__bio {
    color: rgba(255,255,255,.65);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

/* ── Testimonials grid ───────────────────────────────── */
body.fx-about .fx-about-tst-sec { padding-block: 32px; }
.fx-about-tst {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.fx-about-tst__card {
    padding: 22px 20px;
    border-radius: 20px;
    background: var(--a-card-strong);
    border: 1px solid var(--a-stroke);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    margin: 0;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, border-color .3s ease;
}
.fx-about-tst__card::before {
    content: '\201C'; /* left double quote */
    position: absolute;
    top: 8px; right: 16px;
    font-family: Georgia, serif;
    font-size: 70px;
    line-height: 1;
    color: currentColor;
    opacity: .16;
    pointer-events: none;
}
.fx-about-tst__card--violet { color: var(--a-violet); }
.fx-about-tst__card--cyan   { color: var(--a-cyan); }
.fx-about-tst__card--pink   { color: var(--a-pink); }
.fx-about-tst__card--amber  { color: var(--a-amber); }
.fx-about-tst__card--mint   { color: var(--a-mint); }
.fx-about-tst__card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, currentColor 50%, transparent); }
.fx-about-tst__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255,255,255,.18);
}
.fx-about-tst__stars .is-on { color: var(--a-amber); }
body.fx-about .fx-about-tst__q {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 14px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-style: italic;
    font-weight: 500;
    font-family: inherit;
}
.fx-about-tst__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.06);
}
.fx-about-tst__n {
    color: rgba(255,255,255,.92);
    font-size: 13px;
    font-weight: 700;
}
.fx-about-tst__n em {
    color: rgba(255,255,255,.5);
    font-weight: 500;
    font-style: normal;
}
.fx-about-tst__tag {
    padding: 3px 9px;
    border-radius: 999px;
    background: color-mix(in srgb, currentColor 14%, transparent);
    border: 1px solid color-mix(in srgb, currentColor 30%, transparent);
    color: currentColor;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .06em;
}
.fx-about-tst__foot {
    text-align: center;
    color: rgba(255,255,255,.6);
    font-size: 13px;
    margin-top: 22px;
}
.fx-about-tst__foot strong { color: var(--a-amber); font-weight: 800; }

/* ── Press & recognition ─────────────────────────────── */
body.fx-about .fx-about-press-sec { padding-block: 30px 32px; }
.fx-about-press {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 26px;
}
.fx-about-press__card {
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(6,224,255,.05), var(--a-card));
    border: 1px solid rgba(6,224,255,.18);
    margin: 0;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    transition: border-color .3s ease, transform .3s ease;
}
.fx-about-press__card:hover {
    border-color: rgba(6,224,255,.45);
    transform: translateY(-3px);
}
.fx-about-press__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(255,255,255,.08);
}
.fx-about-press__src {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    color: var(--a-cyan);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
}
.fx-about-press__date {
    color: rgba(255,255,255,.5);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}
body.fx-about .fx-about-press__q {
    color: rgba(255,255,255,.86);
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-family: inherit;
    font-weight: 500;
}
.fx-about-press__awards {
    padding: 22px 22px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(251,191,36,.05), rgba(168,85,247,.04));
    border: 1px solid rgba(251,191,36,.22);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.fx-about-press__awards-t {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    color: var(--a-amber);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin: 0 0 14px;
}
.fx-about-press__awards-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.fx-about-press__award {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
}
.fx-about-press__award-y {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    color: var(--a-amber);
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}
.fx-about-press__award-t {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 2px;
}
.fx-about-press__award-src {
    color: rgba(255,255,255,.55);
    font-size: 11.5px;
}

/* ── Responsible gambling panel ──────────────────────── */
body.fx-about .fx-about-resp-sec { padding-block: 30px 32px; }
.fx-about-resp {
    padding: 32px 28px;
    border-radius: 24px;
    background:
        radial-gradient(420px 240px at 12% 10%, rgba(52,211,153,.14), transparent 60%),
        radial-gradient(380px 220px at 88% 92%, rgba(168,85,247,.1), transparent 60%),
        linear-gradient(180deg, rgba(14,20,36,.9), rgba(14,20,36,.78));
    border: 1px solid rgba(52,211,153,.28);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.fx-about-resp__head { text-align: center; max-width: 640px; margin: 0 auto 24px; }
.fx-about-resp__head .fx-section__desc { margin-bottom: 16px; }
.fx-about-resp__meta {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.fx-about-resp__meta-pill {
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(52,211,153,.12);
    border: 1px solid rgba(52,211,153,.35);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.fx-about-resp__meta-pill span { font-size: 14px; }
.fx-about-resp__tools {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.fx-about-resp__tool {
    padding: 18px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(52,211,153,.2);
    transition: border-color .3s ease, transform .3s ease;
}
.fx-about-resp__tool:hover {
    border-color: rgba(52,211,153,.55);
    transform: translateY(-2px);
}
.fx-about-resp__tool-i {
    display: inline-grid;
    place-items: center;
    width: 40px; height: 40px;
    font-size: 22px;
    border-radius: 12px;
    background: rgba(52,211,153,.14);
    border: 1px solid rgba(52,211,153,.3);
    margin-bottom: 12px;
}
.fx-about-resp__tool-t {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px;
}
.fx-about-resp__tool-d {
    color: rgba(255,255,255,.68);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

/* ── FAQ accordion ───────────────────────────────────── */
body.fx-about .fx-about-faq-sec { padding-block: 32px; }
.fx-about-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 860px;
    margin: 0 auto;
}
.fx-about-faq__item {
    border-radius: 16px;
    background: var(--a-card-strong);
    border: 1px solid var(--a-stroke);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    overflow: hidden;
    transition: border-color .3s ease;
}
.fx-about-faq__item[open] { border-color: rgba(168,85,247,.5); }
.fx-about-faq__q {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    cursor: pointer;
    list-style: none;
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}
.fx-about-faq__q::-webkit-details-marker { display: none; }
.fx-about-faq__q-n {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    color: var(--a-violet);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .06em;
    flex-shrink: 0;
}
.fx-about-faq__q-t { flex: 1; line-height: 1.35; }
.fx-about-faq__q-chev {
    display: grid;
    place-items: center;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(168,85,247,.12);
    color: var(--a-violet);
    transition: transform .3s ease, background .3s ease;
    flex-shrink: 0;
}
.fx-about-faq__q-chev svg { width: 14px; height: 14px; }
.fx-about-faq__item[open] .fx-about-faq__q-chev { transform: rotate(180deg); background: rgba(168,85,247,.22); }
.fx-about-faq__a {
    margin: 0;
    padding: 0 18px 18px 48px;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.65;
}

/* ── Tablet ≤ 960px ──────────────────────────────────── */
@media (max-width: 960px) {
    body.fx-about .fx-page-hero__inner { max-width: 100%; padding-bottom: 280px; }
    .fx-about-herofx {
        width: 260px; height: 260px;
        top: auto; bottom: 16px;
        left: 50%; right: auto;
        transform: translateX(-50%);
    }
    .fx-about-herofx__ring--1 { width: 140px; height: 140px; }
    .fx-about-herofx__ring--2 { width: 200px; height: 200px; }
    .fx-about-herofx__ring--3 { width: 260px; height: 260px; }
    .fx-about-herofx__shield { width: 84px; height: 96px; }
    .fx-about-herofx__shield-check { width: 32px; height: 32px; }
    .fx-about-herofx__shield-check svg { width: 18px; height: 18px; }
    .fx-about-herofx__shield-label { font-size: 8px; }
    .fx-about-herofx__badge { padding: 6px 10px; gap: 6px; }
    .fx-about-herofx__badge-icon { font-size: 16px; }
    .fx-about-herofx__badge-text strong { font-size: 11px; }
    .fx-about-herofx__badge-text em { font-size: 9px; }
    .fx-about-herofx__badge--a { top: 4%; left: -10px; }
    .fx-about-herofx__badge--b { top: 44%; right: -10px; }
    .fx-about-herofx__badge--c { bottom: 4%; left: 4%; }
    .fx-about-herofx__flag { font-size: 9px; padding: 5px 9px; right: 4px; }
    .fx-about-mission { grid-template-columns: 1fr; gap: 24px; }
    .fx-about-mission__visual { max-width: 480px; }
    .fx-about-stats { grid-template-columns: repeat(2, 1fr); }
    .fx-about-values { grid-template-columns: repeat(2, 1fr); }
    .fx-about-lic { grid-template-columns: repeat(2, 1fr); }
    .fx-about-team { grid-template-columns: repeat(2, 1fr); }
    .fx-about-tst { grid-template-columns: repeat(2, 1fr); }
    .fx-about-press { grid-template-columns: 1fr; }
    .fx-about-resp__tools { grid-template-columns: repeat(2, 1fr); }
    .fx-about-why__head,
    .fx-about-why__row { grid-template-columns: 1.2fr 1fr 1fr; }
}

/* ── Mobile ≤ 640px (primary target: 390px) ──────────── */
@media (max-width: 640px) {
    .fx-about-trust { gap: 10px; }
    .fx-about-trust__item {
        min-width: 44%;
        border-left: 0;
        border-top: 2px solid rgba(168,85,247,.24);
        padding: 6px 0 0;
    }
    .fx-about-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
    .fx-about-stat { padding: 14px 13px; }
    .fx-about-stat__num { font-size: 22px; }
    .fx-about-values { grid-template-columns: 1fr; }
    .fx-about-lic { grid-template-columns: 1fr; }
    .fx-about-team { grid-template-columns: 1fr 1fr; gap: 12px; }
    .fx-about-team__card { padding: 18px 14px; }
    .fx-about-team__avatar { width: 58px; height: 58px; font-size: 18px; }
    .fx-about-team__name { font-size: 14.5px; }
    .fx-about-team__bio { font-size: 12.5px; }
    .fx-about-tst { grid-template-columns: 1fr; }
    .fx-about-resp { padding: 24px 18px; }
    .fx-about-resp__tools { grid-template-columns: 1fr; }
    .fx-about-press__awards-list { grid-template-columns: 1fr; }

    /* Story stacks vertically */
    .fx-about-story::before { left: 22px; }
    .fx-about-story__item { grid-template-columns: 64px 1fr; gap: 14px; }
    .fx-about-story__mark { width: 64px; padding: 8px 6px; }
    .fx-about-story__mark::after { display: none; }
    .fx-about-story__y { font-size: 15px; }
    .fx-about-story__q { font-size: 10px; margin-top: 2px; }
    .fx-about-story__body { padding: 12px 14px; }
    .fx-about-story__t { font-size: 15px; }
    .fx-about-story__d { font-size: 13px; }

    /* Why table → stacked card-rows on mobile */
    .fx-about-why__head { display: none; }
    .fx-about-why__row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 14px 14px;
    }
    .fx-about-why__cat {
        font-size: 13.5px;
        margin-bottom: 4px;
    }
    .fx-about-why__us::before {
        content: "4six: ";
        color: var(--a-mint);
        font-weight: 800;
        letter-spacing: .04em;
        font-size: 11px;
        text-transform: uppercase;
        margin-right: 4px;
    }
    .fx-about-why__them::before {
        content: "Them: ";
        color: rgba(255,255,255,.4);
        font-weight: 800;
        letter-spacing: .04em;
        font-size: 11px;
        text-transform: uppercase;
        margin-right: 4px;
    }

    .fx-about-mission__pills { gap: 6px; }
    .fx-about-mission__pill { font-size: 11.5px; padding: 6px 10px; }
    .fx-about-mission__stamp { width: 68px; height: 68px; font-size: 9px; top: -4px; right: 4px; }
    .fx-about-mission__stamp svg { width: 22px; height: 22px; }

    .fx-about-faq__q { padding: 14px 14px; font-size: 14px; gap: 10px; }
    .fx-about-faq__a { padding: 0 14px 14px 40px; font-size: 13.5px; }
}

/* ── Very small ≤ 380px ──────────────────────────────── */
@media (max-width: 380px) {
    .fx-about-stats { grid-template-columns: 1fr; }
    .fx-about-team { grid-template-columns: 1fr; }
    .fx-about-trust__item { min-width: 100%; }
}

/* ── Reduced motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .fx-about-herofx__ring,
    .fx-about-herofx__shield,
    .fx-about-herofx__badge,
    .fx-about-herofx__spark,
    .fx-about-herofx__flag-dot,
    .fx-about-mission__card-dot,
    .fx-about-story__item.is-current .fx-about-story__mark::after {
        animation: none !important;
        transition: none !important;
    }
}

/* =====================================================================
   CONTACT PAGE — body.fx-contact scope
   ===================================================================== */

body.fx-contact {
    --c-mint:   #34d399;
    --c-mint-2: #10b981;
    --c-cyan:   #06e0ff;
    --c-violet: #a855f7;
    --c-pink:   #ec4899;
    --c-amber:  #fbbf24;
    --c-ink:    #04070f;
    --c-card:        rgba(18, 20, 34, 0.42);
    --c-card-strong: rgba(22, 24, 40, 0.72);
    --c-stroke:      rgba(255, 255, 255, 0.08);
    --c-stroke-soft: rgba(255, 255, 255, 0.05);
}

body.fx-contact .fx-main {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(900px 520px at 8% -4%, rgba(52,211,153,.12), transparent 70%),
        radial-gradient(760px 460px at 100% 28%, rgba(6,224,255,.10), transparent 70%),
        radial-gradient(700px 520px at 20% 92%, rgba(168,85,247,.08), transparent 72%),
        var(--c-ink);
}

body.fx-contact .fx-page-hero { position: relative; }
body.fx-contact .fx-page-hero__inner { position: relative; z-index: 2; max-width: 640px; }

/* ── Hero FX: pulsing core + floating bubbles ─────────── */
.fx-contact-herofx {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    width: 360px;
    height: 360px;
    pointer-events: none;
    z-index: 1;
}
.fx-contact-herofx__pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px solid rgba(52,211,153,.24);
    animation: fxContactPulse 3s ease-out infinite;
}
.fx-contact-herofx__pulse--1 { width: 140px; height: 140px; animation-delay: 0s; }
.fx-contact-herofx__pulse--2 { width: 220px; height: 220px; animation-delay: -1s; border-color: rgba(6,224,255,.18); }
.fx-contact-herofx__pulse--3 { width: 320px; height: 320px; animation-delay: -2s; border-color: rgba(168,85,247,.14); }

@keyframes fxContactPulse {
    0%   { transform: translate(-50%, -50%) scale(.7); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0; }
}

.fx-contact-herofx__core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 96px; height: 96px;
    border-radius: 28px;
    background: linear-gradient(145deg, var(--c-mint), var(--c-mint-2));
    color: #04241a;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 18px 56px -12px rgba(52,211,153,.58), inset 0 -4px 14px rgba(4,36,26,.3);
}
.fx-contact-herofx__dot {
    position: absolute;
    top: 10px; right: 10px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 3px var(--c-mint), 0 0 0 6px rgba(52,211,153,.3);
    animation: fxContactDot 1.8s ease-in-out infinite;
}
@keyframes fxContactDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .6; transform: scale(1.3); }
}

.fx-contact-herofx__bubble {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px 9px 12px;
    border-radius: 16px;
    background: rgba(16,22,30,.85);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    box-shadow: 0 12px 32px -8px rgba(0,0,0,.5);
    animation: fxContactDrift 6s ease-in-out infinite;
}
.fx-contact-herofx__bubble-emoji { font-size: 22px; }
.fx-contact-herofx__bubble-text { display: flex; flex-direction: column; line-height: 1.1; }
.fx-contact-herofx__bubble-text strong {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    color: #fff; font-size: 13.5px; font-weight: 800;
}
.fx-contact-herofx__bubble-text em {
    font-style: normal;
    color: rgba(255,255,255,.55);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .02em;
}
.fx-contact-herofx__bubble--a { top: 6%; left: -18px; border-color: rgba(52,211,153,.45); animation-delay: -1s; }
.fx-contact-herofx__bubble--b { top: 50%; right: -24px; border-color: rgba(6,224,255,.45); animation-delay: -3s; }
.fx-contact-herofx__bubble--c { bottom: 4%; left: 10%; border-color: rgba(251,191,36,.45); animation-delay: -5s; }

@keyframes fxContactDrift {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

.fx-contact-herofx__spark {
    position: absolute;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--c-cyan);
    box-shadow: 0 0 14px rgba(6,224,255,.8);
    animation: fxContactSpark 3s ease-in-out infinite;
}
.fx-contact-herofx__spark--1 { top: 18%; right: 24%; animation-delay: 0s; }
.fx-contact-herofx__spark--2 { top: 62%; left: 18%; animation-delay: -0.7s; }
.fx-contact-herofx__spark--3 { bottom: 24%; right: 20%; animation-delay: -1.4s; background: var(--c-mint); box-shadow: 0 0 14px rgba(52,211,153,.8); }
.fx-contact-herofx__spark--4 { top: 38%; left: 44%; animation-delay: -2.1s; background: var(--c-amber); box-shadow: 0 0 14px rgba(251,191,36,.8); }

@keyframes fxContactSpark {
    0%, 100% { opacity: 0; transform: scale(.7); }
    50%      { opacity: 1; transform: scale(1.2); }
}

/* ── Trust strip ──────────────────────────────────────── */
body.fx-contact .fx-contact-trust-sec { padding-block: 10px 8px; }
.fx-contact-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px 40px;
    padding: 18px 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(52,211,153,.06), rgba(22,24,40,.6));
    border: 1px solid var(--c-stroke);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.fx-contact-trust__item {
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    position: relative;
    padding: 0 8px;
}
.fx-contact-trust__item + .fx-contact-trust__item::before {
    content: "";
    position: absolute;
    left: -20px; top: 50%;
    transform: translateY(-50%);
    height: 30px; width: 1px;
    background: rgba(255,255,255,.08);
}
.fx-contact-trust__k {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    color: var(--c-mint);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1;
}
.fx-contact-trust__v {
    color: rgba(255,255,255,.6);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ── Channels grid ────────────────────────────────────── */
body.fx-contact .fx-contact-channels-sec { padding-block: 30px 32px; }
.fx-contact-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.fx-contact-channel {
    display: flex;
    flex-direction: column;
    padding: 22px 22px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,.04), var(--c-card));
    border: 1px solid var(--c-stroke);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.fx-contact-channel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(400px 180px at 80% -10%, color-mix(in srgb, currentColor 18%, transparent), transparent 70%);
    opacity: .6;
    pointer-events: none;
    transition: opacity .35s ease;
}
.fx-contact-channel:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, currentColor 45%, transparent);
    box-shadow: 0 20px 48px -16px color-mix(in srgb, currentColor 35%, transparent);
}
.fx-contact-channel:hover::before { opacity: 1; }
.fx-contact-channel--mint   { color: var(--c-mint); }
.fx-contact-channel--cyan   { color: var(--c-cyan); }
.fx-contact-channel--violet { color: var(--c-violet); }
.fx-contact-channel--amber  { color: var(--c-amber); }
.fx-contact-channel--pink   { color: var(--c-pink); }

.fx-contact-channel.is-primary {
    grid-column: span 2;
    background: linear-gradient(145deg, rgba(52,211,153,.12), rgba(16,185,129,.04) 45%, var(--c-card-strong));
    border-color: color-mix(in srgb, var(--c-mint) 40%, transparent);
}
.fx-contact-channel.is-primary::after {
    content: "";
    position: absolute;
    top: 22px; right: 22px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--c-mint);
    box-shadow: 0 0 0 4px rgba(52,211,153,.22), 0 0 0 8px rgba(52,211,153,.10);
    animation: fxContactDot 1.8s ease-in-out infinite;
}

.fx-contact-channel__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    position: relative;
}
.fx-contact-channel__tag {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: color-mix(in srgb, currentColor 80%, #fff 20%);
}
.fx-contact-channel__badge {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 999px;
    background: color-mix(in srgb, currentColor 15%, transparent);
    border: 1px solid color-mix(in srgb, currentColor 30%, transparent);
    color: currentColor;
    letter-spacing: .04em;
}
.fx-contact-channel__icon {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
}
.fx-contact-channel__title {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 2px;
    letter-spacing: -.01em;
    position: relative;
}
.fx-contact-channel__value {
    color: currentColor;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    margin-bottom: 10px;
    position: relative;
    word-break: break-word;
}
.fx-contact-channel__lede {
    color: rgba(255,255,255,.72);
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0 0 14px;
    position: relative;
}
.fx-contact-channel__rows {
    display: grid;
    gap: 6px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(0,0,0,.25);
    border: 1px solid var(--c-stroke-soft);
    margin-bottom: 16px;
    position: relative;
}
.fx-contact-channel__row {
    display: flex; justify-content: space-between;
    font-size: 12.5px;
}
.fx-contact-channel__row-k { color: rgba(255,255,255,.55); font-weight: 600; }
.fx-contact-channel__row-v { color: #fff; font-weight: 700; }
.fx-contact-channel__cta {
    margin-top: auto;
    padding-top: 4px;
    color: currentColor;
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
    position: relative;
}

/* ── Telegram feature band ────────────────────────────── */
body.fx-contact .fx-contact-tg-sec { padding-block: 28px 32px; }
.fx-contact-tg {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: center;
    padding: 32px 34px;
    border-radius: 28px;
    background:
        radial-gradient(500px 300px at 0% 0%, rgba(6,224,255,.14), transparent 70%),
        radial-gradient(420px 260px at 100% 100%, rgba(52,211,153,.10), transparent 70%),
        linear-gradient(180deg, rgba(22,24,40,.6), rgba(12,14,24,.8));
    border: 1px solid rgba(6,224,255,.2);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.fx-contact-tg__body > .fx-eyebrow { color: var(--c-cyan); }
.fx-contact-tg__body .fx-section__title { margin-bottom: 10px; }
.fx-contact-tg__body .fx-section__title em {
    color: var(--c-cyan);
    font-style: normal;
    background: linear-gradient(120deg, var(--c-cyan), #0891b2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.fx-contact-tg__perks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 22px 0 26px;
}
.fx-contact-tg__perk {
    display: flex; gap: 12px; align-items: flex-start;
}
.fx-contact-tg__perk-i {
    flex-shrink: 0;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: rgba(6,224,255,.1);
    border: 1px solid rgba(6,224,255,.25);
    font-size: 18px;
}
.fx-contact-tg__perk-t {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 2px;
}
.fx-contact-tg__perk-d {
    color: rgba(255,255,255,.62);
    font-size: 12.5px;
    line-height: 1.5;
}
.fx-contact-tg__cta { align-self: flex-start; }

.fx-contact-tg__visual {
    display: flex;
    justify-content: center;
}
.fx-contact-tg__screen {
    width: 100%;
    max-width: 380px;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(6,224,255,.08), rgba(16,22,30,.9));
    border: 1px solid rgba(6,224,255,.24);
    box-shadow: 0 30px 80px -24px rgba(0,0,0,.7);
}
.fx-contact-tg__screen-head {
    display: flex; gap: 10px; align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 12px;
}
.fx-contact-tg__screen-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--c-cyan), #0891b2);
    color: #04070f;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    font-size: 18px;
    font-weight: 900;
}
.fx-contact-tg__screen-n {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}
.fx-contact-tg__screen-s {
    color: rgba(255,255,255,.55);
    font-size: 11.5px;
    font-weight: 600;
    display: flex; align-items: center; gap: 6px;
}
.fx-contact-tg__screen-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--c-mint);
    box-shadow: 0 0 0 2px rgba(52,211,153,.25);
}
.fx-contact-tg__msg {
    padding: 11px 13px;
    border-radius: 14px;
    background: rgba(6,224,255,.08);
    border: 1px solid rgba(6,224,255,.16);
    margin-bottom: 10px;
}
.fx-contact-tg__msg--light {
    background: rgba(52,211,153,.08);
    border-color: rgba(52,211,153,.16);
}
.fx-contact-tg__msg-t {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    color: #fff;
    font-size: 13.5px;
    font-weight: 800;
    margin-bottom: 4px;
}
.fx-contact-tg__msg-d {
    color: rgba(255,255,255,.72);
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 6px;
}
.fx-contact-tg__msg-d strong { color: var(--c-amber); font-weight: 800; }
.fx-contact-tg__msg-f {
    color: rgba(255,255,255,.4);
    font-size: 10.5px;
    font-weight: 600;
}

/* ── Hours / availability table ───────────────────────── */
body.fx-contact .fx-contact-hours-sec { padding-block: 30px 28px; }
.fx-contact-hours {
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    background: var(--c-card);
    border: 1px solid var(--c-stroke);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.fx-contact-hours__row {
    display: grid;
    grid-template-columns: 44px 1.4fr 1fr 140px;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(12,14,24,.5);
    border: 1px solid rgba(255,255,255,.04);
    transition: background .3s ease, border-color .3s ease;
}
.fx-contact-hours__row:hover {
    background: rgba(12,14,24,.75);
    border-color: rgba(52,211,153,.2);
}
.fx-contact-hours__icon {
    font-size: 22px;
    line-height: 1;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
}
.fx-contact-hours__t {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 2px;
}
.fx-contact-hours__h {
    color: rgba(255,255,255,.55);
    font-size: 12px;
    font-weight: 600;
}
.fx-contact-hours__sla {
    color: var(--c-cyan);
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
}
.fx-contact-hours__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(52,211,153,.1);
    border: 1px solid rgba(52,211,153,.3);
    color: var(--c-mint);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .04em;
    justify-self: end;
}
.fx-contact-hours__dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--c-mint);
    box-shadow: 0 0 0 2px rgba(52,211,153,.2);
    animation: fxContactDot 1.8s ease-in-out infinite;
}

/* ── Support promise (no bots) ────────────────────────── */
body.fx-contact .fx-contact-promise-sec { padding-block: 28px 30px; }
.fx-contact-promise {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.fx-contact-promise__card {
    padding: 22px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(52,211,153,.05), var(--c-card));
    border: 1px solid var(--c-stroke);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    transition: transform .35s ease, border-color .35s ease;
}
.fx-contact-promise__card:hover {
    transform: translateY(-4px);
    border-color: rgba(52,211,153,.3);
}
.fx-contact-promise__i {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(52,211,153,.1);
    border: 1px solid rgba(52,211,153,.22);
    font-size: 22px;
    margin-bottom: 12px;
}
.fx-contact-promise__t {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 8px;
    letter-spacing: -.01em;
}
.fx-contact-promise__d {
    color: rgba(255,255,255,.68);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

/* ── Partnership cards ────────────────────────────────── */
body.fx-contact .fx-contact-partner-sec { padding-block: 28px 30px; }
.fx-contact-partner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.fx-contact-partner__card {
    display: flex;
    flex-direction: column;
    padding: 26px 22px 22px;
    border-radius: 22px;
    background: var(--c-card-strong);
    border: 1px solid var(--c-stroke);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.fx-contact-partner__card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, color-mix(in srgb, currentColor 45%, transparent), transparent 55%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: .45;
    transition: opacity .35s ease;
}
.fx-contact-partner__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px -20px color-mix(in srgb, currentColor 35%, transparent);
}
.fx-contact-partner__card:hover::before { opacity: 1; }
.fx-contact-partner__card--violet { color: var(--c-violet); }
.fx-contact-partner__card--cyan   { color: var(--c-cyan); }
.fx-contact-partner__card--amber  { color: var(--c-amber); }

.fx-contact-partner__tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: currentColor;
    margin-bottom: 14px;
    position: relative;
}
.fx-contact-partner__title {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -.01em;
    position: relative;
}
.fx-contact-partner__desc {
    color: rgba(255,255,255,.7);
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0 0 20px;
    position: relative;
}
.fx-contact-partner__cta {
    margin-top: auto;
    color: currentColor;
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    font-size: 13px;
    font-weight: 800;
    position: relative;
}

/* ── Social row ───────────────────────────────────────── */
body.fx-contact .fx-contact-social-sec { padding-block: 28px 30px; }
.fx-contact-social {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.fx-contact-social__card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 18px;
    border-radius: 18px;
    background: var(--c-card);
    border: 1px solid var(--c-stroke);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    color: #fff;
    text-decoration: none;
    transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.fx-contact-social__card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, currentColor 45%, transparent);
    background: color-mix(in srgb, currentColor 6%, var(--c-card));
}
.fx-contact-social__card--cyan   { color: var(--c-cyan); }
.fx-contact-social__card--violet { color: var(--c-violet); }
.fx-contact-social__card--pink   { color: var(--c-pink); }
.fx-contact-social__card--mint   { color: var(--c-mint); }
.fx-contact-social__icon {
    flex-shrink: 0;
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: color-mix(in srgb, currentColor 14%, transparent);
    border: 1px solid color-mix(in srgb, currentColor 26%, transparent);
    color: currentColor;
}
.fx-contact-social__icon svg { width: 24px; height: 24px; }
.fx-contact-social__body { flex: 1; min-width: 0; }
.fx-contact-social__n {
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 2px;
}
.fx-contact-social__h {
    color: currentColor;
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.fx-contact-social__b {
    color: rgba(255,255,255,.5);
    font-size: 11.5px;
    font-weight: 600;
}
.fx-contact-social__arrow {
    color: currentColor;
    font-size: 18px;
    font-weight: 800;
    margin-left: 4px;
    transition: transform .3s ease;
}
.fx-contact-social__card:hover .fx-contact-social__arrow {
    transform: translateX(3px);
}

/* ── FAQ ──────────────────────────────────────────────── */
body.fx-contact .fx-contact-faq-sec { padding-block: 30px 38px; }
.fx-contact-faq {
    display: grid;
    gap: 10px;
    max-width: 860px;
    margin: 0 auto;
}
.fx-contact-faq__item {
    border-radius: 16px;
    background: var(--c-card);
    border: 1px solid var(--c-stroke);
    overflow: hidden;
    transition: border-color .3s ease, background .3s ease;
}
.fx-contact-faq__item[open] {
    border-color: rgba(52,211,153,.3);
    background: linear-gradient(180deg, rgba(52,211,153,.06), var(--c-card));
}
.fx-contact-faq__q {
    list-style: none;
    cursor: pointer;
    padding: 16px 18px;
    display: flex; align-items: center; gap: 14px;
    color: #fff;
    font-family: var(--fx-font-display, 'Sora', sans-serif);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -.005em;
    transition: color .3s ease;
}
.fx-contact-faq__q::-webkit-details-marker { display: none; }
.fx-contact-faq__q::marker { display: none; }
.fx-contact-faq__q-n {
    font-size: 12px;
    color: var(--c-mint);
    font-weight: 800;
    letter-spacing: .08em;
    min-width: 24px;
}
.fx-contact-faq__q-t { flex: 1; }
.fx-contact-faq__q-chev {
    width: 22px; height: 22px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    color: var(--c-mint);
    transition: transform .3s ease, background .3s ease;
}
.fx-contact-faq__item[open] .fx-contact-faq__q-chev { transform: rotate(180deg); background: rgba(52,211,153,.15); }
.fx-contact-faq__a {
    padding: 0 18px 18px 56px;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

/* ── Laptop ≤ 1180px ──────────────────────────────────── */
@media (max-width: 1180px) {
    .fx-contact-social { grid-template-columns: repeat(2, 1fr); }
}

/* ── Tablet ≤ 960px ───────────────────────────────────── */
@media (max-width: 960px) {
    body.fx-contact .fx-page-hero__inner { max-width: 100%; padding-bottom: 260px; }
    .fx-contact-herofx {
        width: 240px; height: 240px;
        top: auto; bottom: 16px;
        left: 50%; right: auto;
        transform: translateX(-50%);
    }
    .fx-contact-herofx__pulse--1 { width: 100px; height: 100px; }
    .fx-contact-herofx__pulse--2 { width: 160px; height: 160px; }
    .fx-contact-herofx__pulse--3 { width: 220px; height: 220px; }
    .fx-contact-herofx__core { width: 72px; height: 72px; border-radius: 20px; }
    .fx-contact-herofx__core svg { width: 28px; height: 28px; }
    .fx-contact-herofx__bubble { padding: 6px 10px 6px 8px; gap: 6px; }
    .fx-contact-herofx__bubble-emoji { font-size: 16px; }
    .fx-contact-herofx__bubble-text strong { font-size: 11px; }
    .fx-contact-herofx__bubble-text em { font-size: 9px; }
    .fx-contact-herofx__bubble--a { top: 0; left: -10px; }
    .fx-contact-herofx__bubble--b { top: 48%; right: -10px; }
    .fx-contact-herofx__bubble--c { bottom: 0; left: 4%; }

    .fx-contact-channels { grid-template-columns: repeat(2, 1fr); }
    .fx-contact-channel.is-primary { grid-column: span 2; }
    .fx-contact-tg { grid-template-columns: 1fr; padding: 26px 22px; gap: 22px; }
    .fx-contact-tg__perks { grid-template-columns: 1fr; gap: 10px; }
    .fx-contact-promise { grid-template-columns: repeat(2, 1fr); }
    .fx-contact-partner { grid-template-columns: 1fr; }
    .fx-contact-hours__row { grid-template-columns: 40px 1fr 110px; gap: 10px; }
    .fx-contact-hours__status { grid-column: 2 / -1; justify-self: start; margin-top: 4px; }
}

/* ── Mobile ≤ 640px ───────────────────────────────────── */
@media (max-width: 640px) {
    body.fx-contact .fx-page-hero__inner { padding-bottom: 240px; }
    .fx-contact-trust { gap: 18px 28px; padding: 14px 18px; }
    .fx-contact-trust__item + .fx-contact-trust__item::before { display: none; }
    .fx-contact-trust__k { font-size: 17px; }

    .fx-contact-channels { grid-template-columns: 1fr; }
    .fx-contact-channel.is-primary { grid-column: span 1; }
    .fx-contact-channel { padding: 20px 18px 18px; }
    .fx-contact-channel__icon { font-size: 30px; }
    .fx-contact-channel__title { font-size: 17px; }
    .fx-contact-channel__lede { font-size: 13px; }

    .fx-contact-promise { grid-template-columns: 1fr; }
    .fx-contact-social { grid-template-columns: 1fr; }

    .fx-contact-hours__row {
        grid-template-columns: 40px 1fr;
        grid-template-areas: "icon body" "icon sla" "status status";
        padding: 12px 14px;
    }
    .fx-contact-hours__icon { grid-area: icon; }
    .fx-contact-hours__body { grid-area: body; }
    .fx-contact-hours__sla  { grid-area: sla; justify-self: start; }
    .fx-contact-hours__status { grid-area: status; justify-self: start; margin-top: 2px; }

    .fx-contact-tg { padding: 22px 18px; }
    .fx-contact-tg__screen { padding: 14px; }

    .fx-contact-faq__q { padding: 14px 14px; font-size: 14px; gap: 10px; }
    .fx-contact-faq__a { padding: 0 14px 14px 44px; font-size: 13.5px; }
}

/* ── Very small ≤ 380px ──────────────────────────────── */
@media (max-width: 380px) {
    .fx-contact-trust { gap: 14px 18px; }
    .fx-contact-trust__k { font-size: 15px; }
}

/* ── Reduced motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .fx-contact-herofx__pulse,
    .fx-contact-herofx__dot,
    .fx-contact-herofx__bubble,
    .fx-contact-herofx__spark,
    .fx-contact-hours__dot,
    .fx-contact-channel.is-primary::after {
        animation: none !important;
        transition: none !important;
    }
}

/* ===========================================================
   FAQs PAGE  —  body.fx-faqs
   =========================================================== */

body.fx-faqs {
    --c-mint: #34d399;
    --c-cyan: #06e0ff;
    --c-violet: #a855f7;
    --c-pink: #ec4899;
    --c-amber: #fbbf24;
    --c-ink: #04070f;
    --c-card: rgba(255, 255, 255, 0.035);
    --c-card-strong: rgba(255, 255, 255, 0.06);
    --c-stroke: rgba(255, 255, 255, 0.09);
}

body.fx-faqs .fx-main {
    position: relative;
    isolation: isolate;
}

body.fx-faqs .fx-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 8%, rgba(168, 85, 247, 0.14), transparent 45%),
        radial-gradient(circle at 82% 20%, rgba(6, 224, 255, 0.08), transparent 50%),
        radial-gradient(circle at 50% 95%, rgba(52, 211, 153, 0.06), transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* ── Hero search box ──────────────────────────────────────── */
body.fx-faqs .fx-page-hero__inner { max-width: 780px; margin: 0 auto; text-align: center; }
body.fx-faqs .fx-page-hero__inner .fx-eyebrow { margin-left: auto; margin-right: auto; }

.fx-faqs-search {
    margin: 32px auto 0;
    max-width: 680px;
}
.fx-faqs-search__box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(4, 7, 15, 0.6);
    border: 1px solid var(--c-stroke);
    border-radius: 999px;
    padding: 4px 4px 4px 20px;
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.fx-faqs-search__box:focus-within {
    border-color: color-mix(in srgb, var(--c-violet) 50%, transparent);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--c-violet) 14%, transparent);
}
.fx-faqs-search__icon {
    width: 22px;
    height: 22px;
    color: rgba(255,255,255,0.55);
    flex-shrink: 0;
}
.fx-faqs-search__icon svg { width: 100%; height: 100%; }
.fx-faqs-search__input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font: 500 16px/1.4 var(--fx-font-sans, Inter, system-ui, sans-serif);
    padding: 16px 14px;
}
.fx-faqs-search__input::placeholder { color: rgba(255,255,255,0.4); }
.fx-faqs-search__clear {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.75);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .15s ease, color .15s ease;
}
.fx-faqs-search__clear:hover { background: rgba(255,255,255,0.12); color: #fff; }

.fx-faqs-search__pop {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 18px;
}
.fx-faqs-search__pop-lbl {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.42);
}
.fx-faqs-chip {
    border: 1px solid var(--c-stroke);
    background: rgba(255,255,255,0.025);
    color: rgba(255,255,255,0.78);
    font: 500 13px/1 var(--fx-font-sans, Inter, system-ui, sans-serif);
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: border-color .15s, background .15s, color .15s;
}
.fx-faqs-chip:hover {
    border-color: color-mix(in srgb, var(--c-violet) 50%, transparent);
    background: color-mix(in srgb, var(--c-violet) 10%, transparent);
    color: #fff;
}

/* ── Stats strip ──────────────────────────────────────────── */
.fx-faqs-stats-sec { padding-top: 24px; padding-bottom: 24px; }
.fx-faqs-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px 40px;
    border: 1px solid var(--c-stroke);
    background: var(--c-card);
    border-radius: 18px;
    padding: 22px 28px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.fx-faqs-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    min-width: 0;
}
.fx-faqs-stat + .fx-faqs-stat::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 28px;
    background: var(--c-stroke);
}
.fx-faqs-stat__k {
    font: 700 22px/1 var(--fx-font-display, Sora, Inter, sans-serif);
    color: #fff;
    letter-spacing: -0.01em;
}
.fx-faqs-stat__l {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.48);
}

/* ── Category nav pills ───────────────────────────────────── */
.fx-faqs-nav-sec { padding-top: 24px; padding-bottom: 12px; }
.fx-faqs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.fx-faqs-nav__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--c-stroke);
    background: var(--c-card);
    color: rgba(255,255,255,0.78);
    font: 600 14px/1 var(--fx-font-sans, Inter, system-ui, sans-serif);
    padding: 12px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: border-color .15s, background .15s, color .15s, transform .15s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.fx-faqs-nav__pill:hover {
    border-color: color-mix(in srgb, var(--c-violet) 55%, transparent);
    color: #fff;
    transform: translateY(-1px);
}
.fx-faqs-nav__pill.is-active {
    background: color-mix(in srgb, var(--c-violet) 18%, var(--c-card));
    border-color: color-mix(in srgb, var(--c-violet) 70%, transparent);
    color: #fff;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--c-violet) 14%, transparent);
}
.fx-faqs-nav__ico { font-size: 16px; line-height: 1; }
.fx-faqs-nav__lbl { white-space: nowrap; }

/* ── Category list / accordion ────────────────────────────── */
.fx-faqs-list-sec { padding-top: 24px; }
.fx-faqs-cat {
    margin: 36px 0 0;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    scroll-margin-top: 120px;
}
.fx-faqs-cat__head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}
.fx-faqs-cat__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    font-size: 24px;
    background: color-mix(in srgb, var(--c-violet) 14%, transparent);
    border: 1px solid color-mix(in srgb, var(--c-violet) 40%, transparent);
    border-radius: 14px;
}
.fx-faqs-cat__t {
    font: 700 22px/1.2 var(--fx-font-display, Sora, Inter, sans-serif);
    color: #fff;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}
.fx-faqs-cat__l {
    font-size: 14px;
    color: rgba(255,255,255,0.62);
    margin: 0;
}
.fx-faqs-cat__count {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    background: var(--c-card);
    border: 1px solid var(--c-stroke);
    padding: 8px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

.fx-faqs-cat__items {
    display: grid;
    gap: 10px;
}

.fx-faqs-item {
    background: var(--c-card);
    border: 1px solid var(--c-stroke);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .15s ease, background .15s ease;
}
.fx-faqs-item[open] {
    background: var(--c-card-strong);
    border-color: color-mix(in srgb, var(--c-violet) 40%, transparent);
}
.fx-faqs-item__q {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
    font: 600 15px/1.4 var(--fx-font-sans, Inter, system-ui, sans-serif);
    color: #fff;
    transition: color .15s ease;
}
.fx-faqs-item__q::-webkit-details-marker { display: none; }
.fx-faqs-item__q-t { flex: 1; }
.fx-faqs-item__q-chev {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: color-mix(in srgb, var(--c-violet) 80%, #fff);
    flex-shrink: 0;
    transition: transform .2s ease, background .15s ease;
}
.fx-faqs-item__q-chev svg { width: 16px; height: 16px; }
.fx-faqs-item[open] .fx-faqs-item__q-chev {
    transform: rotate(180deg);
    background: color-mix(in srgb, var(--c-violet) 24%, transparent);
}
.fx-faqs-item:hover .fx-faqs-item__q-chev { background: rgba(255,255,255,0.09); }

.fx-faqs-item__a {
    padding: 0 22px 18px 22px;
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    line-height: 1.65;
}
.fx-faqs-item__a strong { color: #fff; font-weight: 700; }
.fx-faqs-item__a em { color: color-mix(in srgb, var(--c-mint) 80%, #fff); font-style: normal; font-weight: 600; }
.fx-faqs-item__a br { display: block; content: ""; margin-top: 6px; }

.fx-faqs-item__rate {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-top: 1px dashed var(--c-stroke);
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}
.fx-faqs-item__rate-b {
    border: 1px solid var(--c-stroke);
    background: rgba(255,255,255,0.03);
    width: 34px;
    height: 34px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    transition: transform .15s, background .15s, border-color .15s;
}
.fx-faqs-item__rate-b:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,0.07);
    border-color: color-mix(in srgb, var(--c-violet) 40%, transparent);
}
.fx-faqs-item__rate-msg {
    color: var(--c-mint);
    font-weight: 600;
}

/* No-results ──────────────────────────────────────────────── */
.fx-faqs-noresults {
    max-width: 540px;
    margin: 40px auto;
    text-align: center;
    padding: 40px 32px;
    background: var(--c-card);
    border: 1px dashed var(--c-stroke);
    border-radius: 20px;
}
.fx-faqs-noresults__i { font-size: 40px; display: block; margin-bottom: 16px; }
.fx-faqs-noresults__t {
    font: 700 20px/1.3 var(--fx-font-display, Sora, Inter, sans-serif);
    color: #fff;
    margin: 0 0 8px;
}
.fx-faqs-noresults__d {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin: 0;
    line-height: 1.6;
}

/* ── Still-stuck CTA band ─────────────────────────────────── */
.fx-faqs-stuck {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.fx-faqs-stuck__card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
    border: 1px solid var(--c-stroke);
    border-radius: 20px;
    background: var(--c-card);
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
    position: relative;
    overflow: hidden;
}
.fx-faqs-stuck__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 0%, color-mix(in srgb, currentColor 20%, transparent), transparent 55%);
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}
.fx-faqs-stuck__card:hover {
    transform: translateY(-3px);
    border-color: currentColor;
    background: var(--c-card-strong);
}
.fx-faqs-stuck__card:hover::after { opacity: 1; }

.fx-faqs-stuck__card--mint   { color: var(--c-mint); }
.fx-faqs-stuck__card--cyan   { color: var(--c-cyan); }
.fx-faqs-stuck__card--violet { color: var(--c-violet); }

.fx-faqs-stuck__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fx-faqs-stuck__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    font-size: 22px;
    border-radius: 12px;
    background: color-mix(in srgb, currentColor 14%, transparent);
    border: 1px solid color-mix(in srgb, currentColor 40%, transparent);
}
.fx-faqs-stuck__tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: currentColor;
    padding: 6px 10px;
    border-radius: 999px;
    background: color-mix(in srgb, currentColor 14%, transparent);
    border: 1px solid color-mix(in srgb, currentColor 40%, transparent);
}
.fx-faqs-stuck__t {
    font: 700 20px/1.2 var(--fx-font-display, Sora, Inter, sans-serif);
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
}
.fx-faqs-stuck__d {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255,255,255,0.7);
    margin: 0;
    flex: 1;
}
.fx-faqs-stuck__cta {
    font-size: 14px;
    font-weight: 700;
    color: currentColor;
    margin-top: auto;
}

/* ── Popular articles ─────────────────────────────────────── */
.fx-faqs-pop {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
.fx-faqs-pop__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 26px 28px;
    border: 1px solid var(--c-stroke);
    border-radius: 16px;
    background: var(--c-card);
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.fx-faqs-pop__card:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--c-violet) 55%, transparent);
    background: var(--c-card-strong);
}
.fx-faqs-pop__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fx-faqs-pop__tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-violet);
    padding: 5px 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--c-violet) 14%, transparent);
    border: 1px solid color-mix(in srgb, var(--c-violet) 40%, transparent);
}
.fx-faqs-pop__read {
    font-size: 12px;
    color: rgba(255,255,255,0.48);
    font-weight: 500;
}
.fx-faqs-pop__t {
    font: 700 17px/1.3 var(--fx-font-display, Sora, Inter, sans-serif);
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
}
.fx-faqs-pop__d {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255,255,255,0.65);
    margin: 0;
}
.fx-faqs-pop__arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    color: rgba(255,255,255,0.35);
    font-size: 18px;
    transition: transform .2s ease, color .2s ease;
}
.fx-faqs-pop__card:hover .fx-faqs-pop__arrow {
    transform: translateX(4px);
    color: var(--c-violet);
}

/* ── Responsive breakpoints ───────────────────────────────── */
@media (max-width: 1180px) {
    .fx-faqs-stuck { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .fx-faqs-pop { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
    .fx-faqs-stats { gap: 20px 30px; padding: 18px 22px; }
    .fx-faqs-stuck { grid-template-columns: 1fr; }
    .fx-faqs-pop { grid-template-columns: 1fr; }
    .fx-faqs-cat__head { grid-template-columns: auto 1fr; grid-template-areas: "icon txt" "count count"; gap: 14px; }
    .fx-faqs-cat__icon { grid-area: icon; width: 48px; height: 48px; font-size: 22px; }
    .fx-faqs-cat__txt { grid-area: txt; }
    .fx-faqs-cat__count { grid-area: count; justify-self: start; }
}
@media (max-width: 640px) {
    body.fx-faqs .fx-page-hero__inner { max-width: 100%; }
    .fx-faqs-search__box { padding: 4px 4px 4px 16px; }
    .fx-faqs-search__input { font-size: 15px; padding: 14px 10px; }
    .fx-faqs-search__icon { width: 18px; height: 18px; }
    .fx-faqs-search__clear { width: 36px; height: 36px; font-size: 20px; }
    .fx-faqs-search__pop { gap: 6px; }
    .fx-faqs-chip { padding: 7px 12px; font-size: 12px; }

    .fx-faqs-stats { gap: 14px 22px; padding: 18px; border-radius: 14px; }
    .fx-faqs-stat + .fx-faqs-stat::before { display: none; }
    .fx-faqs-stat__k { font-size: 18px; }
    .fx-faqs-stat__l { font-size: 10px; letter-spacing: 0.08em; }

    .fx-faqs-nav { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; margin: 0 -16px; padding-left: 16px; padding-right: 16px; scrollbar-width: none; }
    .fx-faqs-nav::-webkit-scrollbar { display: none; }
    .fx-faqs-nav__pill { flex-shrink: 0; padding: 10px 14px; font-size: 13px; }
    .fx-faqs-nav__lbl { font-size: 13px; }

    .fx-faqs-cat { margin-top: 26px; }
    .fx-faqs-cat__t { font-size: 18px; }
    .fx-faqs-cat__l { font-size: 13px; }
    .fx-faqs-item__q { padding: 16px 18px; font-size: 14px; gap: 12px; }
    .fx-faqs-item__a { padding: 0 18px 16px; font-size: 13.5px; }
    .fx-faqs-item__q-chev { width: 28px; height: 28px; }
    .fx-faqs-item__rate { padding: 12px 18px; flex-wrap: wrap; }

    .fx-faqs-stuck__card { padding: 22px; border-radius: 16px; }
    .fx-faqs-pop__card { padding: 22px; border-radius: 14px; }
    .fx-faqs-pop__t { font-size: 16px; }
}

/* ===========================================================
   FAQs HERO  —  dedicated, 2-column with search + fx
   =========================================================== */

.fx-faqs-hero {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
    isolation: isolate;
}

.fx-faqs-hero__orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}
.fx-faqs-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
}
.fx-faqs-hero__orb--a { width: 420px; height: 420px; top: -120px; left: -100px; background: radial-gradient(circle, var(--c-violet), transparent 65%); }
.fx-faqs-hero__orb--b { width: 480px; height: 480px; bottom: -140px; right: -120px; background: radial-gradient(circle, var(--c-cyan), transparent 65%); opacity: 0.35; }
.fx-faqs-hero__orb--c { width: 320px; height: 320px; top: 40%; left: 45%; background: radial-gradient(circle, var(--c-mint), transparent 65%); opacity: 0.18; }

.fx-faqs-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 480px;
    gap: 60px;
    align-items: center;
}

.fx-faqs-hero__txt { min-width: 0; }

.fx-faqs-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px 7px 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--c-stroke);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.fx-faqs-hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-mint);
    box-shadow: 0 0 10px var(--c-mint);
    animation: fxFaqsPulseDot 2s ease-in-out infinite;
}
@keyframes fxFaqsPulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.7); }
}

.fx-faqs-hero__title {
    font: 800 clamp(36px, 5.4vw, 64px)/1.05 var(--fx-font-display, Sora, Inter, sans-serif);
    color: #fff;
    letter-spacing: -0.025em;
    margin: 18px 0 20px;
}
.fx-faqs-hero__title em {
    font-style: normal;
    background: linear-gradient(110deg, var(--c-violet) 0%, var(--c-cyan) 55%, var(--c-mint) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fx-faqs-hero__lede {
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.65;
    color: rgba(255,255,255,0.7);
    margin: 0 0 28px;
    max-width: 560px;
}

/* Search box — prominent */
.fx-faqs-hero .fx-faqs-search { margin: 0; max-width: 100%; }
.fx-faqs-hero .fx-faqs-search__box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 8px 8px 22px;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 60%),
        rgba(6, 10, 20, 0.78);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 20px 48px -24px rgba(0,0,0,0.75),
        0 1px 0 rgba(255,255,255,0.04) inset;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease, background .25s ease;
}
.fx-faqs-hero .fx-faqs-search__box:hover {
    border-color: rgba(255,255,255,0.14);
}
.fx-faqs-hero .fx-faqs-search__box:focus-within {
    border-color: color-mix(in srgb, var(--c-violet) 70%, transparent);
    box-shadow:
        0 24px 56px -22px color-mix(in srgb, var(--c-violet) 55%, rgba(0,0,0,0.7)),
        0 0 0 4px color-mix(in srgb, var(--c-violet) 18%, transparent),
        0 1px 0 rgba(255,255,255,0.04) inset;
    transform: translateY(-1px);
}
.fx-faqs-hero .fx-faqs-search__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: color-mix(in srgb, var(--c-violet) 75%, #fff);
}
.fx-faqs-hero .fx-faqs-search__icon svg { width: 100%; height: 100%; }
.fx-faqs-hero .fx-faqs-search__input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font: 500 16px/1.4 var(--fx-font-sans, Inter, system-ui, sans-serif);
    padding: 16px 0;
    letter-spacing: .005em;
    -webkit-appearance: none;
    appearance: none;
}
.fx-faqs-hero .fx-faqs-search__input::placeholder { color: rgba(255,255,255,0.44); }
.fx-faqs-hero .fx-faqs-search__input::-webkit-search-decoration,
.fx-faqs-hero .fx-faqs-search__input::-webkit-search-cancel-button,
.fx-faqs-hero .fx-faqs-search__input::-webkit-search-results-button,
.fx-faqs-hero .fx-faqs-search__input::-webkit-search-results-decoration { display: none; }

.fx-faqs-hero .fx-faqs-search__clear {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 0;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    border-radius: 10px;
    transition: background .15s, color .15s, transform .15s;
    font-size: 0;
}
.fx-faqs-hero .fx-faqs-search__clear:hover { background: rgba(255,255,255,0.12); color: #fff; transform: scale(1.05); }
.fx-faqs-hero .fx-faqs-search__clear svg { width: 14px; height: 14px; }

.fx-faqs-hero .fx-faqs-search__go {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    cursor: pointer;
    padding: 0 22px;
    height: 52px;
    min-width: 116px;
    border-radius: 12px;
    font: 700 14px/1 var(--fx-font-sans, Inter, system-ui, sans-serif);
    letter-spacing: .02em;
    color: #04070f;
    background: linear-gradient(135deg, var(--c-violet) 0%, var(--c-cyan) 100%);
    box-shadow:
        0 10px 26px -10px color-mix(in srgb, var(--c-violet) 70%, transparent),
        0 1px 0 rgba(255,255,255,0.2) inset;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.fx-faqs-hero .fx-faqs-search__go:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
    box-shadow:
        0 16px 32px -12px color-mix(in srgb, var(--c-violet) 75%, transparent),
        0 1px 0 rgba(255,255,255,0.24) inset;
}
.fx-faqs-hero .fx-faqs-search__go:active { transform: translateY(0); }
.fx-faqs-hero .fx-faqs-search__go-i { width: 16px; height: 16px; }

/* Popular chips row */
.fx-faqs-hero__pop {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 20px 0 0;
}
.fx-faqs-hero__pop-lbl {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
}

/* Quick stats row under chips */
.fx-faqs-hero__quick {
    display: flex;
    gap: 40px;
    margin: 34px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid var(--c-stroke);
}
.fx-faqs-hero__quick-i {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.fx-faqs-hero__quick-k {
    font: 700 24px/1 var(--fx-font-display, Sora, Inter, sans-serif);
    color: #fff;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.fx-faqs-hero__quick-l {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.46);
}

/* Right-side FX */
.fx-faqs-hero__fx {
    position: relative;
    width: 480px;
    height: 480px;
    justify-self: end;
    isolation: isolate;
}

.fx-faqs-hero__fx-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1.5px solid;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.fx-faqs-hero__fx-ring--1 {
    width: 300px;
    height: 300px;
    border-color: color-mix(in srgb, var(--c-violet) 40%, transparent);
    animation: fxFaqsRing 3.5s ease-out infinite;
}
.fx-faqs-hero__fx-ring--2 {
    width: 300px;
    height: 300px;
    border-color: color-mix(in srgb, var(--c-cyan) 35%, transparent);
    animation: fxFaqsRing 3.5s ease-out 1s infinite;
}
.fx-faqs-hero__fx-ring--3 {
    width: 300px;
    height: 300px;
    border-color: color-mix(in srgb, var(--c-mint) 30%, transparent);
    animation: fxFaqsRing 3.5s ease-out 2s infinite;
}
@keyframes fxFaqsRing {
    0%   { transform: translate(-50%, -50%) scale(0.6); opacity: 0.9; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

.fx-faqs-hero__fx-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 180px;
    transform: translate(-50%, -50%);
    border-radius: 36px;
    background: linear-gradient(135deg, var(--c-violet) 0%, #7c3aed 55%, var(--c-cyan) 100%);
    display: grid;
    place-items: center;
    box-shadow:
        0 30px 80px -20px color-mix(in srgb, var(--c-violet) 55%, transparent),
        0 0 0 1px rgba(255,255,255,0.12) inset,
        0 2px 0 rgba(255,255,255,0.24) inset;
}
.fx-faqs-hero__fx-q {
    font: 800 110px/1 var(--fx-font-display, Sora, Inter, sans-serif);
    color: #fff;
    text-shadow: 0 6px 24px rgba(0,0,0,0.35);
    letter-spacing: -0.04em;
}

.fx-faqs-hero__fx-bub {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px 10px 12px;
    background: rgba(4, 7, 15, 0.78);
    border: 1px solid var(--c-stroke);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
    animation: fxFaqsBubFloat 6s ease-in-out infinite;
    white-space: nowrap;
}
.fx-faqs-hero__fx-bub-i { font-size: 16px; line-height: 1; }
.fx-faqs-hero__fx-bub--a { top: 16px; left: 10px; animation-delay: 0s; }
.fx-faqs-hero__fx-bub--b { top: 30px; right: 0; animation-delay: 1.4s; }
.fx-faqs-hero__fx-bub--c { bottom: 40px; left: 0; animation-delay: 2.8s; }
.fx-faqs-hero__fx-bub--d { bottom: 24px; right: 20px; animation-delay: 4.2s; }

@keyframes fxFaqsBubFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

.fx-faqs-hero__fx-spark {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: fxFaqsSparkTwinkle 2.4s ease-in-out infinite;
}
.fx-faqs-hero__fx-spark--1 { top: 30%; left: 20%; background: var(--c-mint); box-shadow: 0 0 12px var(--c-mint); animation-delay: 0s; }
.fx-faqs-hero__fx-spark--2 { top: 70%; right: 30%; background: var(--c-cyan); box-shadow: 0 0 12px var(--c-cyan); animation-delay: 0.8s; }
.fx-faqs-hero__fx-spark--3 { bottom: 20%; left: 35%; background: var(--c-amber); box-shadow: 0 0 12px var(--c-amber); animation-delay: 1.6s; }

@keyframes fxFaqsSparkTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50%      { opacity: 1; transform: scale(1.4); }
}

/* Hide legacy page-hero override since we no longer use it */
body.fx-faqs .fx-faqs-stats-sec { display: none; }

/* Responsive ────────────────────────────────────────────── */
@media (max-width: 1180px) {
    .fx-faqs-hero__grid { grid-template-columns: minmax(0, 1fr) 400px; gap: 40px; }
    .fx-faqs-hero__fx { width: 400px; height: 400px; }
    .fx-faqs-hero__fx-core { width: 160px; height: 160px; border-radius: 32px; }
    .fx-faqs-hero__fx-q { font-size: 96px; }
    .fx-faqs-hero__fx-ring--1,
    .fx-faqs-hero__fx-ring--2,
    .fx-faqs-hero__fx-ring--3 { width: 260px; height: 260px; }
}
@media (max-width: 960px) {
    .fx-faqs-hero { padding: 56px 0 40px; }
    .fx-faqs-hero__grid { grid-template-columns: 1fr; gap: 36px; }
    .fx-faqs-hero__fx {
        width: 340px;
        height: 340px;
        justify-self: center;
        order: 2;
    }
    .fx-faqs-hero__txt { order: 1; text-align: center; }
    .fx-faqs-hero__lede { margin-left: auto; margin-right: auto; }
    .fx-faqs-hero__pop { justify-content: center; }
    .fx-faqs-hero__quick { justify-content: center; }
    .fx-faqs-hero__fx-core { width: 150px; height: 150px; }
    .fx-faqs-hero__fx-q { font-size: 88px; }
    .fx-faqs-hero__fx-ring--1,
    .fx-faqs-hero__fx-ring--2,
    .fx-faqs-hero__fx-ring--3 { width: 230px; height: 230px; }
}
@media (max-width: 640px) {
    .fx-faqs-hero { padding: 40px 0 28px; }
    .fx-faqs-hero__title { margin: 14px 0 14px; }
    .fx-faqs-hero__lede { font-size: 14.5px; margin-bottom: 22px; }

    .fx-faqs-hero .fx-faqs-search__box { gap: 10px; padding: 6px 6px 6px 16px; border-radius: 14px; }
    .fx-faqs-hero .fx-faqs-search__input { padding: 12px 0; font-size: 15px; }
    .fx-faqs-hero .fx-faqs-search__icon { width: 18px; height: 18px; }
    .fx-faqs-hero .fx-faqs-search__clear { width: 32px; height: 32px; border-radius: 9px; }
    .fx-faqs-hero .fx-faqs-search__go { padding: 0; min-width: 0; width: 42px; height: 42px; border-radius: 10px; }
    .fx-faqs-hero .fx-faqs-search__go-t { display: none; }

    .fx-faqs-hero__pop-lbl { width: 100%; text-align: center; margin-bottom: 2px; }
    .fx-faqs-hero__quick { gap: 24px; padding-top: 18px; margin-top: 24px; }
    .fx-faqs-hero__quick-k { font-size: 20px; }

    .fx-faqs-hero__fx { width: 280px; height: 280px; }
    .fx-faqs-hero__fx-core { width: 130px; height: 130px; border-radius: 28px; }
    .fx-faqs-hero__fx-q { font-size: 72px; }
    .fx-faqs-hero__fx-ring--1,
    .fx-faqs-hero__fx-ring--2,
    .fx-faqs-hero__fx-ring--3 { width: 200px; height: 200px; }
    .fx-faqs-hero__fx-bub { font-size: 11px; padding: 8px 12px 8px 10px; }
    .fx-faqs-hero__fx-bub-i { font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
    .fx-faqs-hero__fx-ring,
    .fx-faqs-hero__fx-bub,
    .fx-faqs-hero__fx-spark,
    .fx-faqs-hero__eyebrow-dot {
        animation: none !important;
    }
}

