@font-face {
    font-family: "ManropeLocal";
    src: url("/static/fs-bridge/fonts/manrope-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ManropeLocal";
    src: url("/static/fs-bridge/fonts/manrope-600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ManropeLocal";
    src: url("/static/fs-bridge/fonts/manrope-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SoraLocal";
    src: url("/static/fs-bridge/fonts/sora-600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SoraLocal";
    src: url("/static/fs-bridge/fonts/sora-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --fs-bg-deep: #060914;
    --fs-bg-panel: #0c1228;
    --fs-bg-card: #111936;
    --fs-blue-core: #2748ff;
    --fs-blue-bright: #3d5dff;
    --fs-blue-soft: rgba(39, 72, 255, 0.16);
    --fs-orange: #ff5a12;
    --fs-orange-hot: #ff7028;
    --fs-text: #f4f6ff;
    --fs-text-dim: #9aa3c7;
    --fs-line: rgba(255, 255, 255, 0.08);
    --fs-radius-sm: 6px;
    --fs-radius-md: 12px;
    --fs-radius-lg: 18px;
    --fs-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    --fs-font-body: "ManropeLocal", system-ui, sans-serif;
    --fs-font-display: "SoraLocal", "ManropeLocal", sans-serif;
    --fs-max: 1320px;
    --fs-pocket-size: 58px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--fs-font-body);
    font-size: 15px;
    line-height: 1.55;
    color: var(--fs-text);
    background: var(--fs-bg-deep);
    min-height: 100vh;
}

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

a {
    color: inherit;
}

.fs-root {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Crown header */
.fs-crown {
    position: sticky;
    top: 0;
    z-index: 120;
    background: linear-gradient(180deg, #111936 0%, #0a1028 100%);
    border-bottom: 1px solid var(--fs-line);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.fs-crown__row {
    max-width: var(--fs-max);
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.fs-mark {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    min-width: 0;
}

.fs-mark img {
    height: 38px;
    width: auto;
}

.fs-mark__text {
    display: inline-flex;
    align-items: stretch;
    font-family: var(--fs-font-display);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 1.05rem;
}

.fs-mark__badge {
    background: var(--fs-blue-bright);
    color: #fff;
    padding: 8px 10px;
    border-radius: 4px 0 0 4px;
}

.fs-mark__tail {
    background: var(--fs-orange);
    color: #fff;
    padding: 8px 12px;
    border-radius: 0 4px 4px 0;
}

.fs-crown__tools {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
}

.fs-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: var(--fs-radius-sm);
    font-family: var(--fs-font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.fs-chip:hover {
    transform: translateY(-1px);
}

.fs-chip--ghost {
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.72);
    background: transparent;
}

.fs-chip--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
}

.fs-chip--fire {
    color: #fff;
    background: linear-gradient(180deg, var(--fs-orange-hot), var(--fs-orange));
    box-shadow: 0 8px 18px rgba(255, 90, 18, 0.35);
}

/* Horizontal nav rail under header */
.fs-rail {
    background: rgba(8, 12, 30, 0.96);
    border-bottom: 1px solid var(--fs-line);
    backdrop-filter: blur(10px);
}

.fs-rail__inner {
    max-width: var(--fs-max);
    margin: 0 auto;
    padding: 0 12px;
}

.fs-rail__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.fs-rail__list::-webkit-scrollbar {
    display: none;
}

.fs-rail__item {
    flex: 0 0 auto;
}

.fs-rail__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 92px;
    padding: 12px 14px 14px;
    text-decoration: none;
    color: var(--fs-text-dim);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.fs-rail__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.fs-rail__link.is-live {
    color: #fff;
    border-bottom-color: var(--fs-orange);
    background: var(--fs-blue-soft);
}

.fs-rail__glyph {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fs-rail__glyph--fill {
    fill: currentColor;
    stroke: none;
}

/* Mobile pocket menu */
.fs-pocket {
    display: none;
    position: fixed;
    left: 14px;
    bottom: 14px;
    z-index: 200;
    width: var(--fs-pocket-size);
    height: var(--fs-pocket-size);
    border: 0;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--fs-blue-bright), #1b2eb8);
    box-shadow: var(--fs-shadow);
    cursor: pointer;
    padding: 0;
}

.fs-pocket__bars,
.fs-pocket__bars::before,
.fs-pocket__bars::after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    margin: 0 auto;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.fs-pocket__bars::before {
    transform: translateY(-7px);
}

.fs-pocket__bars::after {
    transform: translateY(5px);
}

.fs-pocket.is-open .fs-pocket__bars {
    background: transparent;
}

.fs-pocket.is-open .fs-pocket__bars::before {
    transform: rotate(45deg);
}

.fs-pocket.is-open .fs-pocket__bars::after {
    transform: rotate(-45deg) translateY(-2px);
}

.fs-pocket__veil {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 190;
    background: rgba(2, 5, 18, 0.72);
    backdrop-filter: blur(3px);
}

.fs-pocket__veil.is-visible {
    display: block;
}

.fs-pocket__sheet {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 195;
    width: min(320px, calc(100vw - 24px));
    max-height: min(78vh, 620px);
    margin: 0 0 calc(var(--fs-pocket-size) + 22px) 12px;
    padding: 18px 14px 16px;
    border-radius: var(--fs-radius-lg);
    background: linear-gradient(180deg, #121a3d 0%, #0a1028 100%);
    border: 1px solid var(--fs-line);
    box-shadow: var(--fs-shadow);
    overflow-y: auto;
    transform: translateY(calc(100% + 40px));
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.fs-pocket__sheet.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.fs-pocket__sheet .fs-rail__list {
    flex-direction: column;
    gap: 6px;
}

.fs-pocket__sheet .fs-rail__link {
    flex-direction: row;
    justify-content: flex-start;
    min-width: 0;
    width: 100%;
    border-bottom: 0;
    border-radius: var(--fs-radius-md);
    font-size: 0.78rem;
}

.fs-pocket__sheet .fs-rail__link.is-live {
    background: rgba(255, 90, 18, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 90, 18, 0.35);
}

/* Main stage */
.fs-stage {
    flex: 1;
    width: 100%;
    max-width: var(--fs-max);
    margin: 0 auto;
    padding: 18px 20px 96px;
}

/* Breadcrumbs */
.fs-trail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    font-size: 0.82rem;
}

.fs-trail__link {
    color: var(--fs-text-dim);
    text-decoration: none;
}

.fs-trail__link:hover {
    color: #fff;
}

.fs-trail__sep {
    color: rgba(255, 255, 255, 0.25);
}

/* Hero slider */
.fs-hero {
    margin-bottom: 24px;
}

.fs-hero__viewport {
    position: relative;
    overflow: hidden;
    border-radius: var(--fs-radius-lg);
    background: linear-gradient(135deg, #1a3fd4, #0f1f66);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fs-hero__track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.fs-hero__slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.fs-hero__frame {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    min-height: 120px;
}

.fs-hero__frame picture,
.fs-hero__frame img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: clamp(120px, 24vw, 220px);
    object-fit: contain;
    margin: 0 auto;
}

.fs-hero__copy {
    padding: 0 18px 16px;
}

.fs-hero__title {
    font-family: var(--fs-font-display);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 6px;
}

.fs-hero__note {
    color: var(--fs-text-dim);
    font-size: 0.88rem;
    margin-bottom: 12px;
}

.fs-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 22px;
    border-radius: var(--fs-radius-sm);
    background: linear-gradient(180deg, var(--fs-orange-hot), var(--fs-orange));
    color: #fff;
    font-family: var(--fs-font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(255, 90, 18, 0.28);
}

.fs-hero__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0 4px;
}

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

.fs-hero__dot.is-active {
    background: var(--fs-orange);
    transform: scale(1.15);
}

/* Game sections */
.fs-grid-block {
    margin-bottom: 28px;
}

.fs-grid-block__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.fs-grid-block__title {
    font-family: var(--fs-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fs-grid-block__title::before {
    content: "";
    width: 4px;
    height: 18px;
    border-radius: 4px;
    background: var(--fs-orange);
}

.fs-grid-block__more {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: var(--fs-radius-sm);
    border: 1px solid var(--fs-line);
    color: var(--fs-text-dim);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
}

.fs-grid-block__more:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
}

.fs-slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    gap: 14px;
}

.fs-slot-card {
    background: var(--fs-bg-card);
    border: 1px solid var(--fs-line);
    border-radius: var(--fs-radius-md);
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.fs-slot-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--fs-shadow);
}

.fs-slot-card__visual {
    position: relative;
    background: #0a1024;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    padding: 8px;
}

.fs-slot-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fs-slot-card__actions {
    display: flex;
    gap: 6px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.22);
}

.fs-slot-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 8px;
    border-radius: var(--fs-radius-sm);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
}

.fs-slot-btn--demo {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: transparent;
}

.fs-slot-btn--play {
    color: #fff;
    background: linear-gradient(180deg, var(--fs-orange-hot), var(--fs-orange));
}

.fs-slot-card__name {
    padding: 10px 12px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    text-align: center;
    color: var(--fs-text);
}

/* Bonuses */
.fs-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.fs-promo-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, rgba(24, 56, 200, 0.35) 0%, rgba(10, 16, 36, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--fs-radius-lg);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fs-promo-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fs-blue-bright), var(--fs-orange));
    opacity: 0.7;
}

.fs-promo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 90, 18, 0.35);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4);
}

.fs-promo-card__visual {
    position: relative;
    background: rgba(0, 0, 0, 0.2);
}

.fs-promo-card__visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 170px;
    padding: 8px;
}

.fs-promo-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
    padding: 16px 16px 18px;
}

.fs-promo-card__name {
    font-family: var(--fs-font-display);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.3;
}

.fs-promo-card__desc {
    color: var(--fs-text-dim);
    font-size: 0.84rem;
    line-height: 1.55;
    margin: 0;
    flex: 1;
}

.fs-promo-card__value {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: var(--fs-radius-sm);
    background: linear-gradient(180deg, var(--fs-orange-hot), var(--fs-orange));
    color: #fff;
    font-family: var(--fs-font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 6px 16px rgba(255, 90, 18, 0.25);
}

.fs-promo-card__tag {
    display: inline-flex;
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(39, 72, 255, 0.18);
    border: 1px solid rgba(39, 72, 255, 0.35);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #c8d4ff;
}

.fs-promo-card__terms {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
    font-size: 0.72rem;
    color: rgba(154, 163, 199, 0.85);
    line-height: 1.45;
}

.fs-stage--bonuses .text-content {
    margin-top: 8px;
}

/* SEO text block - only place for h1-h3 */
.fs-seo {
    max-width: 920px;
    margin: 34px auto 0;
    padding: 28px 26px;
    background:
        radial-gradient(circle at 100% 0%, rgba(39, 72, 255, 0.08) 0%, transparent 42%),
        rgba(255, 255, 255, 0.02);
    border: 1px solid var(--fs-line);
    border-radius: var(--fs-radius-lg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.fs-seo h1 {
    font-family: var(--fs-font-display);
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    line-height: 1.25;
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--fs-line);
}

.fs-seo h2 {
    font-family: var(--fs-font-display);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin: 30px 0 12px;
    padding-left: 12px;
    border-left: 3px solid var(--fs-orange);
}

.fs-seo h3 {
    font-size: 1rem;
    margin: 22px 0 10px;
    color: var(--fs-orange-hot);
}

.fs-seo p {
    margin-bottom: 14px;
    color: #d8dcf0;
    line-height: 1.65;
}

.fs-seo a {
    color: var(--fs-orange-hot);
    text-underline-offset: 3px;
    transition: color 0.18s ease;
}

.fs-seo a:hover {
    color: #fff;
}

.fs-seo img {
    margin: 18px 0;
    border-radius: var(--fs-radius-md);
    border: 1px solid var(--fs-line);
}

.fs-seo blockquote {
    margin: 18px 0;
    padding: 14px 16px;
    border-left: 3px solid var(--fs-orange);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 var(--fs-radius-sm) var(--fs-radius-sm) 0;
}

.fs-seo .list-container ul,
.fs-seo .list-container ol {
    margin: 14px 0;
    padding-left: 22px;
}

.fs-seo .list-container li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.fs-seo .list-container li::marker {
    color: var(--fs-orange);
}

/* Tables - horizontal scroll on mobile */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 18px 0;
    border: 1px solid var(--fs-line);
    border-radius: var(--fs-radius-md);
    background: rgba(0, 0, 0, 0.18);
}

.table-wrapper table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
}

.table-wrapper th,
.table-wrapper td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--fs-line);
    text-align: left;
    vertical-align: top;
}

.table-wrapper th {
    background: rgba(255, 255, 255, 0.04);
    font-weight: 700;
    white-space: nowrap;
}

.table-wrapper caption {
    caption-side: top;
    padding: 12px 14px;
    font-weight: 700;
    text-align: left;
}

/* FAQ / HowTo */
.faq-wrapper,
.howto-wrapper {
    margin: 18px 0;
}

.faq-item-block {
    border: 1px solid var(--fs-line);
    border-radius: var(--fs-radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.18s ease;
}

.faq-item-block:hover {
    border-color: rgba(255, 90, 18, 0.25);
}

.faq-question-block {
    padding: 14px 16px;
    background: rgba(39, 72, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-answer-block {
    padding: 14px 16px;
    color: #d4daf0;
    line-height: 1.6;
}

.howto-wrapper {
    padding: 18px;
    border: 1px solid var(--fs-line);
    border-radius: var(--fs-radius-md);
    background: rgba(255, 255, 255, 0.02);
}

.howto-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: fs-step;
}

.howto-step-item {
    counter-increment: fs-step;
    padding: 12px 0 12px 34px;
    position: relative;
    border-bottom: 1px solid var(--fs-line);
}

.howto-step-item:last-child {
    border-bottom: 0;
}

.howto-step-item::before {
    content: counter(fs-step);
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--fs-orange);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.fs-base {
    position: relative;
    margin-top: auto;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(39, 72, 255, 0.14) 0%, transparent 55%),
        linear-gradient(180deg, #0b1230 0%, #060914 100%);
    border-top: 1px solid var(--fs-line);
    overflow: hidden;
}

.fs-base__aurora {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fs-blue-core) 0%, var(--fs-orange) 50%, var(--fs-blue-bright) 100%);
    opacity: 0.85;
}

.fs-base__inner {
    position: relative;
    max-width: var(--fs-max);
    margin: 0 auto;
    padding: 36px 20px 28px;
}

.fs-base__paydeck {
    margin-bottom: 28px;
    padding: 18px 18px 16px;
    border-radius: var(--fs-radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--fs-line);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.fs-base__paydeck-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.fs-base__paydeck-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(145deg, var(--fs-blue-bright), #1b2eb8);
    position: relative;
    flex-shrink: 0;
}

.fs-base__paydeck-icon::before {
    content: "";
    position: absolute;
    inset: 7px 6px 6px 7px;
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    border-radius: 3px;
}

.fs-base__paydeck-icon::after {
    content: "";
    position: absolute;
    left: 9px;
    right: 9px;
    top: 11px;
    height: 2px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 2px;
}

.fs-base__paydeck-title {
    font-family: var(--fs-font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #fff;
}

.fs-base__paydeck-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
    gap: 10px;
}

.fs-base__paytile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 72px;
    padding: 10px 8px;
    border-radius: var(--fs-radius-md);
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.fs-base__paytile:hover {
    border-color: rgba(255, 90, 18, 0.35);
    background: rgba(255, 90, 18, 0.06);
    transform: translateY(-2px);
}

.fs-base__paytile img {
    max-height: 30px;
    width: auto;
    object-fit: contain;
}

.fs-base__paytile-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--fs-text-dim);
}

.fs-base__masthead {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--fs-line);
}

.fs-base__mark img {
    height: 36px;
    width: auto;
}

.fs-base__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fs-base__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: var(--fs-radius-sm);
    font-family: var(--fs-font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.fs-base__btn:hover {
    transform: translateY(-1px);
}

.fs-base__btn--core {
    color: #fff;
    background: linear-gradient(180deg, var(--fs-blue-bright), #1e35c4);
    box-shadow: 0 8px 18px rgba(39, 72, 255, 0.28);
}

.fs-base__btn--ghost {
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    background: transparent;
}

.fs-base__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.06);
}

.fs-base__btn--accent {
    color: #fff;
    background: linear-gradient(180deg, var(--fs-orange-hot), var(--fs-orange));
    box-shadow: 0 8px 18px rgba(255, 90, 18, 0.28);
}

.fs-base__columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.fs-base__panel {
    padding: 16px 16px 14px;
    border-radius: var(--fs-radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.fs-base__heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--fs-font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #fff;
}

.fs-base__heading-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--fs-orange);
    box-shadow: 0 0 8px rgba(255, 90, 18, 0.55);
    flex-shrink: 0;
}

.fs-base__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fs-base__links li {
    margin-bottom: 6px;
}

.fs-base__links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fs-text-dim);
    text-decoration: none;
    font-size: 0.86rem;
    transition: color 0.18s ease, padding-left 0.18s ease;
}

.fs-base__links a::before {
    content: "";
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--fs-orange);
    transition: width 0.18s ease;
}

.fs-base__links a:hover,
.fs-base__links a.is-live {
    color: #fff;
    padding-left: 2px;
}

.fs-base__links a:hover::before,
.fs-base__links a.is-live::before {
    width: 10px;
}

.fs-base__social-link {
    display: inline-flex !important;
    align-items: center;
    padding: 8px 12px;
    border-radius: var(--fs-radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--fs-line);
}

.fs-base__social-link::before {
    display: none !important;
}

.fs-base__social-link:hover {
    padding-left: 12px !important;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.07);
}

.fs-base__social img {
    max-height: 26px;
    width: auto;
}

.fs-base__safe {
    margin-bottom: 22px;
    padding: 18px 16px;
    border-radius: var(--fs-radius-lg);
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid var(--fs-line);
}

.fs-base__safe-head {
    text-align: center;
    font-family: var(--fs-font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fs-text-dim);
    margin-bottom: 14px;
}

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

.fs-base__safe-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: var(--fs-radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.18s ease, transform 0.18s ease;
}

.fs-base__safe-item:hover {
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.fs-base__safe-list img {
    max-height: 38px;
    width: auto;
}

.fs-base__legal {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--fs-line);
}

.fs-base__copy {
    margin: 0 0 6px;
    font-size: 0.78rem;
    color: #fff;
    font-weight: 600;
}

.fs-base__disclaimer {
    margin: 0;
    font-size: 0.72rem;
    color: var(--fs-text-dim);
    line-height: 1.55;
    max-width: 720px;
    margin-inline: auto;
}

/* App page */
.fs-app-hero {
    position: relative;
    margin: 0 0 28px;
    padding: 22px;
    border-radius: var(--fs-radius-lg);
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 90, 18, 0.14) 0%, transparent 45%),
        linear-gradient(155deg, rgba(39, 72, 255, 0.2) 0%, rgba(11, 18, 40, 0.95) 55%, rgba(6, 9, 20, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--fs-shadow);
    overflow: hidden;
}

.fs-app-hero__glow {
    position: absolute;
    top: -60px;
    left: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 72, 255, 0.25) 0%, transparent 68%);
    pointer-events: none;
}

.fs-app-hero .app-info-table-container {
    position: relative;
    border: 0;
    background: transparent;
    border-radius: 0;
    overflow: visible;
}

.fs-app-hero .app-info-table {
    width: 100%;
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.app-info-table-wrapper {
    margin: 0 0 24px;
}

.app-info-row {
    border-bottom: 0;
}

.app-info-row td {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: middle;
}

.app-info-row td:first-child {
    border-radius: var(--fs-radius-md) 0 0 var(--fs-radius-md);
    border-right: 0;
    width: 58px;
}

.app-info-row td:last-child {
    border-radius: 0 var(--fs-radius-md) var(--fs-radius-md) 0;
}

.app-info-label-cell,
.app-info-value-cell {
    padding: 14px 16px;
}

.app-info-label-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 90, 18, 0.12);
    border: 1px solid rgba(255, 90, 18, 0.22);
}

.app-info-icon {
    width: 20px;
    height: 20px;
    color: var(--fs-orange-hot);
}

.app-info-value-cell {
    font-size: 0.92rem;
    line-height: 1.55;
    color: #e8ecff;
}

.app-name-with-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.app-name-logo {
    width: 52px;
    height: 52px;
    padding: 6px;
    border-radius: 14px;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.app-name-text {
    font-family: var(--fs-font-display);
    font-size: 1.05rem;
    font-weight: 700;
}

.app-download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: var(--fs-radius-sm);
    background: linear-gradient(180deg, var(--fs-orange-hot), var(--fs-orange));
    color: #fff;
    font-family: var(--fs-font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(255, 90, 18, 0.28);
    transition: transform 0.18s ease;
}

.app-download-link:hover {
    transform: translateY(-1px);
}

/* 404 */
.fs-miss {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(68vh, 560px);
    padding: 40px 16px;
}

.fs-miss__shell {
    position: relative;
    width: min(100%, 520px);
    padding: 48px 28px 40px;
    text-align: center;
    border-radius: var(--fs-radius-lg);
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 90, 18, 0.12) 0%, transparent 52%),
        linear-gradient(165deg, rgba(39, 72, 255, 0.18) 0%, rgba(17, 25, 54, 0.95) 45%, rgba(6, 9, 20, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.fs-miss__glow {
    position: absolute;
    inset: -40% -20% auto;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 90, 18, 0.22) 0%, transparent 68%);
    pointer-events: none;
}

.fs-miss__chip {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--fs-orange-hot), #c93a00);
    border: 3px dashed rgba(255, 255, 255, 0.35);
    opacity: 0.55;
    transform: rotate(18deg);
}

.fs-miss__code {
    position: relative;
    font-family: var(--fs-font-display);
    font-size: clamp(4.5rem, 18vw, 6.5rem);
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 10px;
    background: linear-gradient(180deg, #fff 0%, var(--fs-orange-hot) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 8px 24px rgba(255, 90, 18, 0.25));
}

.fs-miss__title {
    position: relative;
    font-family: var(--fs-font-display);
    font-size: clamp(1.15rem, 3vw, 1.45rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.fs-miss__text {
    position: relative;
    color: var(--fs-text-dim);
    max-width: 420px;
    margin: 0 auto 28px;
    font-size: 0.92rem;
    line-height: 1.6;
}

.fs-miss__cta {
    position: relative;
    min-width: 220px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.78rem;
    box-shadow: 0 12px 28px rgba(255, 90, 18, 0.32);
}

/* Contact page */
.fs-stage--contact {
    max-width: 760px;
}

.fs-contact-shell {
    position: relative;
}

.fs-contact-shell::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -10px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 72, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.fs-stage--contact .text-content {
    margin-top: 0;
    padding: 0;
    background: transparent;
    border: 0;
}

.fs-stage--contact .text-content h1 {
    margin: 0 0 24px;
    padding: 28px 24px;
    border-radius: var(--fs-radius-lg);
    text-align: center;
    background: linear-gradient(135deg, rgba(39, 72, 255, 0.22) 0%, rgba(255, 90, 18, 0.12) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--fs-shadow);
}

.fs-stage--contact .text-content h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 32px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 90, 18, 0.35);
}

.fs-stage--contact .text-content h2::before {
    content: "";
    width: 4px;
    height: 18px;
    border-radius: 4px;
    background: var(--fs-orange);
}

.fs-stage--contact .text-content h3 {
    margin: 0 0 10px;
    padding: 14px 16px 0;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--fs-orange-hot);
}

.fs-stage--contact .text-content h3 + p {
    margin: 0 0 16px;
    padding: 0 16px 16px;
    border-radius: 0 0 var(--fs-radius-md) var(--fs-radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--fs-line);
    border-top: 0;
}

.fs-stage--contact .text-content h3:has(+ p) {
    padding-top: 16px;
    border-radius: var(--fs-radius-md) var(--fs-radius-md) 0 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--fs-line);
    border-bottom: 0;
}

.fs-stage--contact .text-content p {
    font-size: 0.94rem;
    line-height: 1.65;
}

.fs-stage--contact .text-content a[href^="mailto:"] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    padding: 10px 16px;
    border-radius: var(--fs-radius-sm);
    background: linear-gradient(180deg, var(--fs-orange-hot), var(--fs-orange));
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(255, 90, 18, 0.25);
}

.fs-stage--contact .text-content a[href^="mailto:"]:hover {
    transform: translateY(-1px);
}

/* Legal pages (privacy, terms) */
.fs-stage--legal {
    max-width: 880px;
}

.fs-legal-shell {
    position: relative;
}

.fs-legal-shell::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(90deg, var(--fs-blue-core), var(--fs-orange));
}

.fs-stage--legal .text-content {
    margin-top: 0;
    padding: 32px 28px 28px;
    background: linear-gradient(180deg, rgba(17, 25, 54, 0.65) 0%, rgba(6, 9, 20, 0.92) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--fs-shadow);
}

.fs-stage--legal .text-content h1 {
    margin: 0 0 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--fs-line);
}

.fs-stage--legal .text-content h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 12px 14px;
    border-radius: var(--fs-radius-sm);
    background: rgba(39, 72, 255, 0.1);
    border-left: 3px solid var(--fs-blue-bright);
}

.fs-stage--legal .text-content h3 {
    margin-top: 24px;
    color: var(--fs-orange-hot);
}

.fs-stage--legal .text-content p {
    color: #d4daf0;
}

.fs-stage--legal .text-content blockquote {
    border-left-color: var(--fs-blue-bright);
    background: rgba(39, 72, 255, 0.08);
}

.fs-stage--legal .text-content .list-container li {
    padding-left: 4px;
}

.fs-stage--legal .text-content .list-container li::marker {
    color: var(--fs-orange);
}

/* SEO text shell - headings allowed only here */
.text-content {
    max-width: 920px;
    margin: 34px auto 0;
    padding: 28px 26px;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 90, 18, 0.06) 0%, transparent 40%),
        rgba(255, 255, 255, 0.02);
    border: 1px solid var(--fs-line);
    border-radius: var(--fs-radius-lg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.text-content h1,
.text-content h2,
.text-content h3 {
    font-family: var(--fs-font-display);
}

.text-content h1 {
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    line-height: 1.25;
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--fs-line);
}

.text-content h2 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin: 30px 0 12px;
    padding-left: 12px;
    border-left: 3px solid var(--fs-blue-bright);
}

.text-content h3 {
    font-size: 1rem;
    margin: 22px 0 10px;
    color: var(--fs-orange-hot);
}

.text-content p {
    margin-bottom: 14px;
    color: #d8dcf0;
    line-height: 1.65;
}

.text-content a {
    color: var(--fs-orange-hot);
    text-underline-offset: 3px;
}

.text-content a:hover {
    color: #fff;
}

.breadcrumb-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 0.82rem;
}

.breadcrumb-link {
    color: var(--fs-text-dim);
    text-decoration: none;
}

.breadcrumb-divider {
    color: rgba(255, 255, 255, 0.25);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 22px;
    border-radius: var(--fs-radius-sm);
    background: linear-gradient(180deg, var(--fs-orange-hot), var(--fs-orange));
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .fs-rail {
        display: none;
    }

    .fs-pocket {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .fs-stage {
        padding-bottom: calc(var(--fs-pocket-size) + 28px);
    }

    .fs-crown__row {
        padding: 10px 14px;
    }

    .fs-chip {
        min-height: 36px;
        padding: 0 12px;
        font-size: 0.72rem;
    }

    .fs-slot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
}

@media (min-width: 993px) {
    .fs-pocket,
    .fs-pocket__veil,
    .fs-pocket__sheet {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .fs-crown__tools {
        gap: 6px;
    }

    .fs-chip--ghost {
        padding: 0 10px;
    }

    .fs-slot-card__actions {
        flex-direction: column;
    }

    .fs-base__masthead {
        flex-direction: column;
        align-items: flex-start;
    }

    .fs-base__actions {
        width: 100%;
    }

    .fs-base__btn {
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
        padding: 0 10px;
        font-size: 0.66rem;
    }

    .fs-base__paydeck-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
