/* ============================
   CTRL — Premium Design System
   ============================ */

:root {
    --black: #050505;
    --black-light: #111111;
    --black-mid: #1a1a1a;
    --dark: #222222;
    --gray-dark: #333333;
    --gray: #888888;
    --gray-light: #bbbbbb;
    --white: #fafafa;
    --white-pure: #ffffff;
    --yellow: #F4C430;
    /* Brandbook Ampersand Yellow */
    --yellow-light: #f7d666;
    --yellow-dark: #cc9d10;
    --yellow-glow: rgba(244, 196, 48, 0.25);
    --yellow-subtle: rgba(244, 196, 48, 0.08);

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 40px;

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.4);
    --shadow-yellow: 0 8px 32px rgba(255, 184, 0, 0.25);

    --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-top: env(safe-area-inset-top, 0px);
}

/* ============ RESET ============ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: 64px;
    /* Fixed navbar scrolled height */
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 500;
    /* Medium by default */
    background: var(--black);
    color: var(--white);
    line-height: 1.4;
    /* Slightly less compact for body readability */
    letter-spacing: 0.04em;
    /* Standard tracking for body */
    overflow-x: hidden;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6,
.nav-link,
.btn,
.section-tag,
.hero-scroll-indicator span,
.hero-stat-label,
.gallery-hover span,
.footer-nav h4 {
    font-weight: 600;
    /* SemiBold for headings and interactive elements */
    letter-spacing: 0.08em;
    /* Tracking +80 */
    text-transform: uppercase;
    /* ALL CAPS */
}

/* Brandbook Ampersand */
.ampersand {
    color: var(--yellow);
    font-weight: 600;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

/* ============ UTILITIES ============ */
.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 2rem;
}

/* ============ PRELOADER ============ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
    position: relative;
}

.preloader-logo {
    position: relative;
    z-index: 2;
}

.preloader-logo-img {
    width: auto;
    height: 48px;
    border-radius: 4px;
    object-fit: contain;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.preloader-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 2px solid rgba(245, 197, 24, 0.1);
    border-top-color: var(--yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.preloader-text {
    margin-top: 24px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--yellow);
    opacity: 0.7;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.btn:hover::after {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
    padding: 16px 36px;
    border-radius: 60px;
    box-shadow: var(--shadow-yellow);
}

.btn-primary:hover {
    background: var(--yellow-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(255, 184, 0, 0.4);
}

.btn-xl {
    padding: 20px 48px;
    font-size: 1rem;
}

/* Pulsing glow on hero CTA */
.hero-cta-group .btn-primary {
    animation: ctaGlow 3s ease-in-out infinite;
}

@keyframes ctaGlow {

    0%,
    100% {
        box-shadow: 0 4px 30px rgba(245, 197, 24, 0.3);
    }

    50% {
        box-shadow: 0 4px 50px rgba(245, 197, 24, 0.6), 0 0 80px rgba(245, 197, 24, 0.2);
    }
}

.hero-cta-group .btn-primary:hover {
    animation: none;
    box-shadow: 0 8px 40px rgba(245, 197, 24, 0.5);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    padding: 16px 36px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 60px;
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--black);
    color: var(--yellow);
    padding: 16px 36px;
    border-radius: 60px;
    border: 2px solid var(--black);
}

.btn-dark:hover {
    background: transparent;
    border-color: var(--black);
    color: var(--black);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 18px 36px;
}

/* ============ SECTION TAGS & TITLES ============ */
.section-tag,
.section-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--yellow);
    margin-bottom: 16px;
}

.section-tag {
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: var(--yellow);
    transform: translateY(-50%);
}

.section-tag-light {
    color: var(--yellow-light);
}

.section-tag-light::before {
    background: var(--yellow-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--black);
    margin-bottom: 8px;
}

.section-title-light {
    color: var(--white);
}

.highlight {
    color: var(--yellow);
    font-style: italic;
}

/* Original subtitle style removed as it conflicts with our golden tags */

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header .section-tag {
    padding-left: 0;
    margin-bottom: 16px;
    /* Ensuring consistent spacing below */
}

.section-header .section-tag::before {
    display: none;
}

.section-header .section-subtitle {
    margin: 0 auto 16px auto;
    /* Changed to 16px for consistency with tags and other subtitles */
}

/* ============ SECTION PADDINGS ============ */
.section {
    padding: clamp(60px, 8vh, 100px) 0;
    position: relative;
    min-height: calc(100vh - 64px);
}

/* ============ NAVIGATION ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: transform 0.35s ease, background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: transform;
    background: rgba(5, 5, 5, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.0);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    padding: 12px 0;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-img {
    height: 48px;
    width: auto;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo-img {
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    padding: 10px 18px;
    border-radius: 30px;
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
    background: var(--yellow) !important;
    color: var(--black) !important;
    font-weight: 700;
    padding: 10px 24px !important;
}

.nav-cta:hover {
    background: var(--yellow-light) !important;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 1010;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--yellow);
    transition: var(--transition);
    left: 6px;
}

.hamburger {
    top: 17px;
}

.hamburger::before {
    content: '';
    top: -8px;
    left: 0;
}

.hamburger::after {
    content: '';
    top: 8px;
    left: 0;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile nav overlay */
.nav-overlay {
    display: none;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) saturate(1.2);
    transform: scale(1.05);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.2) 40%, rgba(10, 10, 10, 0.7) 80%, rgba(10, 10, 10, 1) 100%),
        linear-gradient(90deg, rgba(10, 10, 10, 0.6) 0%, transparent 50%, rgba(10, 10, 10, 0.6) 100%);
}

#particle-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: clamp(90px, 12vh, 120px) 30px clamp(120px, 18vh, 220px);
    max-width: 900px;
}

/* Staggered hero entrance animations */

.hero-badge {
    display: inline-block;
    background: rgba(245, 197, 24, 0.15);
    border: 1px solid rgba(245, 197, 24, 0.3);
    color: var(--yellow);
    padding: 8px 24px;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(-20px);
    animation: heroFadeIn 0.8s ease forwards 0.3s;
}

.hero-logo-wrapper {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 0.8s ease forwards 0.5s;
}

.hero-logo {
    width: clamp(100px, 15vh, 140px);
    margin: 0 auto;
}

.about-img-main img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: block;
    max-height: 400px;
    object-fit: cover;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.1;
    /* Super compact for huge titles */
    color: var(--white-pure);
    margin-bottom: clamp(16px, 3vh, 24px);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 0.8s ease forwards 0.7s;
}

.hero-title-accent {
    color: var(--yellow);
    display: block;
    font-size: 1.15em;
    text-shadow: 0 0 24px var(--yellow-glow);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: clamp(24px, 4vh, 40px);
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 0.8s ease forwards 0.9s;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 0.8s ease forwards 1.1s;
}

/* Scroll Indicator Button */
.hero-scroll-btn {
    position: absolute;
    bottom: clamp(60px, 8vh, 100px);
    right: 30px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0;
    transition: all 0.3s ease;
    animation: heroFadeIn 1s ease forwards 1.5s;
}

.hero-scroll-btn span {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    transition: var(--transition);
}

.hero-scroll-btn i {
    font-size: 1.2rem;
    color: var(--yellow);
    animation: bounce 2.5s infinite 2.5s;
    transition: var(--transition);
}

.hero-scroll-btn:hover span {
    color: var(--yellow);
}

.hero-scroll-btn:hover i {
    transform: translateY(5px);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

.hero-bottom-bar {
    position: absolute;
    bottom: clamp(10px, 3vh, 30px);
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 30px;
    background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.9) 30%);
    padding-bottom: calc(30px + var(--safe-bottom));
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    line-height: 1.3;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* ============ ABOUT ============ */
.about {
    background: var(--white);
}

@media (min-width: 1025px) {
    .about .section-header {
        margin-bottom: 10px;
    }
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-images {
    position: relative;
}

.about-img-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--yellow);
    color: var(--black);
    padding: 14px 22px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-md);
}

.about-img-badge-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--yellow);
    border-radius: var(--radius-md);
    z-index: 1;
    opacity: 0.5;
}

.about-content {
    padding: 20px 0;
}

.about-content .section-title {
    margin-bottom: 20px;
}

.about-text {
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    color: #444;
    margin-bottom: 12px;
    line-height: 1.5;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.about-feature-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(244, 196, 48, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 0.9rem;
    border: 2px solid rgba(245, 197, 24, 0.15);
    transition: var(--transition);
    flex-shrink: 0;
}

.about-feature:hover .about-feature-icon {
    background: var(--yellow);
    color: var(--black);
    transform: scale(1.1);
}

.about-feature h4 {
    font-family: var(--font-heading);
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: clamp(0.7rem, 1vw, 0.8rem);
    color: #666;
    line-height: 1.3;
}

/* ============ PARALLAX DIVIDER ============ */
.parallax-divider {
    position: relative;
    height: 50vh;
    min-height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-img {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 120%;
    object-fit: cover;
    will-change: transform;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.85);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 30px;
    max-width: 700px;
}

.parallax-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--white-pure);
    margin-bottom: 16px;
    font-weight: 700;
}

.parallax-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

.cta-banner {
    text-align: center;
}

.cta-banner h2 {
    margin-bottom: 12px;
}

.cta-banner p {
    margin-bottom: 30px;
}

/* ============ HOW IT WORKS & SPECIAL OFFERS ============ */
.how-it-works,
.special-offers {
    background: var(--white);
}

.how-it-works .section-title,
.special-offers .section-title {
    color: var(--black);
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step {
    background: var(--white-pure);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.step-media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.step-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.step:hover .step-media img {
    transform: scale(1.08);
}

.step-number-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--yellow);
    color: var(--black);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

.step-body {
    padding: clamp(16px, 2vh, 24px);
}

.step-body h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.step-body p {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: #666;
    line-height: 1.5;
}

/* ============ GAME MODES ============ */
.game-modes {
    background: var(--yellow);
    position: relative;
    overflow: hidden;
}

.modes-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.modes-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modes-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(244, 196, 48, 0.85);
}

/* Semi-transparent construction stripe pattern */
.game-modes::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-45deg,
            rgba(0, 0, 0, 0.06),
            rgba(0, 0, 0, 0.06) 20px,
            transparent 20px,
            transparent 40px);
    z-index: 1;
    pointer-events: none;
}

.game-modes .container {
    position: relative;
    z-index: 2;
}

.game-modes .section-title {
    color: var(--black);
}

.game-modes .section-subtitle {
    color: rgba(0, 0, 0, 0.7);
}

.game-modes .highlight {
    background: var(--black);
    color: var(--yellow);
    padding: 0 16px;
    border-radius: 8px;
    display: inline-block;
    transform: rotate(-2deg);
}

.modes-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.mode-row-card {
    display: grid;
    grid-template-columns: 320px 1fr 300px;
    gap: 40px;
    align-items: center;
    background: var(--black);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    color: var(--white);
}

.mode-row-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

/* Header */
.mode-row-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.mode-row-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--yellow);
}

.mode-row-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    line-height: 1.25;
    margin-top: 2px;
}

.mode-row-header h3 span {
    color: var(--yellow);
    font-size: 1.1rem;
    display: block;
    margin-top: 6px;
    font-weight: 500;
}

/* Body */
.mode-row-body p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Extra */
.compact-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.compact-feature i {
    font-size: 2rem;
    color: var(--white);
}

.compact-feature strong {
    display: block;
    color: var(--yellow);
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.compact-feature span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    line-height: 1.4;
}

/* ============ PRICING ============ */
.pricing {
    background: var(--white);
    padding: clamp(60px, 8vh, 100px) 0;
}

.pricing-layout {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-item {
    background: var(--white-pure);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: var(--transition-slow);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.pricing-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--yellow);
}

.pricing-icon {
    width: 64px;
    height: 64px;
    background: var(--yellow-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--yellow);
    margin-bottom: 24px;
    transition: var(--transition);
}

.pricing-item:hover .pricing-icon {
    background: var(--yellow);
    color: var(--black);
    transform: rotate(15deg) scale(1.1);
}

.pricing-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 12px;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    font-family: var(--font-heading);
}

/* Highlighted Item */
.pricing-item.highlighted {
    border: 2px solid var(--yellow);
    box-shadow: 0 15px 40px var(--yellow-subtle);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--black);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-cta .btn {
    min-width: 250px;
}

@media (max-width: 992px) {
    .pricing-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-item {
        padding: 30px 20px;
    }
}

/* ============ GALLERY ============ */
.gallery {
    background: var(--black);
}

.gallery .section-title {
    color: var(--white);
}

.gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.gallery .section-header {
    position: relative;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: var(--yellow);
    padding: 10px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    /* Let clicks pass through */
    z-index: 2;
}

.gallery-caption span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 85vw;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: scale(0.9);
    opacity: 0;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--yellow);
    color: var(--black);
}

.lightbox-caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-align: center;
}

/* ============ REVIEWS ============ */
.reviews {
    background: var(--white);
    overflow: hidden;
    position: relative;
}

.reviews .section-title {
    color: var(--black);
}

.reviews .section-subtitle {
    color: rgba(0, 0, 0, 0.6);
}

.text-yellow {
    color: var(--yellow) !important;
}

.reviews .section-header {
    position: relative;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
    min-width: calc(33.333% - 16px);
    margin-right: 24px;
    padding: clamp(20px, 3vh, 32px) clamp(20px, 2vw, 24px);
    background: var(--white-pure);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    /* transition removed to disable hover movement */
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1024px) {
    .review-card {
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .review-card {
        min-width: 100%;
        margin-right: 0;
    }
}

.review-quote {
    color: rgba(245, 197, 24, 0.2);
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.review-stars {
    color: var(--yellow);
    font-size: 1rem;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
    justify-content: center;
}

.review-text {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.4vw, 0.95rem);
    color: #444;
    line-height: 1.5;
    margin: 0 auto 20px;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(245, 197, 24, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--yellow-dark);
}

.review-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--black);
    margin-bottom: 2px;
}

.review-author span {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.5);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--black);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.carousel-btn:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--yellow);
    width: 24px;
    border-radius: 5px;
}

/* ============ CONTACT ============ */
.contact {
    overflow: hidden;
}

.contact-form-side,
.contact-info-side {
    scroll-margin-top: 80px;
}

.contact-bg {
    position: absolute;
    inset: 0;
}

.contact-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.15) saturate(0.8);
}

.contact-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.65));
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-desc {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(245, 197, 24, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 1rem;
}

.contact-info-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.contact-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-socials a:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-3px);
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    /* Slightly smaller radius */
    padding: clamp(24px, 3vh, 32px) clamp(24px, 3vw, 32px);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5);
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.contact-form select {
    color: rgba(255, 255, 255, 0.35);
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
}

.contact-form select option {
    background: var(--black);
    color: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    height: 50px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

.footer-nav h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-nav a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    padding: 5px 0;
    transition: var(--transition);
}

.footer-nav a i {
    margin-right: 8px;
    color: var(--yellow);
    font-size: 0.8rem;
}

.footer-nav a:hover {
    color: var(--yellow);
    transform: translateX(4px);
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-socials a i {
    margin-right: 0;
    /* Override the margin from .footer-nav a i */
    font-size: 1rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--white);
    transition: var(--transition);
    padding: 0;
}

.footer-socials a:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateX(0) translateY(-2px);
}

.footer-bottom {
    padding: 24px 0;
    padding-bottom: calc(24px + var(--safe-bottom));
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--black);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-yellow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(245, 197, 24, 0.5);
}

/* ============ ANIMATIONS ============ */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-right"] {
    transform: translateX(-50px);
}

[data-animate="fade-left"] {
    transform: translateX(50px);
}

[data-animate="fade-down"] {
    transform: translateY(-40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============ RESPONSIVE — TABLET ============ */
@media (max-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-img-badge {
        display: none;
    }

    .about-img-secondary {
        position: absolute;
        bottom: 10px;
        right: 10px;
        width: 35%;
        border-radius: var(--radius-sm);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        border: 3px solid #fff;
    }

    .about-img-accent {
        display: none;
    }

    .steps-timeline {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .modes-list {
        gap: 16px;
    }

    .mode-row-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }

    .gi-2 {
        grid-row: span 1;
    }

    .gi-4 {
        grid-column: span 1;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero-bottom-bar {
        gap: 30px;
        padding: 20px;
    }

    .hero-stat-num {
        font-size: 2rem;
    }
}

/* ============ RESPONSIVE — MOBILE ============ */
@media (max-width: 768px) {

    /* Mobile nav */
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        height: 100dvh;
        background: #0a0a0a;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 100px 24px 40px;
        transition: transform var(--transition-slow), visibility var(--transition-slow);
        gap: 2px;
        z-index: 1005;
        overflow-y: auto;
        transform: translateX(100%);
        visibility: hidden;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }

    .nav-link {
        display: block;
        font-size: 1.1rem;
        padding: 16px 20px;
        width: 100%;
        border-radius: var(--radius-sm);
        color: rgba(255, 255, 255, 0.85);
        text-align: left;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(245, 197, 24, 0.1);
        color: var(--yellow);
    }

    .nav-cta {
        margin-top: 20px;
        text-align: center;
        justify-content: center;
        display: flex;
        border-radius: 60px !important;
    }

    .nav-toggle {
        display: block;
    }

    /* Mobile nav overlay backdrop */
    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition-slow), visibility var(--transition-slow);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Hero mobile */
    .hero-content {
        padding: 100px 20px 280px;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
    }

    .hero-logo-wrapper {
        margin-bottom: 20px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
        margin-bottom: 20px;
    }

    .hero-subtitle br {
        display: none;
    }

    /* Mobile stats: 2x2 grid */
    .hero-bottom-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 20px;
        padding-bottom: calc(20px + var(--safe-bottom));
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat {
        min-width: auto;
        padding: 12px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--radius-sm);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .hero-stat-num {
        font-size: 1.8rem;
    }

    .hero-stat-label {
        font-size: 0.65rem;
    }

    /* Scroll indicator: hide on small screens */
    .hero-scroll-btn {
        display: none;
    }

    /* Gallery mobile: single column stack */
    .gallery-masonry {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .gallery-item {
        aspect-ratio: 3/2;
        width: 100%;
    }

    /* Game Modes Mobile */
    .mode-row-card {
        padding: 24px 20px;
    }

    .mode-row-header h3 {
        font-size: 1.3rem;
    }

    /* Reviews */
    .review-card {
        padding: 30px 24px;
    }

    .review-text {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .review-quote {
        font-size: 2rem;
    }

    /* Contact */
    .contact {
        padding: 80px 0;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 14px 16px;
        font-size: 16px;
        /* Prevents iOS zoom on focus */
    }

    /* Section paddings - Handled by common .section class now */

    .section-header {
        margin-bottom: 30px;
    }

    /* Footer mobile */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer {
        padding-top: 60px;
    }

    /* Parallax: adjust height to fit content on mobile */
    .parallax-divider {
        height: auto;
        min-height: 400px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .parallax-img {
        top: 0;
        left: 0;
        transform: none !important;
        width: 100%;
        height: 100%;
        /* Disable parallax JS on mobile */
    }

    /* Lightbox mobile */
    .lightbox-img {
        max-width: 94vw;
        max-height: 80vh;
        border-radius: var(--radius-sm);
    }

    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }

    .lightbox-close {
        top: 16px;
        right: 16px;
    }

    /* Section gradients smaller on mobile */
    .about::before,
    .gallery::before,
    .reviews::before {
        height: 50px;
    }

    /* Container padding on mobile */
    .container {
        padding: 0 20px;
    }
}

/* ============ RESPONSIVE — SMALL MOBILE ============ */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-group .btn {
        justify-content: center;
    }

    .btn-xl {
        padding: 16px 32px;
        font-size: 0.9rem;
    }

    .about-img-badge {
        display: none;
    }

    .about-img-secondary {
        position: absolute;
        bottom: 10px;
        right: 10px;
        width: 35%;
        border-radius: var(--radius-sm);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        border: 3px solid #fff;
    }

    .about-img-accent {
        display: none;
    }

    .gallery-masonry {
        grid-auto-rows: 160px;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.4rem);
    }

    .review-text {
        font-size: 0.95rem;
    }

    .steps-timeline {
        max-width: 100%;
    }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-badge,
    .hero-logo-wrapper,
    .hero-title,
    .hero-subtitle,
    .hero-cta-group {
        opacity: 1;
        transform: none;
        animation: none;
    }
}