/* Local typefaces - no remote font requests */
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/theme-pack/typefaces/sora-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/theme-pack/typefaces/sora-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/theme-pack/typefaces/ibm-plex-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/theme-pack/typefaces/ibm-plex-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Base reset + layout tokens */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ink: #0a1018;
    --ink-soft: #121c28;
    --ink-line: #2a3a4d;
    --fog: #b8c4d4;
    --snow: #eef3f8;
    --flare: #d91a5b;
    --flare-hot: #f23d76;
    --signal: #1f8cff;
    --mint: #2db88a;
    --copper: #d4a15a;
    --radius-sm: 6px;
    --radius-md: 10px;
    --shell-pad: clamp(12px, 2.4vw, 28px);
    --chrome-h: 64px;
    --rail-h: 52px;
    --cut: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

body {
    font-family: "IBM Plex Sans", "Sora", sans-serif;
    line-height: 1.6;
    color: var(--snow);
    background-color: var(--ink);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        radial-gradient(900px 380px at 8% -8%, rgba(31, 140, 255, 0.16), transparent 58%),
        radial-gradient(700px 320px at 92% 4%, rgba(212, 161, 90, 0.1), transparent 52%),
        linear-gradient(185deg, #070c14 0%, var(--ink) 42%, #0c1520 100%);
    background-size: 28px 28px, 28px 28px, auto, auto, auto;
    min-height: 100vh;
}

body::before {
    content: "";
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-chrome,
.page-stage,
.site-footer,
.mobile-burger,
.mobile-overlay {
    position: relative;
    z-index: 1;
}

.site-chrome { z-index: 900; }
.mobile-burger { z-index: 1001; }
.mobile-overlay { z-index: 850; }

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

a {
    color: inherit;
}

/* ===== Site chrome: brand strip + horizontal nav rail ===== */
.site-chrome {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(11, 16, 32, 0.92);
    border-bottom: 1px solid var(--ink-line);
}

.chrome-brand-strip {
    border-bottom: 1px solid rgba(36, 48, 73, 0.85);
    background: linear-gradient(90deg, rgba(40, 52, 78, 0.65) 0%, rgba(30, 42, 64, 0.32) 38%, transparent 68%);
    backdrop-filter: blur(10px);
}

.chrome-brand-inner {
    max-width: 1280px;
    margin: 0 auto;
    height: var(--chrome-h);
    min-height: var(--chrome-h);
    max-height: var(--chrome-h);
    padding: 0 var(--shell-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    overflow: visible;
}

.chrome-brand-mark {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.chrome-brand-mark img {
    width: 88px;
    height: 88px;
    margin: -12px 0;
    object-fit: contain;
    display: block;
}

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

.chrome-action-cluster {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.chrome-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    clip-path: var(--cut);
    border-radius: 0;
    text-decoration: none;
    font-family: "Sora", "IBM Plex Sans", sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease;
}

.chrome-btn:hover {
    transform: translateY(-2px) skewX(-1deg);
}

.chrome-btn--ghost {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--ink-line);
    color: var(--snow);
}

.chrome-btn--solid {
    background: linear-gradient(120deg, var(--flare) 0%, #9e1248 55%, #7a1638 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    box-shadow: 0 8px 22px rgba(217, 26, 91, 0.22);
}

.chrome-btn--solid:hover {
    filter: brightness(1.08);
}

/* Horizontal menu row directly under header */
.chrome-nav-rail {
    background: linear-gradient(180deg, rgba(18, 26, 46, 0.95), rgba(11, 16, 32, 0.98));
}

@media (min-width: 993px) {
    .chrome-nav-rail {
        position: sticky;
        top: var(--chrome-h);
        z-index: 899;
    }
}

.nav-rail {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--shell-pad);
}

.nav-rail-list {
    list-style: none;
    display: flex;
    align-items: stretch;
    gap: 4px;
    min-height: var(--rail-h);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.nav-rail-item {
    flex: 0 0 auto;
}

.nav-rail-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: var(--rail-h);
    padding: 0 14px;
    color: var(--fog);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.nav-rail-link:hover {
    color: var(--snow);
    background: rgba(31, 140, 255, 0.08);
}

.nav-rail-link.is-current {
    color: var(--snow);
    border-bottom-color: transparent;
    background: linear-gradient(180deg, rgba(212, 161, 90, 0.12), transparent);
}

.nav-rail-link.is-current .nav-rail-icon {
    color: var(--copper);
}

@keyframes rail-ink {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.nav-rail-link.is-current::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 2px;
    background: var(--copper);
    transform-origin: left center;
    animation: rail-ink 0.35s ease both;
}

.nav-rail-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}

.nav-rail-label {
    line-height: 1.2;
}

/* Legacy class aliases kept for older markup hooks */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    clip-path: var(--cut);
    background: linear-gradient(120deg, var(--flare) 0%, #9e1248 100%);
    color: #fff;
    text-decoration: none;
    font-family: "Sora", "IBM Plex Sans", sans-serif;
    font-weight: 700;
    border: none;
}

.miss-page-panel {
    position: relative;
    text-align: center;
    max-width: 640px;
    margin: 48px auto;
    padding: clamp(40px, 7vw, 72px) clamp(20px, 4vw, 40px);
    border: 1px solid rgba(42, 58, 77, 0.95);
    border-radius: 14px;
    overflow: hidden;
    background:
        radial-gradient(480px 220px at 50% 0%, rgba(217, 26, 91, 0.22), transparent 62%),
        radial-gradient(360px 180px at 80% 100%, rgba(31, 140, 255, 0.14), transparent 60%),
        linear-gradient(165deg, rgba(16, 24, 36, 0.96), rgba(8, 12, 20, 0.98));
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.miss-page-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    left: 50%;
    top: 18%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 61, 118, 0.35), transparent 68%);
    filter: blur(8px);
    pointer-events: none;
    animation: miss-pulse 3.2s ease-in-out infinite;
}

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

.miss-page-code {
    position: relative;
    font-family: "Sora", sans-serif;
    font-size: clamp(4.6rem, 14vw, 7.2rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 0.95;
    margin: 0 0 18px;
    background: linear-gradient(120deg, var(--flare-hot) 0%, var(--copper) 45%, var(--signal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 40px rgba(217, 26, 91, 0.25);
    animation: miss-code-in 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes miss-code-in {
    from { opacity: 0; transform: translateY(18px) scale(0.94); letter-spacing: 0.22em; }
    to { opacity: 1; transform: translateY(0) scale(1); letter-spacing: 0.08em; }
}

.miss-page-title {
    position: relative;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.15rem, 2.6vw, 1.45rem);
    font-weight: 700;
    color: var(--snow);
    margin: 0 auto 14px;
    max-width: 28ch;
    line-height: 1.35;
    animation: miss-fade-up 0.65s ease 0.12s both;
}

.miss-page-panel p {
    position: relative;
    margin: 0 auto 28px;
    max-width: 38ch;
    color: var(--fog);
    font-size: 1rem;
    line-height: 1.65;
    animation: miss-fade-up 0.65s ease 0.22s both;
}

.miss-page-cta {
    position: relative;
    min-width: 210px;
    animation: miss-fade-up 0.65s ease 0.32s both;
}

@keyframes miss-fade-up {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile burger (desktop hidden; position refined in point b) */
.mobile-burger {
    display: none;
    background: rgba(18, 26, 46, 0.95);
    border: 1px solid var(--ink-line);
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--snow);
    margin: 4px 0;
    border-radius: 2px;
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 850;
}

.mobile-overlay[hidden] {
    display: none !important;
}

/* Page stage: deeper shell nesting (stage > shell > flow) */
.page-stage {
    width: 100%;
}

.page-stage__shell {
    width: 100%;
}

.page-stage__flow,
.main-content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px var(--shell-pad) 40px;
}

/* Banners / welcome deck slider */
.promotional-banners,
.welcome-deck {
    margin-bottom: 24px;
}

.welcome-deck {
    background: var(--ink-soft);
    border: 1px solid var(--ink-line);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.welcome-deck__viewport {
    position: relative;
}

.welcome-deck__slide {
    display: none;
}

.welcome-deck__slide.is-active {
    display: block;
    animation: deck-fade 0.35s ease;
}

@keyframes deck-fade {
    from { opacity: 0.35; }
    to { opacity: 1; }
}

.welcome-deck__media {
    display: flex;
    justify-content: center;
    align-items: center;
    background:
        linear-gradient(120deg, rgba(31, 140, 255, 0.08), transparent 45%),
        #0a121c;
    padding: 12px 12px 0;
}

.welcome-deck__media picture {
    display: block;
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
}

.promo-banner-image,
.welcome-deck__image {
    display: block;
    width: 100%;
    max-width: 768px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    aspect-ratio: 768 / 250;
}

@media (max-width: 768px) {
    .welcome-deck__media picture {
        max-width: 250px;
    }

    .promo-banner-image,
    .welcome-deck__image {
        max-width: 250px;
        aspect-ratio: 1 / 1;
    }
}

.promo-banner-content,
.welcome-deck__copy {
    padding: 16px 18px 20px;
}

.promo-banner-title {
    font-family: "Sora", "IBM Plex Sans", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.promo-banner-text {
    margin-bottom: 12px;
    color: var(--fog);
}

.promo-banner-btn {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 18px;
    clip-path: var(--cut);
    background: linear-gradient(120deg, var(--flare) 0%, #9e1248 100%);
    color: #fff;
    text-decoration: none;
    font-family: "Sora", "IBM Plex Sans", sans-serif;
    font-weight: 700;
}

.welcome-deck__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 16px 16px;
}

.welcome-deck__nav,
.welcome-deck__dot {
    border: 1px solid var(--ink-line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--snow);
    cursor: pointer;
}

.welcome-deck__nav {
    width: 36px;
    height: 36px;
    clip-path: var(--cut);
    font-size: 1.2rem;
    line-height: 1;
}

.welcome-deck__dots {
    display: flex;
    gap: 8px;
}

.welcome-deck__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    padding: 0;
}

.welcome-deck__dot.is-active {
    background: var(--copper);
    border-color: var(--copper);
}

/* Games */
.game-section {
    margin-bottom: 32px;
}

.section-header {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.section-title {
    font-family: "Sora", "IBM Plex Sans", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.show-all-btn {
    padding: 8px 14px;
    border: 1px solid var(--ink-line);
    border-radius: 999px;
    text-decoration: none;
    color: var(--fog);
    display: inline-block;
    font-size: 0.85rem;
}

.games-carousel {
    overflow: hidden;
}

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

.game-card {
    border: 1px solid var(--ink-line);
    background: var(--ink-soft);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.game-image-wrapper {
    position: relative;
    background: #0a0f1c;
    overflow: hidden;
}

.game-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 273 / 382;
    object-fit: contain;
    object-position: center;
    background: #0a0f1c;
}

.game-action-stack {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    pointer-events: none;
}

.game-card:hover .game-action-stack,
.game-card:focus-within .game-action-stack {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.game-action-btn,
.game-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 10px;
    clip-path: var(--cut);
    text-align: center;
    text-decoration: none;
    font-family: "Sora", "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
}

.game-action-btn--ghost {
    background: rgba(10, 16, 24, 0.82);
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--snow);
    backdrop-filter: blur(4px);
}

.game-action-btn--solid,
.game-play-btn {
    background: linear-gradient(120deg, var(--flare) 0%, #9e1248 100%);
    color: #fff;
}

@media (max-width: 992px) {
    .game-action-stack {
        opacity: 1;
        transform: none;
        pointer-events: auto;
        position: static;
        padding: 8px;
        background: rgba(8, 12, 20, 0.92);
    }
}

.game-title {
    padding: 10px;
    text-align: center;
    font-size: 0.88rem;
}

/* Bonuses */
.bonuses-section {
    margin-bottom: 36px;
}

.bonuses-section .section-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    letter-spacing: 0.02em;
}

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

.bonus-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(42, 58, 77, 0.95);
    background:
        linear-gradient(165deg, rgba(16, 24, 36, 0.98), rgba(8, 12, 20, 0.98));
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.bonus-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, var(--flare), var(--copper), var(--signal));
    opacity: 0.85;
    z-index: 1;
}

.bonus-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 161, 90, 0.45);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

.bonus-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0a1018;
}

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

.bonus-card:hover .bonus-image {
    transform: scale(1.04);
}

.bonus-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    flex: 1;
}

.bonus-name {
    font-family: "Sora", sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--snow);
    line-height: 1.3;
    margin: 0;
}

.bonus-description {
    margin: 0;
    font-size: 0.9rem;
    color: var(--fog);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bonus-value {
    font-family: "Sora", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--mint);
    margin: 0;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(45, 184, 138, 0.28);
    background: rgba(45, 184, 138, 0.1);
}

.bonus-category {
    margin: 0;
}

.bonus-category-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    background: rgba(31, 140, 255, 0.14);
    border: 1px solid rgba(31, 140, 255, 0.28);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #9db7ff;
    letter-spacing: 0.02em;
}

.bonus-terms {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(42, 58, 77, 0.85);
    font-size: 12px;
    color: #8a94a8;
    line-height: 1.45;
}

.bonus-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.bonus-action-row .game-action-btn {
    flex: 1 1 auto;
    min-width: 120px;
}

/* Text Content / SEO block */
.text-content {
    max-width: 920px;
    margin: 28px auto 0;
    padding: 22px;
    background: rgba(18, 26, 46, 0.65);
    border: 1px solid var(--ink-line);
    border-radius: var(--radius-md);
}

.text-content--rich {
    position: relative;
    padding: clamp(24px, 4vw, 40px);
    border-radius: 14px;
    border: 1px solid rgba(42, 58, 77, 0.95);
    background:
        radial-gradient(640px 220px at 0% 0%, rgba(31, 140, 255, 0.1), transparent 55%),
        radial-gradient(520px 200px at 100% 0%, rgba(217, 26, 91, 0.08), transparent 50%),
        linear-gradient(170deg, rgba(14, 22, 34, 0.96), rgba(8, 12, 20, 0.98));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.text-content--rich h1 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.55rem, 3.2vw, 2.1rem);
    letter-spacing: 0.015em;
    line-height: 1.25;
    margin-bottom: 18px;
    color: var(--snow);
}

.text-content--rich h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.2rem, 2.4vw, 1.45rem);
    margin: 32px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(42, 58, 77, 0.9);
    color: var(--snow);
}

.text-content--rich h3 {
    font-family: "Sora", sans-serif;
    font-size: 1.08rem;
    margin: 22px 0 10px;
    color: var(--copper);
}

.text-content--rich p {
    font-size: 1.01rem;
    line-height: 1.72;
    margin-bottom: 16px;
}

.text-content--rich a {
    color: var(--flare-hot);
    text-decoration: none;
    border-bottom: 1px solid rgba(242, 61, 118, 0.4);
    transition: color 0.15s ease, border-color 0.15s ease;
}

.text-content--rich a:hover {
    color: var(--copper);
    border-bottom-color: rgba(212, 161, 90, 0.65);
}

.text-content--rich .list-container ul,
.text-content--rich .list-container ol {
    list-style: none;
    padding-left: 0;
}

.text-content--rich .list-container li {
    position: relative;
    margin-bottom: 8px;
    padding: 10px 12px 10px 34px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(42, 58, 77, 0.7);
    background: rgba(255, 255, 255, 0.02);
}

.text-content--rich .list-container ul li::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 16px;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--flare), var(--copper));
    transform: rotate(45deg);
}

.text-content--rich .list-container ol {
    counter-reset: seo-step;
}

.text-content--rich .list-container ol li {
    counter-increment: seo-step;
}

.text-content--rich .list-container 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: 11px;
    font-weight: 700;
    color: var(--snow);
    background: rgba(31, 140, 255, 0.28);
}

.text-content--rich .table-wrapper {
    border-radius: 10px;
    border-color: rgba(42, 58, 77, 0.9);
    background: rgba(6, 10, 16, 0.55);
}

.text-content--rich th {
    background: rgba(31, 140, 255, 0.16);
}

.text-content--rich .faq-item-block {
    border-radius: 10px;
    border-color: rgba(42, 58, 77, 0.9);
    background: rgba(8, 12, 20, 0.55);
}

.text-content--rich .faq-question-block {
    background: rgba(217, 26, 91, 0.1);
}

.text-content--rich .howto-step-item {
    margin-bottom: 12px;
    padding: 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(42, 58, 77, 0.8);
    background: rgba(255, 255, 255, 0.02);
}

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

.contact-deck__frame {
    position: relative;
    margin-top: 18px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(42, 58, 77, 0.95);
    background:
        radial-gradient(520px 240px at 8% 0%, rgba(31, 140, 255, 0.18), transparent 58%),
        radial-gradient(420px 220px at 96% 12%, rgba(217, 26, 91, 0.16), transparent 55%),
        linear-gradient(165deg, rgba(14, 22, 34, 0.98), rgba(8, 12, 20, 0.98));
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.contact-deck__aura {
    position: absolute;
    inset: auto auto -40px -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 161, 90, 0.22), transparent 70%);
    pointer-events: none;
    animation: contact-aura 4.5s ease-in-out infinite;
}

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

.contact-deck .text-content {
    position: relative;
    max-width: none;
    margin: 0;
    padding: clamp(28px, 5vw, 48px);
    background: transparent;
    border: 0;
    border-radius: 0;
}

.contact-deck .text-content h1 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    background: linear-gradient(110deg, var(--snow) 0%, var(--copper) 55%, var(--flare-hot) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-deck .text-content h2 {
    font-family: "Sora", sans-serif;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(42, 58, 77, 0.85);
    color: var(--snow);
}

.contact-deck .text-content h3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(31, 140, 255, 0.28);
    background: rgba(31, 140, 255, 0.1);
    color: var(--snow);
    font-size: 1rem;
}

.contact-deck .text-content p {
    font-size: 1.02rem;
    line-height: 1.7;
}

.contact-deck .text-content a {
    color: var(--flare-hot);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid rgba(242, 61, 118, 0.45);
    transition: color 0.15s ease, border-color 0.15s ease;
}

.contact-deck .text-content a:hover {
    color: var(--copper);
    border-bottom-color: rgba(212, 161, 90, 0.7);
}

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

.legal-deck__frame {
    position: relative;
    margin-top: 8px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(42, 58, 77, 0.95);
    background:
        radial-gradient(560px 240px at 0% 0%, rgba(45, 184, 138, 0.12), transparent 55%),
        radial-gradient(480px 220px at 100% 0%, rgba(31, 140, 255, 0.14), transparent 58%),
        linear-gradient(170deg, rgba(13, 20, 30, 0.98), rgba(7, 11, 18, 0.99));
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.legal-deck--terms .legal-deck__frame {
    background:
        radial-gradient(560px 240px at 0% 0%, rgba(212, 161, 90, 0.14), transparent 55%),
        radial-gradient(480px 220px at 100% 0%, rgba(217, 26, 91, 0.12), transparent 58%),
        linear-gradient(170deg, rgba(13, 20, 30, 0.98), rgba(7, 11, 18, 0.99));
}

.legal-deck__aura {
    position: absolute;
    top: -50px;
    right: -30px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 140, 255, 0.2), transparent 70%);
    pointer-events: none;
    animation: contact-aura 5s ease-in-out infinite;
}

.legal-deck--terms .legal-deck__aura {
    background: radial-gradient(circle, rgba(217, 26, 91, 0.22), transparent 70%);
}

.legal-deck .text-content {
    position: relative;
    max-width: none;
    margin: 0;
    padding: clamp(28px, 5vw, 52px);
    background: transparent;
    border: 0;
    border-radius: 0;
}

.legal-deck .text-content h1 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.7rem, 3.6vw, 2.25rem);
    margin-bottom: 18px;
    letter-spacing: 0.02em;
    background: linear-gradient(110deg, var(--snow) 10%, var(--signal) 70%, var(--mint) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.legal-deck--terms .text-content h1 {
    background: linear-gradient(110deg, var(--snow) 10%, var(--copper) 65%, var(--flare-hot) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.legal-deck .text-content h2 {
    font-family: "Sora", sans-serif;
    margin-top: 32px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(42, 58, 77, 0.9);
    color: var(--snow);
}

.legal-deck .text-content p {
    font-size: 1.01rem;
    line-height: 1.72;
}

.legal-deck .text-content .list-container ul,
.legal-deck .text-content .list-container ol {
    list-style: none;
    padding-left: 0;
}

.legal-deck .text-content .list-container li {
    position: relative;
    margin-bottom: 10px;
    padding: 12px 14px 12px 38px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(42, 58, 77, 0.75);
    background: rgba(255, 255, 255, 0.02);
}

.legal-deck .text-content .list-container li::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 18px;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--signal), var(--mint));
    transform: rotate(45deg);
}

.legal-deck--terms .text-content .list-container li::before {
    background: linear-gradient(135deg, var(--flare), var(--copper));
}

.text-content h1 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.text-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 28px 0 12px;
}

.text-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 22px 0 10px;
}

.text-content p {
    margin-bottom: 14px;
    color: var(--fog);
}

.text-content img {
    max-width: 100%;
    height: auto;
    margin: 18px 0;
    border-radius: var(--radius-sm);
}

/* SEO/content tables: horizontal pan on narrow screens, never fixed-width crush */
.table-wrapper,
.text-content .table-wrapper {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    margin: 18px 0;
    border: 1px solid var(--ink-line);
    border-radius: var(--radius-sm);
    background: rgba(10, 16, 24, 0.45);
}

.text-content table,
.table-wrapper table {
    width: max-content;
    min-width: 100%;
    border-collapse: collapse;
}

@media (max-width: 768px) {
    .table-wrapper,
    .text-content .table-wrapper,
    .app-info-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .text-content table,
    .table-wrapper table {
        min-width: 560px;
    }
}

.text-content th,
.text-content td {
    padding: 10px 12px;
    border: 1px solid var(--ink-line);
    text-align: left;
    color: var(--fog);
}

.text-content th {
    background: rgba(47, 107, 255, 0.12);
    color: var(--snow);
    font-weight: 700;
}

.text-content ul,
.text-content ol {
    margin: 16px 0;
    padding-left: 26px;
    color: var(--fog);
}

.text-content ul li,
.text-content ol li {
    margin-bottom: 8px;
}

.text-content a {
    color: #8eb0ff;
    text-decoration: underline;
}

.text-content blockquote {
    margin: 18px 0;
    padding: 14px 16px;
    border-left: 3px solid var(--flare);
    background: rgba(225, 29, 106, 0.08);
    color: var(--fog);
}

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

.faq-item-block {
    border: 1px solid var(--ink-line);
    margin-bottom: 10px;
    background: rgba(11, 16, 32, 0.55);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-question-block {
    padding: 14px;
    background: rgba(47, 107, 255, 0.1);
}

.faq-question-block strong {
    font-size: 1rem;
}

.faq-answer-block {
    padding: 14px;
    color: var(--fog);
}

/* HowTo */
.howto-wrapper {
    margin: 18px 0;
    padding: 18px;
    background: rgba(11, 16, 32, 0.55);
    border: 1px solid var(--ink-line);
    border-radius: var(--radius-sm);
}

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

.howto-step-item {
    counter-increment: step-counter;
    padding: 14px;
    margin-bottom: 10px;
    background: rgba(18, 26, 46, 0.8);
    border-left: 3px solid var(--signal);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.howto-step-item::before {
    content: counter(step-counter) ".";
    font-weight: 700;
    margin-right: 8px;
    color: var(--signal);
}

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

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

.breadcrumb-link {
    color: #8a94a8;
    text-decoration: none;
}

.breadcrumb-divider {
    color: #5a6478;
}

/* Footer */
.site-footer {
    position: relative;
    margin-top: 56px;
    color: var(--fog);
    overflow: hidden;
    border-top: 1px solid rgba(42, 58, 77, 0.9);
    background:
        radial-gradient(720px 220px at 12% 0%, rgba(217, 26, 91, 0.12), transparent 60%),
        radial-gradient(640px 200px at 88% 8%, rgba(31, 140, 255, 0.1), transparent 58%),
        linear-gradient(180deg, #0a121c 0%, #060a12 100%);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--flare), var(--copper), var(--signal), transparent);
    opacity: 0.85;
}

.footer-shell {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px var(--shell-pad) 28px;
}

.footer-brand-mark {
    margin-bottom: 22px;
}

.footer-brand-mark a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.footer-brand-mark a:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.footer-brand-image {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.footer-brand-text {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    color: var(--snow);
}

.footer-pay-strip {
    margin-bottom: 28px;
    padding: 18px 16px;
    border: 1px solid rgba(42, 58, 77, 0.95);
    border-radius: var(--radius-md);
    background:
        linear-gradient(135deg, rgba(18, 28, 40, 0.95), rgba(10, 16, 24, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.footer-pay-title {
    margin-bottom: 14px;
    text-align: center;
}

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

.footer-pay-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    min-height: 52px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(42, 58, 77, 0.9);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.footer-pay-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 161, 90, 0.45);
    background: rgba(31, 140, 255, 0.08);
}

.footer-pay-image {
    max-width: 72px;
    max-height: 28px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: grayscale(0.15) brightness(1.05);
}

.footer-pay-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--snow);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 36px;
    margin-bottom: 28px;
}

.footer-col {
    min-width: 0;
}

.footer-section-title {
    font-family: "Sora", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 14px;
    color: var(--snow);
    position: relative;
    padding-bottom: 8px;
}

.footer-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--flare), var(--copper));
    border-radius: 2px;
}

.footer-pay-title::after,
.footer-safe-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #9aa6bb;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: color 0.15s ease, transform 0.15s ease;
}

.footer-links a:hover,
.footer-links a.active {
    color: var(--snow);
    transform: translateX(3px);
}

.footer-social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social-list li {
    margin: 0;
}

.footer-social-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(42, 58, 77, 0.95);
    background: rgba(255, 255, 255, 0.03);
    transform: none !important;
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease !important;
}

.footer-social-link:hover {
    border-color: rgba(217, 26, 91, 0.55);
    background: rgba(217, 26, 91, 0.12);
    transform: translateY(-2px) !important;
}

.footer-social-image {
    max-height: 22px;
    max-width: 28px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 8px 0 22px;
}

.footer-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    clip-path: var(--cut);
    text-decoration: none;
    font-family: "Sora", "IBM Plex Sans", sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid transparent;
}

.footer-action-btn--primary,
.footer-action-btn--accent {
    background: linear-gradient(120deg, var(--flare) 0%, #9e1248 100%);
    color: #fff;
}

.footer-action-btn--secondary {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--ink-line);
    color: var(--snow);
}

.footer-bottom {
    text-align: center;
    padding-top: 22px;
    border-top: 1px solid rgba(42, 58, 77, 0.9);
    font-size: 12px;
    color: #7a8498;
}

.footer-safe {
    margin-bottom: 16px;
}

.footer-safe-title {
    margin-bottom: 14px;
}

.footer-safe-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.footer-safe-links li {
    margin: 0;
}

.footer-safe-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(42, 58, 77, 0.9);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.18s ease, background 0.18s ease;
}

.footer-safe-link:hover {
    border-color: rgba(45, 184, 138, 0.45);
    background: rgba(45, 184, 138, 0.08);
}

.safe-image {
    max-width: 92px;
    max-height: 28px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.footer-copy {
    margin: 0 0 6px;
    color: #9aa6bb;
    font-weight: 600;
}

.footer-disclaimer {
    margin: 0;
    color: #6d788c;
    max-width: 720px;
    margin-inline: auto;
    line-height: 1.55;
}

/* List Container */
.list-container {
    margin: 18px 0;
}

.list-container ul,
.list-container ol {
    margin: 16px 0;
    padding-left: 26px;
}

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

/* App spotlight (top block) */
.app-spotlight {
    display: grid;
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    gap: clamp(18px, 3vw, 36px);
    align-items: center;
    margin: 18px 0 28px;
    padding: clamp(18px, 3vw, 28px);
    border-radius: 18px;
    border: 1px solid rgba(42, 58, 77, 0.95);
    background:
        radial-gradient(480px 240px at 12% 20%, rgba(217, 26, 91, 0.2), transparent 60%),
        radial-gradient(420px 220px at 90% 80%, rgba(31, 140, 255, 0.16), transparent 58%),
        linear-gradient(155deg, rgba(14, 22, 34, 0.98), rgba(7, 11, 18, 0.99));
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.app-spotlight__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 280px;
}

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

.app-spotlight__orb--a {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(242, 61, 118, 0.35), transparent 70%);
    animation: app-orb 4s ease-in-out infinite;
}

.app-spotlight__orb--b {
    width: 120px;
    height: 120px;
    right: 8%;
    bottom: 10%;
    background: radial-gradient(circle, rgba(31, 140, 255, 0.3), transparent 70%);
    animation: app-orb 5.2s ease-in-out infinite reverse;
}

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

.app-phone-shell {
    position: relative;
    z-index: 1;
    width: min(180px, 42vw);
    animation: app-float 4.8s ease-in-out infinite;
}

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

.app-phone-shell__bezel {
    border-radius: 28px;
    padding: 10px 8px 14px;
    background: linear-gradient(160deg, #1d2838, #0b111a 60%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.app-phone-shell__screen {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.app-info-table-wrapper {
    margin: 0;
    min-width: 0;
}

.app-info-table-container {
    border: 1px solid rgba(42, 58, 77, 0.9);
    border-radius: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(8, 12, 20, 0.55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.app-info-table {
    width: 100%;
    min-width: 320px;
    border-collapse: collapse;
}

.app-info-row {
    border-bottom: 1px solid rgba(42, 58, 77, 0.75);
    transition: background 0.15s ease;
}

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

.app-info-row:hover {
    background: rgba(31, 140, 255, 0.06);
}

.app-info-label-cell {
    padding: 14px 10px 14px 14px;
    text-align: center;
    width: 58px;
    vertical-align: middle;
}

.app-info-label-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(217, 26, 91, 0.28);
    background: rgba(217, 26, 91, 0.1);
}

.app-info-value-cell {
    padding: 14px 16px 14px 8px;
    color: var(--fog);
    font-size: 0.95rem;
    line-height: 1.55;
    vertical-align: middle;
}

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

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

.app-name-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(42, 58, 77, 0.8);
    padding: 4px;
}

.app-name-text {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--snow);
}

.app-download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    clip-path: var(--cut);
    background: linear-gradient(120deg, var(--flare) 0%, #9e1248 55%, #7a1638 100%);
    color: #fff;
    text-decoration: none;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 24px rgba(217, 26, 91, 0.28);
    transition: transform 0.18s ease, filter 0.18s ease;
}

.app-download-link:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

@media (max-width: 768px) {
    .app-spotlight {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
    }

    .app-spotlight__visual {
        min-height: 220px;
    }

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

/* Desktop keeps horizontal rail visible; mobile drawer from bottom-left burger */
@media (max-width: 992px) {
    .mobile-burger {
        display: block;
        position: fixed;
        left: 14px;
        bottom: 18px;
        top: auto;
        width: 52px;
        height: 52px;
        padding: 0;
        border-radius: 16px;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
        background: linear-gradient(160deg, #1a2540 0%, #10182c 100%);
    }

    .mobile-burger span {
        margin-left: auto;
        margin-right: auto;
    }

    .chrome-brand-inner {
        padding-left: var(--shell-pad);
    }

    .chrome-nav-rail {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: min(300px, 86vw);
        z-index: 980;
        transform: translateX(-105%);
        transition: transform 0.22s ease;
        border-right: 1px solid var(--ink-line);
        overflow-y: auto;
        background: #0d1426;
    }

    .chrome-nav-rail.is-open {
        transform: translateX(0);
    }

    .nav-rail {
        padding: 72px 12px 24px;
    }

    .nav-rail-list {
        flex-direction: column;
        min-height: 0;
        gap: 4px;
        overflow: visible;
    }

    .nav-rail-link {
        width: 100%;
        min-height: 46px;
        border-bottom: none;
        border-radius: var(--radius-sm);
        padding: 0 12px;
    }

    .nav-rail-link.is-current {
        background: rgba(225, 29, 106, 0.16);
        border-bottom: none;
    }

    .mobile-overlay.is-visible {
        display: block;
    }

    .page-stage__flow,
    .main-content-wrapper {
        padding: 16px var(--shell-pad) 88px;
    }

    .site-footer {
        padding-bottom: 88px;
    }

    .footer-shell {
        padding-bottom: 28px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .footer-col--social {
        grid-column: 1 / -1;
    }

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

    .bonuses-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-stage__flow,
    .main-content-wrapper {
        padding: 12px 12px 96px;
    }

    .site-footer {
        padding-bottom: 96px;
    }

    .footer-action-row {
        padding-left: 68px;
    }

    .text-content {
        padding: 16px;
    }

    .text-content h1 {
        font-size: 1.4rem;
    }

    .text-content h2 {
        font-size: 1.2rem;
    }

    .text-content h3 {
        font-size: 1.05rem;
    }

    .chrome-btn {
        min-height: 36px;
        padding: 0 12px;
        font-size: 0.8rem;
    }

    .chrome-action-cluster {
        gap: 6px;
        max-width: calc(100% - 56px);
    }

    .chrome-brand-inner {
        gap: 8px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-col--social {
        grid-column: auto;
    }

    .footer-pay-chip {
        min-width: 78px;
        min-height: 46px;
        padding: 8px 10px;
    }

    .footer-pay-image {
        max-width: 58px;
        max-height: 24px;
    }
}
