:root {
    --color-bg: #090a16;
    --color-bg-alt: #0e1026;
    --color-card-bg: rgba(18, 22, 51, 0.75);
    --color-card-bg-solid: #121633;
    --color-primary: #00f0ff;
    --color-primary-rgb: 0, 240, 255;
    --color-primary-dark: #0099ff;
    --color-gold: #39ff14;
    --color-gold-rgb: 57, 255, 20;
    --color-gold-text: #39ff14;
    --color-accent-pink: #ff007f;
    --color-text: #f0f4f8;
    --color-text-muted: #94a3b8;
    --color-border: rgba(0, 240, 255, 0.25);
    --color-border-active: rgba(57, 255, 20, 0.6);
    --container-max-width: 1240px;
    --header-height: 84px;
    --border-radius-sm: 10px;
    --border-radius-md: 20px;
    --border-radius-lg: 30px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --shadow-neon-cyan: 0 0 25px rgba(0, 240, 255, 0.35);
    --shadow-neon-green: 0 0 25px rgba(57, 255, 20, 0.35);
    --shadow-neon-pink: 0 0 25px rgba(255, 0, 127, 0.35);
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}
body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(0, 240, 255, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(255, 0, 127, 0.1) 0%, transparent 45%),
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    z-index: -2;
    pointer-events: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    letter-spacing: -0.02em;
}
p {
    margin-bottom: 1.25rem;
}
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover {
    color: var(--color-gold);
}
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.text-center { text-align: center; }
.text-gold { color: var(--color-gold-text); }
.text-primary { color: var(--color-primary); }
.text-muted { color: var(--color-text-muted); }
.grid {
    display: grid;
    gap: 2rem;
}
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    text-align: center;
}
.btn--primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #090a16 !important;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    position: relative;
    overflow: hidden;
}
.btn--primary::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: all 0.6s ease;
}
.btn--primary:hover::after {
    left: 120%;
}
.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
}
.btn--secondary {
    background: rgba(18, 22, 51, 0.6);
    color: #ffffff;
    border: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
}
.btn--secondary:hover {
    border-color: var(--color-primary);
    background: rgba(0, 240, 255, 0.15);
    box-shadow: var(--shadow-neon-cyan);
    transform: translateY(-3px);
}
.btn--gold {
    background: linear-gradient(135deg, var(--color-gold), #7dff00);
    color: #090a16 !important;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}
.btn--gold:hover {
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.85);
    transform: translateY(-3px);
}
.btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modal--active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(35, 18, 12, 0.96) 0%, rgba(8, 6, 6, 0.99) 100%);
    backdrop-filter: blur(15px);
    z-index: 1000;
}
.modal__dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.92) rotate(-0.5deg);
    background: linear-gradient(135deg, #1f100b 0%, #0d0806 100%);
    border: 2px solid var(--color-primary);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 90%;
    z-index: 1001;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    box-shadow: 0 0 35px rgba(0, 210, 255, 0.4), inset 0 0 20px rgba(0, 255, 136, 0.1), 0 15px 50px rgba(0, 0, 0, 0.8);
    text-align: center;
}
.modal--active .modal__dialog {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
}
.modal__badge {
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}
.modal__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.modal__text {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}
.modal__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.modal__policy-links {
    display: block;
    margin-top: 1.25rem;
    font-size: 0.95rem;
}
.modal__link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed var(--color-primary);
    transition: color var(--transition-fast), border-color var(--transition-fast);
}
.modal__link:hover {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}
.modal__actions--cookies {
    display: flex;
    gap: 1rem;
    width: 100%;
}
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(9, 10, 22, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(0, 240, 255, 0.2);
    z-index: 100;
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-text);
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
}
.logo-accent {
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-desktop {
    display: none;
}
.nav-desktop__list {
    display: flex;
    list-style: none;
    gap: 0.75rem;
}
.nav-desktop__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}
.nav-desktop__link:hover, .nav-desktop__link--active {
    color: #ffffff;
}
.nav-desktop__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-fast);
}
.nav-desktop__link:hover::after, .nav-desktop__link--active::after {
    width: 100%;
}
.controls-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.lang-switcher {
    display: flex;
    gap: 0.25rem;
    background: rgba(15, 15, 15, 0.85);
    padding: 0.3rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 210, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.1);
    backdrop-filter: blur(10px);
}
.lang-switcher__btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 50px;
    padding: 0.35rem 0.75rem;
    color: var(--color-gold-text);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    opacity: 0.6;
    text-decoration: none;
    transition: all var(--transition-fast) ease;
}
.lang-switcher__btn img {
    border-radius: 50%;
    object-fit: cover;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.lang-switcher__btn--active, .lang-switcher__btn:hover {
    opacity: 1;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.2), rgba(0, 255, 136, 0.2));
    border: 1px solid var(--color-primary);
    box-shadow: 0 0 8px rgba(0, 210, 255, 0.3);
}
.auth-ctas {
    display: flex;
    gap: 0.75rem;
}
.menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}
.mobile-menu--active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.mobile-menu__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 12, 12, 0.7);
    backdrop-filter: blur(5px);
}
.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 380px;
    height: 100%;
    background-color: var(--color-card-bg-solid);
    border-left: 1px solid var(--color-border);
    padding: 4rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    overflow-y: auto;
}
.mobile-menu--active .mobile-menu__panel {
    transform: translateX(0);
}
.mobile-menu__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
}
.mobile-menu__nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.mobile-menu__link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-muted);
}
.mobile-menu__link:hover {
    color: var(--color-primary);
}
.site-footer {
    background-color: #060505;
    border-top: 1px solid var(--color-border);
    padding: 5rem 0 3rem;
    margin-top: 5rem;
}
.site-footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}
.site-footer__col--brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.site-footer__text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}
.site-footer__text--compliance {
    margin-bottom: 1.5rem;
}
.site-footer__badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.badge {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
}
.badge--18 {
    background-color: var(--color-primary-dark);
    color: #ffffff;
}
.badge--security {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
}
.badge--rng {
    background-color: rgba(0, 255, 136, 0.1);
    color: var(--color-gold);
    border: 1px solid var(--color-border);
}
.site-footer__heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.site-footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.site-footer__link {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    display: inline-block;
    padding: 0.35rem 0;
}
.site-footer__link--active {
    color: var(--color-primary);
}
.site-footer__link:hover {
    color: #ffffff;
}
.hero {
    position: relative;
    padding: 8rem 0 6rem;
    display: flex;
    align-items: center;
    background-image: url('/img/hero_fpf_mobile.webp');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}
@media (min-width: 768px) {
    .hero {
        background-image: url('/img/hero_fpf.webp');
    }
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 12, 12, 0.4) 0%, rgba(13, 12, 12, 0.75) 100%);
    z-index: 1;
}
.hero__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}
.hero__inner {
    position: relative;
    z-index: 3;
    max-width: 800px;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(0, 210, 255, 0.15);
    border: 1px solid var(--color-primary);
    color: #ffffff;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.4; }
    100% { transform: scale(0.9); opacity: 1; }
}
.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 210, 255, 0.35);
}
.hero__desc {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #ffffff;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
}
.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--color-border);
}
.section--alt {
    background-color: rgba(255, 255, 255, 0.01);
}
.section-header {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
}
.section-header__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}
.section-header__desc {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}
.card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}
.card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 210, 255, 0.1);
}
.card__image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
    object-fit: cover;
}
.card__title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.card__desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}
.game-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border);
    background-color: var(--color-card-bg-solid);
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.game-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}
.game-card:hover .game-card__img {
    transform: scale(1.05);
}
.game-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(13, 12, 12, 0.95) 90%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    z-index: 2;
}
.game-card__title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.game-card__badge {
    align-self: flex-start;
    background-color: rgba(0, 210, 255, 0.2);
    border: 1px solid var(--color-primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}
.game-card__play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 12, 12, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 3;
}
.game-card:hover .game-card__play {
    opacity: 1;
}
.game-card__screen {
    width: 100%;
    height: 100%;
    background-color: #060505;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 4;
    position: absolute;
    top: 0;
    left: 0;
    padding: 1.5rem;
}
.game-card__reels {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.game-card__reel {
    width: 60px;
    height: 80px;
    background-color: #1a1717;
    border: 2px solid var(--color-gold);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-gold-text);
}
.game-card__score-board {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    font-family: var(--font-heading);
}
.plan-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.plan-card {
    background-color: var(--color-card-bg-solid);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}
.plan-card--vip {
    border-color: var(--color-gold);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.15);
}
.plan-card--vip::before {
    content: "POPULAR";
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--color-gold);
    color: #0d0c0c;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 2rem;
    transform: rotate(45deg);
}
.plan-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
}
.plan-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}
.plan-card__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.plan-card__cost {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-gold-text);
    margin-bottom: 1.5rem;
}
.plan-card__features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.plan-card__feature {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.plan-card__feature::before {
    content: "✓";
    color: var(--color-primary);
    font-weight: bold;
}
.form {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--color-card-bg-solid);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
}
.form-control {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 0.8rem 1rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}
.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.06);
}
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
    cursor: pointer;
}
.form-check input {
    margin-top: 0.25rem;
    accent-color: var(--color-primary);
}
.form-check-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background-color: var(--color-card-bg-solid);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 2rem;
    text-align: left;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-fast);
}
.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.02);
}
.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
    color: var(--color-text-muted);
    font-size: 0.95rem;
    border-top: 0 solid transparent;
}
.faq-item--active .faq-question {
    color: var(--color-primary);
}
.faq-item--active .faq-answer {
    padding: 1.25rem 2rem;
    max-height: 500px;
    border-top: 1px solid var(--color-border);
}
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}
.content-wrapper h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--color-primary);
    padding-left: 1rem;
}
.content-wrapper h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.content-wrapper ul, .content-wrapper ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--color-text-muted);
}
.content-wrapper li {
    margin-bottom: 0.5rem;
}
.reg-info-col {
    padding-right: 2rem;
}
@media (max-width: 1100px) {
    .nav-desktop, .auth-ctas {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .controls-group {
        gap: 0.75rem;
    }
}
@media (max-width: 1024px) {
    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .site-footer__col--brand {
        grid-column: span 2;
    }
}
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 4rem;
    }
    .hero__inner {
        max-width: 100%;
    }
    .section {
        padding: 4rem 0;
    }
    .section-header {
        margin-bottom: 2.5rem;
    }
    .grid--2,
    .grid--3 {
        grid-template-columns: 1fr;
    }
    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .reg-info-col {
        padding-right: 0;
    }
    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .site-footer__col--brand {
        grid-column: span 1;
    }
    .form {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    .modal__dialog {
        padding: 2rem 1.5rem;
        width: 95%;
    }
    .cookie-banner__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-banner__text {
        flex-basis: auto;
    }
    .cookie-banner__actions {
        width: 100%;
        justify-content: flex-start;
    }
    .plan-table {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    .site-logo {
        font-size: 1.2rem;
    }
    .site-logo svg {
        width: 32px;
        height: 32px;
    }
    .hero {
        padding: 5rem 0 3rem;
    }
    .section {
        padding: 3rem 0;
    }
    .section-header {
        margin-bottom: 2rem;
    }
    .card {
        padding: 1.75rem 1.25rem;
    }
    .grid--4 {
        grid-template-columns: 1fr;
    }
    .form {
        padding: 1.5rem 1rem;
        border-radius: var(--border-radius-sm);
    }
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    .hero__actions {
        flex-direction: column;
    }
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    .modal__dialog {
        padding: 1.5rem 1rem;
    }
    .modal__actions {
        flex-direction: column;
    }
    .modal__actions .btn {
        width: 100%;
    }
    .site-footer {
        padding: 3rem 0 2rem;
    }
    .mobile-menu__panel {
        width: 90%;
    }
    .game-card__reel {
        width: 48px;
        height: 64px;
        font-size: 1.5rem;
    }
    .plan-card {
        padding: 2rem 1.5rem;
    }
    .cookie-banner__actions {
        flex-direction: column;
    }
    .cookie-banner__actions .btn {
        width: 100%;
        justify-content: center;
    }
}
/* Completely hide all scrollbars for section and every single child/descendant element */
.featured-player-sec,
.featured-player-sec *,
#expedition-screen,
#expedition-screen *,
.featured-game-container_fpf,
.featured-game-container_fpf *,
.featured-game-control_fpf,
.featured-game-control_fpf *,
.featured-game-ratio_fpf,
.featured-game-ratio_fpf *,
.game-placeholder_fpf,
.game-placeholder_fpf *,
#featured-iframe_fpf,
#featured-iframe_fpf *,
.game-iframe_fpf,
.game-iframe_fpf * {
    overflow: hidden !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.featured-player-sec::-webkit-scrollbar,
.featured-player-sec *::-webkit-scrollbar,
#expedition-screen::-webkit-scrollbar,
#expedition-screen *::-webkit-scrollbar,
.featured-game-container_fpf::-webkit-scrollbar,
.featured-game-container_fpf *::-webkit-scrollbar,
.featured-game-control_fpf::-webkit-scrollbar,
.featured-game-control_fpf *::-webkit-scrollbar,
.featured-game-ratio_fpf::-webkit-scrollbar,
.featured-game-ratio_fpf *::-webkit-scrollbar,
.game-placeholder_fpf::-webkit-scrollbar,
.game-placeholder_fpf *::-webkit-scrollbar,
#featured-iframe_fpf::-webkit-scrollbar,
#featured-iframe_fpf *::-webkit-scrollbar,
.game-iframe_fpf::-webkit-scrollbar,
.game-iframe_fpf *::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    background: transparent !important;
}

.featured-game-container_fpf {
    position: relative;
    max-width: 960px;
    margin: 2rem auto;
    background: var(--color-card-bg-solid);
    border: 3px solid var(--color-primary);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 210, 255, 0.15);
    overflow: hidden !important;
}
.featured-game-ratio_fpf {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden !important;
    clip-path: inset(0 0 0 0) !important;
    background: #000000;
}
.featured-game-ratio_fpf iframe,
.game-iframe_fpf,
#featured-iframe_fpf {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 20px) !important;
    height: calc(100% + 20px) !important;
    margin-right: -20px !important;
    margin-bottom: -20px !important;
    border: 0 !important;
    outline: 0 !important;
    background: #000000;
    overflow: hidden !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    display: block;
}
.featured-game-control_fpf {
    background: rgba(18, 30, 52, 0.95);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--color-border);
}
.featured-game-title_fpf {
    color: var(--color-gold-text);
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}
.featured-game-buttons_fpf {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.featured-game-control_fpf .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    white-space: nowrap;
}
@media (max-width: 576px) {
    .featured-game-control_fpf {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
        gap: 1.25rem;
    }
    .featured-game-title_fpf {
        justify-content: center;
        font-size: 1.1rem;
    }
    .featured-game-buttons_fpf {
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
    }
    .featured-game-buttons_fpf .btn {
        flex: 1;
        justify-content: center;
        text-align: center;
        min-width: 120px;
    }
}
.game-modal_fpf {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.game-modal_fpf.modal--active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.game-modal__overlay_fpf {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(13, 22, 38, 0.96) 0%, rgba(8, 12, 20, 0.99) 100%);
    backdrop-filter: blur(15px);
    z-index: 2000;
}
.game-modal__dialog_fpf {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: linear-gradient(135deg, #0d1626 0%, #080c14 100%);
    border: 3px solid var(--color-primary);
    border-radius: 16px;
    width: 95%;
    max-width: 960px;
    z-index: 2001;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    box-shadow: 0 0 35px rgba(0, 210, 255, 0.35), inset 0 0 20px rgba(0, 255, 136, 0.05), 0 15px 50px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}
.game-modal_fpf.modal--active .game-modal__dialog_fpf {
    transform: translate(-50%, -50%) scale(1);
}
.game-modal__header_fpf {
    background-color: rgba(18, 30, 52, 0.95);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
}
.game-modal__title_fpf {
    color: var(--color-gold-text);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}
.game-modal__close_fpf {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-fast);
}
.game-modal__close_fpf:hover {
    color: var(--color-primary);
}
.game-modal__body_fpf {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    background: #000;
    overflow: hidden;
}
.game-modal__iframe_fpf {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    overflow: hidden;
    display: block;
}
.toast-container_fpf {
    position: fixed;
    top: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    pointer-events: none;
    max-width: 380px;
    width: calc(100vw - 48px);
}
.toast_fpf {
    display: flex;
    gap: 14px;
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius-sm);
    background-color: rgba(13, 12, 12, 0.95);
    backdrop-filter: blur(12px);
    border: 1.5px solid var(--color-primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    color: #ffffff;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
    animation: toast-slide-in_fpf 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.toast_fpf.toast--success_fpf {
    border-color: #2ed573;
    box-shadow: 0 5px 25px rgba(46, 213, 115, 0.2), 0 10px 40px rgba(0, 0, 0, 0.6);
}
.toast_fpf.toast--error_fpf {
    border-color: #ff4757;
    box-shadow: 0 5px 25px rgba(255, 71, 87, 0.2), 0 10px 40px rgba(0, 0, 0, 0.6);
}
.toast_fpf.toast-closing_fpf {
    animation: toast-slide-out_fpf 0.3s ease forwards;
}
.toast__icon_fpf {
    font-size: 1.25rem;
    line-height: 1;
    margin-top: 2px;
    flex-shrink: 0;
}
.toast--success_fpf .toast__icon_fpf {
    color: #2ed573;
}
.toast--error_fpf .toast__icon_fpf {
    color: #ff4757;
}
.toast--info_fpf .toast__icon_fpf {
    color: var(--color-primary);
}
.toast__body_fpf {
    flex-grow: 1;
    padding-right: 12px;
}
.toast__title_fpf {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: #ffffff;
}
.toast__message_fpf {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}
.toast__close_fpf {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.15rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
    margin-top: 1px;
    transition: color var(--transition-fast);
}
.toast__close_fpf:hover {
    color: #ffffff;
}
.toast__progress_fpf {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: var(--color-primary);
    width: 100%;
    animation: toast-progress-bar_fpf linear forwards;
}
.toast--success_fpf .toast__progress_fpf {
    background-color: #2ed573;
}
.toast--error_fpf .toast__progress_fpf {
    background-color: #ff4757;
}
@keyframes toast-slide-in_fpf {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes toast-slide-out_fpf {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}
@keyframes toast-progress-bar_fpf {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}
.security-gate_fpf {
    background-color: rgba(26, 15, 10, 0.4);
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    margin: 1.5rem 0;
    user-select: none;
    cursor: pointer;
    overflow: hidden;
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}
.security-gate_fpf:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.15);
}
.verify-circle_fpf {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(13, 12, 12, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
    transition: transform var(--transition-fast) ease;
}
.verify-ring_fpf {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: border-color var(--transition-normal);
}
.security-gate_fpf:hover .verify-ring_fpf {
    border-color: var(--color-primary);
}
.verify-circle_fpf.verifying_fpf .verify-ring_fpf {
    border-color: rgba(0, 210, 255, 0.15);
    border-top-color: var(--color-primary);
    border-right-color: var(--color-gold);
    animation: spin-aurora_fpf 0.8s linear infinite;
}
.verify-circle_fpf.verified_fpf {
    background-color: rgba(46, 213, 115, 0.05);
}
.verify-circle_fpf.verified_fpf .verify-ring_fpf {
    border: 2.5px solid #2ed573;
    animation: none;
    box-shadow: 0 0 15px rgba(46, 213, 115, 0.4);
}
.verify-icon_fpf {
    position: relative;
    z-index: 2;
    color: var(--color-text-muted);
    transition: transform var(--transition-fast) ease, opacity var(--transition-fast) ease;
}
.security-gate_fpf:hover .verify-icon_fpf {
    transform: scale(1.08);
}
.security-gate_fpf:hover .verify-icon_fpf svg {
    animation: shake-robot_fpf 0.8s ease-in-out infinite;
}
.verify-circle_fpf.verifying_fpf .verify-icon_fpf {
    transform: scale(0.6);
    opacity: 0;
}
.verify-checkmark_fpf {
    color: #2ed573;
}
.verify-text-container_fpf {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex-grow: 1;
}
.verify-label_fpf {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    transition: color var(--transition-normal);
}
.verify-sublabel_fpf {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    transition: color var(--transition-normal);
}
.security-gate-logo_fpf {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0.35;
    transition: opacity var(--transition-normal);
    gap: 2px;
}
.security-gate-logo_fpf svg {
    color: var(--color-text-muted);
}
.security-gate-logo_fpf span {
    font-size: 0.6rem;
    color: var(--color-text-muted);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.security-gate_fpf:hover .security-gate-logo_fpf {
    opacity: 0.7;
}
@keyframes spin-aurora_fpf {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes shake-robot_fpf {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(-8deg); }
    40% { transform: rotate(8deg); }
    60% { transform: rotate(-8deg); }
    80% { transform: rotate(8deg); }
    100% { transform: rotate(0deg); }
}
@keyframes pop-checkmark_fpf {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    70% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}
.lobby-game-card_fpf {
    position: relative;
    background-color: var(--color-card-bg-solid);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform var(--transition-normal), border-color var(--transition-normal);
    width: 100%;
    height: auto;
}
.lobby-game-card_fpf:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}
.lobby-game-card_fpf__img-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 200px;
}
.lobby-game-card_fpf__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}
.lobby-game-card_fpf:hover .lobby-game-card_fpf__img {
    transform: scale(1.05);
}
.lobby-game-card_fpf__content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    box-sizing: border-box;
}
.game-placeholder_fpf {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #080c14;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.game-placeholder-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    transition: opacity 0.3s ease, transform 0.6s ease;
}
.game-placeholder_fpf:hover .game-placeholder-img {
    opacity: 0.6;
    transform: scale(1.03);
}
.game-placeholder-overlay_fpf {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    text-align: center;
}
.btn-start-game_fpf {
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.6);
    animation: pulse-button_fpf 2s infinite;
}
@keyframes pulse-button_fpf {
    0% {
        box-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 210, 255, 0.8);
    }
    100% {
        box-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
    }
}
section.hero,
section.basecamp,
section.switchback-sec,
section.peak-story,
section.lodge-games,
section.route-sec,
section.hut-notes,
section.coins-teaser,
section.trail-register,
section.safe-climb,
section.faq-teaser,
section.join-band,
section.featured-player-sec {
    padding-block: 6rem;
    border-bottom: 1px solid var(--color-border);
}
.sec-head {
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
    margin-bottom: 4.5rem;
}
.sec-head h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-family: var(--font-heading);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}
.sec-head h2 span {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sec-head p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}
.duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}
.duo__media {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    aspect-ratio: 4 / 3;
}
.duo__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-normal);
}
.duo__media:hover img {
    transform: scale(1.03);
}
.elevation {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}
.elevation__item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(13, 22, 38, 0.4);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    position: relative;
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}
.elevation__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
    border-radius: 4px 4px 0 0;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}
.elevation__item:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary-dark);
}
.elevation__item:hover::before {
    opacity: 1;
}
.elevation__num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-primary);
    line-height: 1;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
}
.elevation__label {
    margin-top: 0.8rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.switchback {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.switchback__item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4.5rem;
    align-items: center;
}
.switchback__item:nth-child(even) {
    grid-template-columns: 1.2fr 1fr;
}
.switchback__item:nth-child(even) .switchback__body {
    order: 2;
}
.switchback__body {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.switchback__body h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}
.switchback__body p {
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 1rem;
}
.switchback__media {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
    aspect-ratio: 16 / 10;
}
.switchback__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-normal);
}
.switchback__item:hover .switchback__media img {
    transform: scale(1.02);
}
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
}
.games-grid .game-card {
    background: var(--color-card-bg-solid);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
    aspect-ratio: auto;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.games-grid .game-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary-dark);
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.15);
}
.games-grid .game-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
}
.games-grid .game-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}
.games-grid .game-card:hover .game-card__media img {
    transform: scale(1.05);
}
.games-grid .game-card__body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 1rem;
}
.games-grid .game-card__body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}
.games-grid .game-card__body p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}
.games-grid .game-card__play {
    width: 100%;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-top: auto;
}
.slot-shell {
    margin-top: 3.5rem;
}
.slot-cabin {
    background: linear-gradient(160deg, #090e18 0%, #0c182c 100%);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}
.slot-cabin__grid {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 2.2rem;
    align-items: stretch;
}
.slot-stage {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.slot-reels {
    --cell: 96px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    background: rgba(8, 12, 20, 0.6);
    border-radius: var(--border-radius-md);
    padding: 16px;
    border: 1px solid rgba(0, 210, 255, 0.1);
}
.slot-reel {
    overflow: hidden;
    height: calc(var(--cell) * 3 + 24px);
    border-radius: var(--border-radius-sm);
    background: #05080e;
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}
.slot-strip {
    display: grid;
    gap: 12px;
    padding: 6px;
}
.slot-cell {
    width: var(--cell);
    height: var(--cell);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.02);
    transition: background-color 0.3s ease;
}
.slot-cell img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}
.slot-cell.is-win {
    background-color: rgba(0, 255, 136, 0.15);
    box-shadow: inset 0 0 15px rgba(0, 255, 136, 0.4);
    animation: win-glow 0.6s ease infinite alternate;
}
@keyframes win-glow {
    from {
        box-shadow: inset 0 0 8px rgba(0, 255, 136, 0.2);
    }
    to {
        box-shadow: inset 0 0 22px rgba(0, 255, 136, 0.6);
    }
}
.slot-console-slot {
    position: relative;
    min-height: 280px;
}
.slot-console {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    text-align: center;
    background: rgba(13, 22, 38, 0.5);
    border: 1px solid rgba(0, 210, 255, 0.15);
    border-radius: var(--border-radius-md);
    padding: 1.8rem;
    color: #ffffff;
}
.slot-console__block {
    display: grid;
    gap: 6px;
    justify-items: center;
    width: 100%;
}
.slot-hud__label {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}
.slot-hud__value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}
.slot-console__stepper {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.slot-console__coins {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-gold-text);
}
.slot-console__coins svg {
    width: 20px;
    height: 20px;
    fill: var(--color-gold);
}
.spin-btn {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 3px solid rgba(0, 210, 255, 0.3);
    background: radial-gradient(circle at 30% 30%, #5ef4ff 0%, var(--color-primary) 50%, #00607d 100%);
    color: #080c14;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.35), inset 0 -4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s cubic-bezier(0.18, 0.89, 0.32, 1.28), box-shadow 0.2s ease;
}
.spin-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 30px rgba(0, 210, 255, 0.5), inset 0 -4px 8px rgba(0, 0, 0, 0.2);
}
.spin-btn:active {
    transform: scale(0.94);
}
.spin-btn:disabled {
    opacity: 0.6;
    background: #2a3e59;
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}
.slot-msg {
    min-height: 24px;
    margin-top: 1.2rem;
    font-size: 0.95rem;
    color: var(--color-gold-text);
    text-align: center;
    font-weight: 600;
}
.slot-payline__title {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-left: 3px solid var(--color-primary);
    padding-left: 10px;
}
.slot-payline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    list-style: none;
}
.pay-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(13, 22, 38, 0.4);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 8px 12px;
}
.pay-chip img {
    border-radius: 4px;
    background: #05080e;
    padding: 2px;
}
.pay-chip div {
    display: flex;
    flex-direction: column;
}
.pay-chip strong {
    font-size: 0.85rem;
    color: #ffffff;
}
.pay-chip span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}
.slot-payline__note {
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}
.route {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
    counter-reset: step;
}
.route__step {
    position: relative;
    padding: 2.8rem 2.2rem;
    background: var(--color-card-bg-solid);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    counter-increment: step;
    transition: transform var(--transition-normal);
}
.route__step:hover {
    transform: translateY(-5px);
}
.route__step::before {
    content: "0" counter(step);
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: rgba(0, 210, 255, 0.25);
    line-height: 1;
}
.route__step h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    padding-right: 2.5rem;
}
.route__step p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}
.tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}
.tier {
    background: var(--color-card-bg-solid);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 1.8rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}
.tier:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary-dark);
}
.tier h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}
.tier__price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
    margin-block: 1rem;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.2);
}
.tier__price span {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 500;
}
.tier ul {
    list-style: none;
    padding: 0;
    margin-block: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
    flex-grow: 1;
}
.tier li {
    font-size: 0.9rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 8px;
}
.tier li::before {
    content: "✓";
    color: var(--color-gold);
    font-weight: bold;
}
.tier .btn {
    width: 100%;
    margin-top: auto;
}
.tier--vip {
    border-color: var(--color-gold);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.15);
}
.tier--vip .tier__price {
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}
.review {
    background: var(--color-card-bg-solid);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform var(--transition-normal);
}
.review:hover {
    transform: translateY(-5px);
}
.review__top {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 210, 255, 0.15);
    border: 1px solid var(--color-primary);
    display: grid;
    place-items: center;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-primary);
    font-size: 1.1rem;
}
.review__meta {
    display: flex;
    flex-direction: column;
}
.review__name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
}
.review__date {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}
.review__stars {
    display: flex;
    gap: 2px;
    color: var(--color-gold);
    font-size: 0.9rem;
}
.review__text {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}
.faq-list {
    display: grid;
    gap: 1rem;
    max-width: 860px;
    margin-inline: auto;
}
.faq-item {
    background: var(--color-card-bg-solid);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: border-color var(--transition-normal);
}
.faq-item:hover {
    border-color: var(--color-border-active);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 1.5rem 1.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: #ffffff;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary .faq-caret {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    place-items: center;
    transition: transform 360ms cubic-bezier(.22,1,.36,1), background-color 360ms cubic-bezier(.22,1,.36,1), border-color 360ms;
}
.faq-item summary .faq-caret svg {
    width: 10px;
    height: 10px;
    fill: #ffffff;
    transition: fill 360ms;
}
.faq-item.is-open summary .faq-caret {
    transform: rotate(45deg);
    background: var(--color-gold);
    border-color: var(--color-gold);
}
.faq-item.is-open summary .faq-caret svg {
    fill: #080c14;
}
.faq-item__body {
    overflow: hidden;
}
.faq-item__body > * {
    padding: 0 1.8rem;
}
.faq-item__body > *:first-child {
    padding-top: 0.2rem;
}
.faq-item__body > *:last-child {
    padding-bottom: 1.8rem;
}
.faq-item__body p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}
.faq-item__body a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cta-band {
    background: linear-gradient(115deg, #070e18 0%, #102640 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 4rem 3.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}
.cta-band::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}
.cta-band__text {
    flex: 1 1 500px;
    position: relative;
    z-index: 2;
}
.cta-band__text h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}
.cta-band__text p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.5;
}
.cta-band .btn {
    position: relative;
    z-index: 2;
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(.22, 1, .36, 1), transform 0.9s cubic-bezier(.22, 1, .36, 1);
}
.reveal.is-in {
    opacity: 1;
    transform: none;
}
.reveal:nth-child(2) {
    transition-delay: 0.08s;
}
.reveal:nth-child(3) {
    transition-delay: 0.16s;
}
.reveal:nth-child(4) {
    transition-delay: 0.24s;
}
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
@media (max-width: 1024px) {
    .duo {
        gap: 3rem;
    }
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
    .elevation {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .tiers {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .switchback__item {
        gap: 3rem;
    }
}
@media (max-width: 860px) {
    section.hero,
    section.basecamp,
    section.switchback-sec,
    section.peak-story,
    section.lodge-games,
    section.route-sec,
    section.hut-notes,
    section.coins-teaser,
    section.trail-register,
    section.safe-climb,
    section.faq-teaser,
    section.join-band,
    section.featured-player-sec {
        padding-block: 4rem;
    }
    .duo {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }
    .switchback__item,
    .switchback__item:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .switchback__item:nth-child(even) .switchback__body {
        order: 0;
    }
    .slot-cabin__grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    .slot-console-slot {
        position: static;
        min-height: auto;
    }
    .slot-console {
        position: relative;
        inset: auto;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        padding: 1.5rem;
        gap: 1.2rem;
        border-radius: var(--border-radius-md);
    }
    .slot-console__block {
        width: auto;
        flex: 1 1 40%;
    }
    .spin-btn {
        order: -1;
        width: 80px;
        height: 80px;
    }
    .route {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .cta-band {
        padding: 3rem 2rem;
        text-align: center;
        justify-content: center;
    }
    .cta-band__text {
        flex: 1 1 100%;
    }
}
@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .featured-game-container_fpf {
        margin: 1.5rem auto;
    }
}
@media (max-width: 768px) {
    .featured-game-ratio_fpf {
        padding-bottom: 0;
        height: 520px;
        min-height: 480px;
    }
}
@media (max-width: 640px) {
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .elevation {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .tiers {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .slot-reels {
        --cell: 64px;
        gap: 8px;
        padding: 10px;
    }
    .slot-reel {
        height: calc(var(--cell) * 3 + 16px);
    }
    .slot-cell {
        width: var(--cell);
        height: var(--cell);
    }
    .slot-cabin {
        padding: 1.25rem 0.75rem;
    }
    .slot-payline {
        grid-template-columns: repeat(2, 1fr);
    }
    .featured-game-ratio_fpf {
        padding-bottom: 0;
        height: 500px;
        min-height: 460px;
    }
}
@media (max-width: 480px) {
    .featured-game-ratio_fpf {
        height: 460px;
        min-height: 430px;
    }
    .slot-reels {
        --cell: 46px;
        gap: 6px;
        padding: 8px;
    }
    .slot-reel {
        height: calc(var(--cell) * 3 + 12px);
    }
    .slot-cell {
        width: var(--cell);
        height: var(--cell);
    }
    .slot-payline {
        grid-template-columns: 1fr;
    }
    .slot-console {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }
    .slot-console__block {
        flex: 1 1 100%;
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 380px) {
    .slot-reels {
        --cell: 38px;
        gap: 4px;
        padding: 6px;
    }
    .slot-reel {
        height: calc(var(--cell) * 3 + 8px);
    }
    .slot-cell {
        width: var(--cell);
        height: var(--cell);
    }
    .featured-game-ratio_fpf {
        height: 420px;
        min-height: 390px;
    }
}

/* ==========================================
   LIGHT MODE & CORE OVERRIDES (PREMIUM STYLING)
   ========================================== */

/* Overrides for inline backgrounds across all static pages */
[style*="background: #08110e"],
[style*="background:#08110e"],
section[style*="background:#08110e"],
section[style*="background: #08110e"] {
    background: var(--color-bg-alt) !important;
}

[style*="background: #0c1814"],
[style*="background:#0c1814"],
div[style*="background:#0c1814"],
div[style*="background: #0c1814"] {
    background: var(--color-card-bg-solid) !important;
}

[style*="background: #0d2218"],
[style*="background:#0d2218"] {
    background: #e0f2fe !important; /* Soft premium slate-blue for popular tier */
    border-color: var(--color-primary) !important;
}

[style*="background: #0a1712"],
[style*="background:#0a1712"],
section[style*="background:#0a1712"],
section[style*="background: #0a1712"] {
    background: var(--color-bg-alt) !important;
}

[style*="background: rgba(10, 23, 18, 0.4)"],
[style*="background:rgba(10,23,18,0.4)"],
div[style*="background:rgba(10,23,18,0.4)"] {
    background: var(--color-card-bg-solid) !important;
    border-color: var(--color-border) !important;
}

[style*="background: #08140f"],
[style*="background:#08140f"],
svg[style*="background:#08140f"] {
    background: var(--color-bg-alt) !important;
    border-color: var(--color-border) !important;
}

[style*="background: #111"],
[style*="background:#111"],
#map {
    background: var(--color-bg-alt) !important;
}

/* Header & Footer */
.site-header {
    background-color: rgba(255, 255, 255, 0.85) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.site-footer {
    background-color: var(--color-card-bg-solid) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.site-footer__heading {
    color: var(--color-text) !important;
}

.site-footer__link:hover {
    color: var(--color-primary) !important;
}

/* Navigation & Elements */
.nav-desktop__link:hover, .nav-desktop__link--active {
    color: var(--color-primary) !important;
}

.menu-toggle {
    color: var(--color-text) !important;
}

/* Typography & Headings inside sections */
h1, h2, h3, h4, h5, h6, summary,
.sec-head h2,
.switchback__body h3,
.review__name,
.faq-item summary,
.content-wrapper h2,
.content-wrapper h3,
.elevation__num,
.game-card__title,
.route__step h3,
.tier h3,
.plan-card h3,
.card h3,
.duo__text h3,
.safe-climb h2,
.safe-climb h3,
.featured-game-title_fpf {
    color: var(--color-text) !important;
}

/* Exclude sections that must have white text (e.g. CTA band, primary buttons) */
.btn h1, .btn h2, .btn h3, .btn h4, .btn h5, .btn h6,
.btn--primary,
.cta-band h1, .cta-band h2, .cta-band h3, .cta-band h4, .cta-band h5, .cta-band h6, .cta-band p {
    color: #ffffff !important;
}

/* Cyberpunk Neon Gaming Overrides */
.card, .plan-card, .route__step, .tier, .review {
    background-color: var(--color-card-bg) !important;
    border: 1px solid var(--color-border) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6) !important;
    color: var(--color-text) !important;
    backdrop-filter: blur(12px) !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.card:hover, .plan-card:hover, .route__step:hover, .tier:hover, .review:hover {
    border-color: var(--color-primary) !important;
    box-shadow: var(--shadow-neon-cyan), 0 10px 40px rgba(0, 0, 0, 0.8) !important;
    transform: translateY(-6px) scale(1.01) !important;
}

.elevation__item {
    background-color: var(--color-card-bg) !important;
    border: 1px solid var(--color-border) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5) !important;
}

.elevation__item::before {
    background: var(--color-primary) !important;
    box-shadow: var(--shadow-neon-cyan) !important;
}

/* Hero Section */
.hero::before {
    background: linear-gradient(180deg, rgba(9, 10, 22, 0.4) 0%, rgba(9, 10, 22, 0.85) 100%) !important;
}

.hero__title {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.6), 0 4px 20px rgba(0, 0, 0, 0.9) !important;
}

.hero__desc {
    color: var(--color-text-muted) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9) !important;
}

.hero__badge {
    background-color: rgba(0, 240, 255, 0.15) !important;
    border: 1px solid var(--color-primary) !important;
    color: var(--color-primary) !important;
    box-shadow: var(--shadow-neon-cyan) !important;
}

/* Game Interface */
.featured-game-container_fpf {
    background: var(--color-card-bg-solid) !important;
    border: 2px solid var(--color-primary) !important;
    box-shadow: var(--shadow-neon-cyan), 0 15px 50px rgba(0, 0, 0, 0.9) !important;
    border-radius: var(--border-radius-md) !important;
}

.featured-game-control_fpf {
    background: var(--color-bg-alt) !important;
    border-bottom: 1px solid var(--color-border) !important;
}

.featured-game-title_fpf {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5) !important;
}

.game-placeholder_fpf {
    background: var(--color-bg-alt) !important;
}

.game-placeholder-img {
    opacity: 0.65 !important;
}

.game-placeholder_fpf:hover .game-placeholder-img {
    opacity: 0.9 !important;
}

.game-placeholder__text_fpf {
    color: var(--color-text-muted) !important;
}

/* Slot Cabin Cyber Neon Theme */
.slot-cabin {
    background: linear-gradient(160deg, #121633 0%, #0e1026 100%) !important;
    border: 1px solid var(--color-border) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), var(--shadow-neon-cyan) !important;
}

.slot-reels {
    background: rgba(9, 10, 22, 0.9) !important;
    border: 1px solid var(--color-primary) !important;
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.2) !important;
}

.slot-reel {
    background: #0e1026 !important;
    border: 1px solid rgba(0, 240, 255, 0.15) !important;
}

.slot-cell {
    background: rgba(255, 255, 255, 0.02) !important;
}

.slot-cell.is-win {
    background-color: rgba(57, 255, 20, 0.2) !important;
    box-shadow: inset 0 0 25px rgba(57, 255, 20, 0.6), var(--shadow-neon-green) !important;
    border: 1px solid var(--color-gold) !important;
}

.slot-console {
    background: rgba(18, 22, 51, 0.95) !important;
    border: 1px solid var(--color-border) !important;
    color: var(--color-text) !important;
}

.slot-hud__label {
    color: var(--color-text-muted) !important;
}

.slot-hud__value {
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.5) !important;
}

.slot-console__coins {
    color: var(--color-gold) !important;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.6) !important;
}

.slot-msg {
    color: var(--color-gold) !important;
    text-shadow: 0 0 12px rgba(57, 255, 20, 0.8) !important;
}

.slot-payline__title {
    color: #ffffff !important;
    border-left: 3px solid var(--color-primary) !important;
}

.pay-chip {
    background: rgba(18, 22, 51, 0.8) !important;
    border: 1px solid var(--color-border) !important;
}

.pay-chip img {
    background: var(--color-bg-alt) !important;
}

.pay-chip strong {
    color: var(--color-text) !important;
}

/* FAQ Details */
.faq-item {
    background: var(--color-card-bg) !important;
    border: 1px solid var(--color-border) !important;
    backdrop-filter: blur(12px) !important;
}

.faq-item summary {
    color: #ffffff !important;
}

.faq-item summary .faq-caret {
    background: rgba(0, 240, 255, 0.1) !important;
    border: 1px solid var(--color-border) !important;
}

.faq-item summary .faq-caret svg {
    fill: var(--color-primary) !important;
}

.faq-item.is-open summary .faq-caret {
    background: var(--color-gold) !important;
    border-color: var(--color-gold) !important;
    box-shadow: var(--shadow-neon-green) !important;
}

.faq-item.is-open summary .faq-caret svg {
    fill: #090a16 !important;
}

/* Forms & Inputs */
.form {
    background-color: var(--color-card-bg) !important;
    border: 1px solid var(--color-border) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(16px) !important;
}

.form-control {
    background-color: rgba(9, 10, 22, 0.8) !important;
    border: 1px solid var(--color-border) !important;
    color: #ffffff !important;
}

.form-control:focus {
    border-color: var(--color-primary) !important;
    box-shadow: var(--shadow-neon-cyan) !important;
    background-color: rgba(14, 16, 38, 0.95) !important;
}

/* Security Gate */
.security-gate_fpf {
    background-color: rgba(0, 240, 255, 0.05) !important;
    border: 1.5px solid var(--color-border) !important;
}

.security-gate_fpf:hover {
    border-color: var(--color-primary) !important;
    box-shadow: var(--shadow-neon-cyan) !important;
}

.verify-circle_fpf {
    background-color: #0e1026 !important;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5) !important;
}

.verify-ring_fpf {
    border: 2px solid var(--color-border) !important;
}

.verify-label_fpf {
    color: #ffffff !important;
}

/* Modals */
.modal__overlay {
    background: rgba(9, 10, 22, 0.85) !important;
    backdrop-filter: blur(15px) !important;
}

.modal__dialog {
    background: linear-gradient(135deg, #121633 0%, #0e1026 100%) !important;
    color: #ffffff !important;
    border: 1px solid var(--color-primary) !important;
    box-shadow: var(--shadow-neon-cyan), 0 20px 60px rgba(0, 0, 0, 0.9) !important;
}

.modal__title, .modal__text {
    color: #ffffff !important;
}

.game-modal__dialog_fpf {
    background: linear-gradient(135deg, #121633 0%, #0e1026 100%) !important;
    border: 2px solid var(--color-primary) !important;
    box-shadow: var(--shadow-neon-cyan), 0 20px 60px rgba(0, 0, 0, 0.9) !important;
}

.game-modal__header_fpf {
    background-color: var(--color-bg-alt) !important;
    border-bottom: 1px solid var(--color-border) !important;
}

.game-modal__title_fpf {
    color: #ffffff !important;
}

/* Toast Notification Styling */
.toast_fpf {
    background-color: rgba(18, 22, 51, 0.95) !important;
    border: 1.5px solid var(--color-primary) !important;
    box-shadow: var(--shadow-neon-cyan), 0 10px 40px rgba(0, 0, 0, 0.8) !important;
    color: #ffffff !important;
}

.toast__title_fpf {
    color: #ffffff !important;
}

/* Mobile Menu Panel */
.mobile-menu__panel {
    background-color: #0e1026 !important;
    border-left: 1px solid var(--color-border) !important;
}

.mobile-menu__link {
    color: var(--color-text-muted) !important;
}

.mobile-menu__link:hover {
    color: var(--color-primary) !important;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.6) !important;
}

.mobile-menu__close {
    color: #ffffff !important;
}

/* Responsive fitting for Coin labels, HUD, and Headings */
.slot-hud__label, .slot-hud__value, .slot-console__coins, .badge, .hero__title, .site-logo {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}
@media (max-width: 480px) {
    .site-logo {
        font-size: 1.1rem !important;
    }
    .slot-hud__value {
        font-size: 1.2rem !important;
    }
}

/* High Contrast Text Guarantees */
body, p, li, dt, dd,
.faq-answer, .sec-head p, .card p, .card__desc, .switchback__body p,
.duo__text p, .content-wrapper p, .content-wrapper li {
    color: var(--color-text);
}

.text-muted {
    color: var(--color-text-muted) !important;
}

h1, h2, h3, h4, h5, h6,
.sec-head h2, .sec-head h3, .hero__title, .card__title, .card h2, .card h3, .card h4,
.faq-question, .content-wrapper h1, .content-wrapper h2, .content-wrapper h3 {
    color: #ffffff !important;
}

.btn--primary, .btn--primary *,
.cta-band, .cta-band h1, .cta-band h2, .cta-band h3, .cta-band h4, .cta-band p,
.modal__badge {
    color: #ffffff !important;
}