/* Local typefaces - served from /visage/fonts, no remote font requests */
@font-face {
    font-family: "Sora Local";
    src: url("/visage/fonts/sora-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Sora Local";
    src: url("/visage/fonts/sora-600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Sora Local";
    src: url("/visage/fonts/sora-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope Local";
    src: url("/visage/fonts/manrope-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope Local";
    src: url("/visage/fonts/manrope-600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope Local";
    src: url("/visage/fonts/manrope-800.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* BetFury DE surface - dark casino shell */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bf-bg: #070c14;
    --bf-bg-elevated: #121a26;
    --bf-bg-card: #162033;
    --bf-line: rgba(255, 255, 255, 0.08);
    --bf-text: #e8eef7;
    --bf-muted: #93a0b5;
    --bf-accent: #e91e63;
    --bf-accent-hot: #ff2d6f;
    --bf-accent-soft: #00c2b8;
    --bf-ok: #3dd68c;
    --bf-radius: 14px;
    --bf-header-h: 64px;
    --bf-nav-h: 52px;
    --bf-font: "Manrope Local", "Sora Local", sans-serif;
    --bf-display: "Sora Local", "Manrope Local", sans-serif;
}

html {
    overflow-x: clip;
}

body {
    font-family: var(--bf-font);

    line-height: 1.55;
    color: var(--bf-text);
    background:
        radial-gradient(1200px 500px at 10% -10%, rgba(233, 30, 99, 0.12), transparent 55%),
        radial-gradient(900px 420px at 90% 0%, rgba(26, 109, 255, 0.1), transparent 50%),
        var(--bf-bg);
    min-height: 100vh;
    overflow-x: clip;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

/* ===== Header + horizontal nav under it ===== */
.fx-shell {
    position: sticky;

    top: 0;
    z-index: 200;
    background: rgba(11, 16, 24, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--bf-line);
}

.fx-shell::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--bf-accent-hot), var(--bf-accent-soft), transparent);
    pointer-events: none;
}

.fx-canvas {
    width: min(1280px, 100%);
    margin: 0 auto;
}

.fx-stage-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fx-shell-cap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: var(--bf-header-h);
    padding: 10px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.fx-brand {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.fx-brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.fx-brand-mark {
    height: 40px;
    width: auto;
    display: block;
}

.fx-brand-text {
    font-weight: 800;
    letter-spacing: 0.04em;
    font-size: 1.15rem;
}

.fx-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.fx-btn--pulse,
.fx-btn--ghost,
.fx-slide-cta,
.fx-tile-play,
.fx-app-dl,
.fx-link-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid transparent;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    cursor: pointer;
}

.fx-btn--pulse,
.fx-slide-cta,
.fx-tile-play,
.fx-app-dl {
    background: linear-gradient(180deg, var(--bf-accent-hot), var(--bf-accent));
    color: #fff;
    box-shadow: 0 6px 18px rgba(233, 30, 99, 0.28);
}

.fx-btn--ghost {
    background: transparent;
    color: var(--bf-text);
    border-color: var(--bf-line);
}

.fx-btn--pulse:hover,
.fx-slide-cta:hover,
.fx-tile-play:hover,
.fx-app-dl:hover {
    transform: translateY(-1px);
}

.fx-btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.22);
}

/* Burger hidden on desktop - used later for mobile */
.fx-trigger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.fx-trigger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--bf-text);
    border-radius: 2px;
}

.fx-veil {
    display: none;
}

/* Horizontal menu row under header */
.fx-orbit {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    background: var(--bf-bg-elevated);
    border-top: 1px solid var(--bf-line);
    border-right: none;
    overflow: visible;
}

.fx-orbit-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 4px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 8px 16px;
    min-height: var(--bf-nav-h);
}

.fx-orbit-item {
    margin: 0;
}

.fx-orbit-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: var(--bf-muted);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
}

.fx-orbit-link:hover {
    color: var(--bf-text);
    background: rgba(255, 255, 255, 0.06);
}

.fx-orbit-link.is-current {
    color: #fff;
    background: rgba(0, 194, 184, 0.22);
}

.fx-glyph {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    flex-shrink: 0;
}

.fx-glyph [fill="currentColor"] {
    fill: currentColor;
    stroke: none;
}

/* Main content - full width (no sidebar offset) */
.fx-stage {
    margin-left: 0;
    padding: 24px 20px 40px;
    max-width: 1280px;
    margin-inline: auto;
}

/* Banners - slider shell, native aspect kept */
.fx-spotlight {
    margin-bottom: 28px;
}

.fx-spotlight-viewport {
    overflow: hidden;
    border: 1px solid var(--bf-line);
    border-radius: var(--bf-radius);
    background:
        linear-gradient(135deg, rgba(233, 30, 99, 0.12), transparent 42%),
        var(--bf-bg-card);
}

.fx-spotlight-track {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
}

.fx-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    display: none;
}

.fx-slide.is-active {
    display: block;
}

.fx-slide-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 12px 0;
    background: rgba(0, 0, 0, 0.18);
}

.fx-slide picture {
    display: block;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}

.fx-slide-media {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: 768 / 240;
    margin: 0 auto;
}

.fx-slide-copy {
    padding: 18px 20px 22px;
}

.fx-slide-title {
    font-family: var(--bf-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.fx-slide-note {
    margin-bottom: 14px;
    color: var(--bf-muted);
}

.fx-spotlight-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.fx-spotlight-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
}

.fx-spotlight-dot.is-active {
    background: var(--bf-accent-hot);
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .fx-slide-media {
        aspect-ratio: 1 / 1;
        max-width: min(100%, 320px);
    }
}

/* Games */
.fx-reel {
    margin-bottom: 36px;
}

.fx-block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.fx-block-title {
    font-family: var(--bf-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.fx-link-chip {
    padding: 8px 14px;
    border: 1px solid var(--bf-line);
    color: var(--bf-text);
    background: transparent;
    box-shadow: none;
}

.fx-tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
}

.fx-tile {
    border: 1px solid var(--bf-line);
    background: var(--bf-bg-card);
    border-radius: var(--bf-radius);
    overflow: hidden;
}

.fx-tile-media {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.22);
}

.fx-tile-img {
    width: 100%;
    height: auto;
    max-height: none;
    display: block;
    object-fit: contain;
    object-position: center;
    background: #0a1018;
}

.fx-tile-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 8px 8px;
}

.fx-tile-play {
    display: inline-flex;
    width: 100%;
    margin: 0;
    padding: 9px 10px;
    text-align: center;
    border-radius: 10px;
    font-size: 0.8rem;
}

.fx-tile-play.fx-btn--ghost {
    background: transparent;
    color: var(--bf-text);
    border: 1px solid var(--bf-line);
    box-shadow: none;
}

.fx-tile-name {
    padding: 10px 12px 14px;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
}

/* Bonuses */
.fx-offers {
    margin-bottom: 40px;
}

.fx-offers .fx-block-title {
    font-family: var(--bf-display);
    font-size: clamp(1.35rem, 2.8vw, 1.7rem);
    letter-spacing: 0.02em;
}

.fx-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}

.fx-offer {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(165deg, rgba(18, 28, 44, 0.98), rgba(8, 12, 20, 0.98));
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.fx-offer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, #ff2d6f, #ffb347, #00c2b8);
    opacity: 0.9;
    z-index: 1;
}

.fx-offer:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 45, 111, 0.4);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.fx-offer-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0a1018;
}

.fx-offer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.fx-offer:hover .fx-offer-img {
    transform: scale(1.04);
}

.fx-offer-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    flex: 1;
}

.fx-offer-name {
    font-family: var(--bf-display);
    font-size: 1.12rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}

.fx-offer-desc {
    margin: 0;
    font-size: 0.92rem;
    color: var(--bf-muted);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fx-offer-value {
    font-family: var(--bf-display);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--bf-accent-hot);
    margin-top: auto;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 45, 111, 0.1);
    border: 1px solid rgba(255, 45, 111, 0.22);
}

.fx-offer-tag {
    margin-top: 2px;
}

.fx-offer-badge {
    display: inline-block;
    padding: 5px 10px;
    background: rgba(0, 194, 184, 0.14);
    color: #7ee8e0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid rgba(0, 194, 184, 0.28);
}

.fx-offer-terms {
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.74rem;
    color: var(--bf-muted);
    line-height: 1.45;
}

/* SEO text */
.fx-prose {
    max-width: 920px;
    margin: 0 auto;
    padding: 28px 8px;
    min-width: 0;
    overflow-wrap: anywhere;
}

.fx-prose--rich {
    margin-top: 28px;
    padding: clamp(24px, 4vw, 40px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(640px 220px at 0% 0%, rgba(26, 109, 255, 0.12), transparent 55%),
        radial-gradient(520px 200px at 100% 0%, rgba(233, 30, 99, 0.1), transparent 50%),
        linear-gradient(170deg, rgba(14, 22, 34, 0.96), rgba(8, 12, 20, 0.98));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.fx-prose h1 {
    font-family: var(--bf-display);
    font-size: clamp(1.55rem, 3.2vw, 2.1rem);
    font-weight: 800;
    letter-spacing: 0.015em;
    line-height: 1.25;
    margin-bottom: 18px;
    color: #fff;
}

.fx-prose h2 {
    font-family: var(--bf-display);
    font-size: clamp(1.2rem, 2.4vw, 1.45rem);
    font-weight: 800;
    margin: 32px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.fx-prose h3 {
    font-family: var(--bf-display);
    font-size: 1.08rem;
    font-weight: 700;
    margin: 22px 0 10px;
    color: #ff8fb3;
}

.fx-prose p {
    margin-bottom: 16px;
    font-size: 1.01rem;
    line-height: 1.72;
    color: var(--bf-muted);
}

.fx-prose img {
    max-width: 100%;
    height: auto;
    margin: 18px 0;
    border-radius: var(--bf-radius);
}

.fx-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    min-width: 520px;
}

.fx-prose th,
.fx-prose td {
    padding: 10px 12px;
    border: 1px solid var(--bf-line);
    text-align: left;
}

.fx-prose th {
    background: rgba(26, 109, 255, 0.16);
    font-weight: 700;
    color: var(--bf-text);
}

.fx-prose td {
    color: var(--bf-muted);
}

.fx-prose ul,
.fx-prose ol {
    margin: 16px 0;
    padding-left: 28px;
    color: var(--bf-muted);
}

.fx-prose ul li,
.fx-prose ol li {
    margin-bottom: 8px;
}

.fx-prose--rich .fx-list-box ul,
.fx-prose--rich .fx-list-box ol {
    list-style: none;
    padding-left: 0;
}

.fx-prose--rich .fx-list-box li {
    position: relative;
    margin-bottom: 8px;
    padding: 10px 12px 10px 34px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.fx-prose--rich .fx-list-box ul li::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 16px;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: linear-gradient(135deg, #ff2d6f, #ffb347);
}

.fx-prose--rich .fx-list-box ol {
    counter-reset: seo-step;
}

.fx-prose--rich .fx-list-box ol li {
    counter-increment: seo-step;
}

.fx-prose--rich .fx-list-box ol li::before {
    content: counter(seo-step);
    position: absolute;
    left: 10px;
    top: 10px;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #ff2d6f, #e91e63);
}

.fx-prose a {
    color: var(--bf-accent-hot);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 45, 111, 0.4);
    transition: color 0.15s ease, border-color 0.15s ease;
}

.fx-prose a:hover {
    color: #ffb347;
    border-bottom-color: rgba(255, 179, 71, 0.65);
}

.fx-prose blockquote {
    margin: 18px 0;
    padding: 14px 16px;
    border-left: 3px solid var(--bf-accent);
    background: rgba(233, 30, 99, 0.08);
    color: var(--bf-muted);
    border-radius: 0 10px 10px 0;
}

.fx-prose--rich .fx-table-scroll {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(6, 10, 16, 0.55);
}

.fx-prose--rich .fx-faq-item {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(8, 12, 20, 0.55);
}

.fx-prose--rich .fx-faq-q {
    background: rgba(233, 30, 99, 0.1);
}

.fx-table-scroll {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.fx-table-scroll > table,
.fx-prose .fx-table-scroll table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
}

/* FAQ */
.fx-faq {
    margin: 20px 0;
}

.fx-faq-item {
    border: 1px solid var(--bf-line);
    margin-bottom: 10px;
    background: var(--bf-bg-card);
    border-radius: 10px;
    overflow: hidden;
}

.fx-faq-q {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--bf-line);
}

.fx-faq-q strong {
    font-size: 1rem;
}

.fx-faq-a {
    padding: 14px 16px;
    color: var(--bf-muted);
}

/* HowTo */
.fx-howto {
    margin: 20px 0;
    padding: 18px;
    background: var(--bf-bg-card);
    border: 1px solid var(--bf-line);
    border-radius: var(--bf-radius);
}

.fx-howto-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.fx-howto-step {
    counter-increment: step-counter;
    padding: 14px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--bf-accent);
    border-radius: 0 8px 8px 0;
}

.fx-howto-step::before {
    content: counter(step-counter) ".";
    font-weight: 800;
    margin-right: 8px;
    color: var(--bf-accent-hot);
}

.fx-howto-step strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 6px;
}

/* Legal pages: privacy + terms */
.fx-legal {
    max-width: 920px;
    margin: 0 auto;
}

.fx-legal-panel {
    position: relative;
    margin-top: 8px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(560px 240px at 0% 0%, rgba(0, 194, 184, 0.14), transparent 55%),
        radial-gradient(480px 220px at 100% 0%, rgba(26, 109, 255, 0.14), transparent 58%),
        linear-gradient(170deg, rgba(14, 22, 34, 0.98), rgba(7, 11, 18, 0.99));
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
}

.fx-legal--terms .fx-legal-panel {
    background:
        radial-gradient(560px 240px at 0% 0%, rgba(255, 183, 77, 0.12), transparent 55%),
        radial-gradient(480px 220px at 100% 0%, rgba(233, 30, 99, 0.16), transparent 58%),
        linear-gradient(170deg, rgba(14, 22, 34, 0.98), rgba(7, 11, 18, 0.99));
}

.fx-legal-glow {
    position: absolute;
    top: -50px;
    right: -30px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 194, 184, 0.22), transparent 70%);
    pointer-events: none;
    animation: fx-contact-aura 5s ease-in-out infinite;
}

.fx-legal--terms .fx-legal-glow {
    background: radial-gradient(circle, rgba(233, 30, 99, 0.24), transparent 70%);
}

.fx-legal .fx-prose,
.fx-legal .fx-prose--rich {
    position: relative;
    max-width: none;
    margin: 0;
    padding: clamp(28px, 5vw, 52px);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.fx-legal .fx-prose h1 {
    font-family: var(--bf-display);
    font-size: clamp(1.7rem, 3.6vw, 2.3rem);
    margin-bottom: 18px;
    letter-spacing: 0.02em;
    background: linear-gradient(110deg, #fff 10%, #7ee8e0 65%, #00c2b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fx-legal--terms .fx-prose h1 {
    background: linear-gradient(110deg, #fff 10%, #ffb347 55%, #ff2d6f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fx-legal .fx-prose h2 {
    font-family: var(--bf-display);
    margin-top: 32px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.fx-legal .fx-prose p {
    font-size: 1.02rem;
    line-height: 1.72;
}

.fx-legal .fx-prose a {
    color: var(--bf-accent-soft);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 194, 184, 0.4);
}

.fx-legal--terms .fx-prose a {
    color: var(--bf-accent-hot);
    border-bottom-color: rgba(255, 45, 111, 0.4);
}

.fx-legal .fx-list-box ul,
.fx-legal .fx-list-box ol {
    list-style: none;
    padding-left: 0;
}

.fx-legal .fx-list-box li {
    position: relative;
    margin-bottom: 10px;
    padding: 12px 14px 12px 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.fx-legal .fx-list-box li::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 18px;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: linear-gradient(135deg, #1a6dff, #00c2b8);
    transform: rotate(45deg);
}

.fx-legal--terms .fx-list-box li::before {
    background: linear-gradient(135deg, #ff2d6f, #ffb347);
}

/* Contact page */
.fx-contact {
    max-width: 860px;
    margin: 0 auto;
}

.fx-contact-panel {
    position: relative;
    margin-top: 12px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(560px 260px at 6% 0%, rgba(0, 194, 184, 0.18), transparent 58%),
        radial-gradient(480px 240px at 100% 8%, rgba(233, 30, 99, 0.2), transparent 55%),
        linear-gradient(165deg, rgba(16, 24, 38, 0.98), rgba(7, 12, 20, 0.99));
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
}

.fx-contact-glow {
    position: absolute;
    inset: auto -48px -48px auto;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 45, 111, 0.28), transparent 70%);
    pointer-events: none;
    animation: fx-contact-aura 4.2s ease-in-out infinite;
}

@keyframes fx-contact-aura {
    0%, 100% { opacity: 0.45; transform: scale(0.94); }
    50% { opacity: 0.95; transform: scale(1.1); }
}

.fx-contact .fx-prose,
.fx-contact .fx-prose--rich {
    position: relative;
    max-width: none;
    margin: 0;
    padding: clamp(28px, 5vw, 52px);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.fx-contact .fx-prose h1 {
    font-family: var(--bf-display);
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    background: linear-gradient(110deg, #fff 0%, #ff8fb3 48%, #ff2d6f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fx-contact .fx-prose h2 {
    font-family: var(--bf-display);
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.fx-contact .fx-prose h3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0, 194, 184, 0.35);
    background: rgba(0, 194, 184, 0.12);
    color: #fff;
    font-size: 1rem;
}

.fx-contact .fx-prose p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.fx-contact .fx-prose a {
    color: var(--bf-accent-hot);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 45, 111, 0.45);
    transition: color 0.15s ease, border-color 0.15s ease;
}

.fx-contact .fx-prose a:hover {
    color: #ff8fb3;
    border-bottom-color: rgba(255, 143, 179, 0.7);
}

/* 404 - bright, minimal */
.fx-404 {
    position: relative;
    text-align: center;
    max-width: 560px;
    margin: 48px auto;
    padding: clamp(48px, 8vw, 80px) clamp(22px, 5vw, 44px);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(520px 240px at 50% -10%, rgba(255, 45, 111, 0.28), transparent 60%),
        radial-gradient(380px 200px at 90% 100%, rgba(0, 194, 184, 0.16), transparent 58%),
        linear-gradient(165deg, rgba(18, 28, 44, 0.98), rgba(7, 12, 20, 0.99));
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.fx-404-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    left: 50%;
    top: 22%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 45, 111, 0.4), transparent 70%);
    filter: blur(10px);
    pointer-events: none;
    animation: fx404-pulse 3s ease-in-out infinite;
}

.fx-404-code {
    position: relative;
    font-family: var(--bf-display);
    font-size: clamp(5rem, 16vw, 7.5rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 0.92;
    margin: 0 0 18px;
    background: linear-gradient(120deg, #ff2d6f 0%, #ff6b9d 40%, #00c2b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fx404-rise 0.55s ease both;
}

.fx-404-title {
    position: relative;
    font-family: var(--bf-display);
    font-size: clamp(1.2rem, 2.8vw, 1.55rem);
    font-weight: 800;
    color: #fff;
    margin: 0 auto 14px;
    max-width: 26ch;
    line-height: 1.3;
    animation: fx404-rise 0.55s ease 0.1s both;
}

.fx-404-text {
    position: relative;
    margin: 0 auto 28px;
    max-width: 36ch;
    color: var(--bf-muted);
    font-size: 1.02rem;
    line-height: 1.65;
    animation: fx404-rise 0.55s ease 0.18s both;
}

.fx-404-cta {
    position: relative;
    min-width: 200px;
    padding: 14px 28px;
    font-size: 1rem;
    animation: fx404-rise 0.55s ease 0.26s both;
}

@keyframes fx404-pulse {
    0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
}

@keyframes fx404-rise {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Breadcrumbs */
.fx-crumbs {
    margin: 0 0 18px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.fx-crumb {
    color: var(--bf-muted);
    text-decoration: none;
}

.fx-crumb-sep {
    color: rgba(255, 255, 255, 0.25);
}

/* Footer */
.fx-foot {
    position: relative;
    color: var(--bf-text);
    padding: 0 20px 28px;
    margin-top: 56px;
    margin-left: 0;
    background:
        radial-gradient(700px 180px at 15% 0%, rgba(233, 30, 99, 0.18), transparent 60%),
        radial-gradient(640px 160px at 85% 8%, rgba(0, 194, 184, 0.12), transparent 55%),
        linear-gradient(180deg, #0a1220 0%, #070b12 45%, #05080f 100%);
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.55), rgba(0, 194, 184, 0.45), transparent) 1;
    overflow: hidden;
}

.fx-foot::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 40%),
        repeating-linear-gradient(
            -18deg,
            transparent,
            transparent 22px,
            rgba(255, 255, 255, 0.012) 22px,
            rgba(255, 255, 255, 0.012) 23px
        );
    opacity: 0.9;
}

.fx-foot-shell {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 28px;
}

.fx-foot-pay {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    padding: 16px 18px;
    margin-bottom: 26px;
    border-radius: 16px;
    background:
        linear-gradient(120deg, rgba(233, 30, 99, 0.14), rgba(26, 109, 255, 0.1) 48%, rgba(0, 194, 184, 0.1)),
        rgba(18, 26, 38, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
}

.fx-foot-pay-label {
    font-family: var(--bf-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    color: #fff;
}

.fx-foot-pay-rail {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
}

.fx-foot-pay-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    height: 46px;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.fx-foot-pay-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.22);
}

.fx-foot-pay-img {
    max-width: 64px;
    max-height: 28px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.fx-foot-pay-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1a2233;
}

.fx-foot-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fx-foot-brand {
    display: flex;
    align-items: center;
}

.fx-foot-brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.fx-foot-brand-link:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}

.fx-foot-brand-mark {
    height: 42px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(233, 30, 99, 0.25));
}

.fx-foot-brand-text {
    font-family: var(--bf-display);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 0.03em;
}

.fx-foot-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.fx-foot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 28px 36px;
    margin-bottom: 26px;
}

.fx-foot-col {
    min-width: 0;
}

.fx-foot-title {
    font-family: var(--bf-display);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #fff;
}

.fx-foot-links {
    list-style: none;
}

.fx-foot-links li {
    margin-bottom: 10px;
}

.fx-foot-links a {
    color: var(--bf-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 0.92rem;
    transition: color 0.15s ease, transform 0.15s ease;
}

.fx-foot-links a:hover,
.fx-foot-links a.active {
    color: var(--bf-accent-hot);
    transform: translateX(2px);
}

.fx-foot-soc-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fx-foot-soc-list li {
    margin: 0;
}

.fx-foot-soc-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease !important;
}

.fx-foot-soc-link:hover {
    background: rgba(233, 30, 99, 0.16);
    border-color: rgba(233, 30, 99, 0.45);
    transform: translateY(-2px) !important;
}

.fx-foot-soc {
    max-height: 22px;
    max-width: 28px;
    width: auto;
    display: block;
    object-fit: contain;
}

.fx-foot-base {
    text-align: center;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    color: var(--bf-muted);
}

.fx-foot-safe {
    margin-bottom: 16px;
}

.fx-foot-safe-title {
    margin-bottom: 12px;
    text-align: center;
}

.fx-foot-safe-list {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.fx-foot-safe-list li {
    margin: 0;
}

.fx-foot-safe-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.15s ease, background 0.15s ease;
}

.fx-foot-safe-list a:hover {
    border-color: rgba(0, 194, 184, 0.4);
    background: rgba(0, 194, 184, 0.08);
}

.fx-safe-img {
    max-width: 92px;
    height: auto;
    max-height: 28px;
    object-fit: contain;
    display: block;
    filter: brightness(1.05);
}

.fx-foot-copy {
    margin: 0 0 6px;
    color: rgba(232, 238, 247, 0.78);
    font-weight: 600;
}

.fx-foot-note {
    margin: 0;
    color: var(--bf-muted);
    max-width: 720px;
    margin-inline: auto;
    line-height: 1.5;
}

.fx-list-box {
    margin: 18px 0;
}

.fx-list-box ul,
.fx-list-box ol {
    margin: 16px 0;
    padding-left: 28px;
    color: var(--bf-muted);
}

.fx-list-box ul li,
.fx-list-box ol li {
    margin-bottom: 8px;
}

/* App Info Table */
.fx-appbox {
    position: relative;
    display: grid;
    grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
    margin: 18px 0 28px;
    padding: 22px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(520px 260px at 8% 0%, rgba(233, 30, 99, 0.22), transparent 58%),
        radial-gradient(460px 240px at 95% 20%, rgba(0, 194, 184, 0.16), transparent 55%),
        linear-gradient(160deg, rgba(16, 26, 40, 0.98), rgba(7, 12, 20, 0.99));
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

.fx-appbox-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.fx-appbox-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.fx-appbox-orb--a {
    width: 160px;
    height: 160px;
    top: 12%;
    left: 8%;
    background: radial-gradient(circle, rgba(255, 45, 111, 0.35), transparent 70%);
    animation: fx-app-orb 4.8s ease-in-out infinite;
}

.fx-appbox-orb--b {
    width: 120px;
    height: 120px;
    bottom: 10%;
    right: 6%;
    background: radial-gradient(circle, rgba(0, 194, 184, 0.3), transparent 70%);
    animation: fx-app-orb 5.6s ease-in-out infinite reverse;
}

@keyframes fx-app-orb {
    0%, 100% { transform: scale(0.92); opacity: 0.55; }
    50% { transform: scale(1.1); opacity: 1; }
}

.fx-app-phone {
    position: relative;
    z-index: 1;
    width: min(190px, 70%);
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.45));
    transform: rotate(-4deg);
    animation: fx-app-float 5s ease-in-out infinite;
}

@keyframes fx-app-float {
    0%, 100% { transform: rotate(-4deg) translateY(0); }
    50% { transform: rotate(-2deg) translateY(-8px); }
}

.fx-app-phone-bezel {
    border-radius: 28px;
    padding: 10px 9px 14px;
    background: linear-gradient(160deg, #2a3344, #121821 55%, #0a0f16);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.fx-app-phone-bezel::before {
    content: "";
    display: block;
    width: 42%;
    height: 6px;
    margin: 0 auto 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.fx-app-phone-screen {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    aspect-ratio: 9 / 16;
}

.fx-appbox-scroll {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(8, 14, 22, 0.72);
    overflow-x: auto;
    backdrop-filter: blur(6px);
}

.fx-appbox-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 280px;
}

.fx-appbox-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.15s ease;
}

.fx-appbox-row:last-child {
    border-bottom: 0;
}

.fx-appbox-row:hover {
    background: rgba(255, 45, 111, 0.06);
}

.fx-appbox-icon {
    padding: 14px 10px 14px 14px;
    text-align: center;
    width: 64px;
    vertical-align: middle;
}

.fx-appbox-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(255, 45, 111, 0.28), rgba(0, 194, 184, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.18);
}

.fx-appbox-val {
    padding: 14px 16px 14px 8px;
    vertical-align: middle;
    color: var(--bf-muted);
    font-size: 0.98rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 100%;
}

.fx-appbox-svg {
    width: 20px;
    height: 20px;
}

.fx-app-name {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fx-app-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px;
}

.fx-app-label {
    font-family: var(--bf-display);
    font-weight: 800;
    font-size: 1.15rem;
    color: #fff;
}

.fx-app-dl {
    min-width: 170px;
    padding: 12px 20px;
    font-size: 0.95rem;
    border-radius: 12px;
}

@media (max-width: 860px) {
    .fx-appbox {
        grid-template-columns: 1fr;
        padding: 16px;
        gap: 16px;
    }

    .fx-appbox-visual {
        min-height: 220px;
    }

    .fx-app-phone {
        width: min(150px, 46%);
    }
}

/* Desktop: menu stays as a row under header */
@media (min-width: 993px) {
    .fx-trigger {
        display: none !important;
    }

    .fx-orbit {
        display: block;
        transform: none !important;
        position: relative !important;
        width: 100% !important;
        height: auto !important;
    }
}

/* Mobile: burger top-left, drawer slides from left */
@media (max-width: 992px) {
    .fx-shell-cap {
        padding: 10px 14px;
        gap: 10px;
    }

    .fx-trigger {
        display: inline-flex;
        order: -1;
        margin-right: 4px;
        z-index: 220;
    }

    .fx-trigger.is-live span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .fx-trigger.is-live span:nth-child(2) {
        opacity: 0;
    }

    .fx-trigger.is-live span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .fx-trigger span {
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .fx-brand {
        margin-right: auto;
    }

    .fx-orbit {
        position: fixed;
        left: 0;
        top: 0;
        width: min(300px, 86vw);
        height: 100vh;
        height: 100dvh;
        background: #0e1520;
        border-top: none;
        border-right: 1px solid var(--bf-line);
        transform: translateX(-105%);
        transition: transform 0.25s ease;
        z-index: 210;
        overflow-y: auto;
        padding-top: 72px;
        box-shadow: 12px 0 40px rgba(0, 0, 0, 0.45);
    }

    .fx-orbit.open {
        transform: translateX(0);
    }

    .fx-orbit-list {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow: visible;
        padding: 12px 14px 28px;
        max-width: none;
        min-height: 0;
    }

    .fx-orbit-link {
        width: 100%;
        padding: 14px 12px;
    }

    .fx-veil {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 205;
        display: none;
    }

    body.fx-drawer-live {
        overflow: hidden;
    }

    .fx-stage {
        margin-left: 0;
        padding: 16px 14px 32px;
    }

    .fx-foot {
        margin-left: 0;
    }

    .fx-tile-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }

    .fx-offer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .fx-stage {
        padding: 12px 12px 28px;
        max-width: 100%;
        overflow-x: clip;
    }

    .fx-prose {
        padding: 18px 4px;
        max-width: 100%;
    }

    .fx-prose table,
    .fx-table-scroll > table,
    .fx-prose .fx-table-scroll table {
        min-width: 100%;
    }

    .fx-table-scroll {
        max-width: 100%;
    }

    .fx-prose h1 {
        font-size: 1.4rem;
    }

    .fx-prose h2 {
        font-size: 1.15rem;
    }

    .fx-prose h3 {
        font-size: 1rem;
    }

    .fx-foot {
        padding: 0 14px 24px;
        margin-top: 40px;
    }

    .fx-foot-pay {
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        gap: 12px;
    }

    .fx-foot-pay-label {
        text-align: center;
        white-space: normal;
    }

    .fx-foot-pay-rail {
        justify-content: center;
    }

    .fx-foot-pay-chip {
        min-width: 64px;
        height: 42px;
        padding: 6px 10px;
    }

    .fx-foot-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .fx-foot-cta {
        justify-content: center;
        width: 100%;
    }

    .fx-foot-grid {
        gap: 22px;
        text-align: center;
    }

    .fx-foot-links a:hover,
    .fx-foot-links a.active {
        transform: none;
    }

    .fx-foot-soc-list {
        justify-content: center;
    }

    .fx-actions {
        gap: 6px;
        max-width: 58%;
        justify-content: flex-end;
        flex-wrap: nowrap;
    }

    .fx-actions .fx-btn--ghost,
    .fx-actions .fx-btn--pulse {
        padding: 8px 10px;
        font-size: 0.75rem;
        white-space: nowrap;
        max-width: 100%;
    }

    .fx-brand-mark {
        height: 34px;
    }
}

@media (max-width: 420px) {
    .fx-actions .fx-btn--ghost {
        display: none;
    }

    .fx-actions {
        max-width: none;
    }
}
