

        /* ── Reset ── */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --yellow:  #ffe600;
            --cyan:    #00f0ff;
            --blue:    #00aaff;
            --orange:  #ff6b00;
            --pink:    #ff0066;
            --purple:  #9900ff;
            --bg:      #070710;
            --card-bg: #0b0b18;
            --text:    #c8d0e0;
            --muted:   #5a6080;
            --pixel:   'Press Start 2P', monospace;
            --hud:     'Orbitron', sans-serif;
        }

        html { scroll-behavior: smooth; }

        body {
            background: var(--bg);
            color: var(--text);
            font-family: var(--hud);
            overflow-x: hidden;
        }

        /* TRON grid background */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image:
                linear-gradient(rgba(0,240,255,0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0,240,255,0.025) 1px, transparent 1px);
            background-size: 48px 48px;
            pointer-events: none;
            z-index: 0;
        }

        /* Scanline overlay */
        body::after {
            content: '';
            position: fixed;
            inset: 0;
            background: repeating-linear-gradient(
                0deg,
                transparent 0px,
                transparent 3px,
                rgba(0,0,0,0.03) 3px,
                rgba(0,0,0,0.03) 4px
            );
            pointer-events: none;
            z-index: 9000;
        }

        /* ── Top Nav ── */
        .top-nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            height: 56px;
            display: flex;
            flex-wrap: nowrap;
            align-items: center;
            justify-content: space-between;
            padding: 0 clamp(0.75rem, 2.67vw, 2rem);
            background: rgba(4,4,12,0.88);
            border-bottom: 1px solid rgba(0,240,255,0.18);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .nav-brand {
            font-family: var(--hud);
            font-size: clamp(0.8rem, 1.47vw, 1.1rem);
            font-weight: 900;
            color: var(--cyan);
            letter-spacing: 0.06em;
            text-decoration: none;
            text-transform: uppercase;
            text-shadow: 0 0 18px rgba(0,240,255,0.5);
            transition: color 0.8s ease;
            white-space: nowrap;
            flex-shrink: 0;
        }


        .nav-links {
            display: flex;
            align-items: center;
            gap: clamp(0.8rem, 2.67vw, 2rem);
            list-style: none;
        }

        .nav-links a {
            font-family: var(--hud);
            font-size: clamp(0.52rem, 0.96vw, 0.72rem);
            font-weight: 400;
            color: rgba(200,208,224,0.7);
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-decoration: none;
            transition: color 0.2s;
        }

        .nav-links a:hover  { color: #fff; }
        .nav-links a.active { color: var(--cyan); }


        .nav-cta {
            font-family: var(--hud);
            font-size: clamp(0.45rem, 0.8vw, 0.6rem);
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-decoration: none;
            color: #00aaff;
            border: 1px solid rgba(0,170,255,0.65);
            padding: clamp(0.35rem, 0.67vw, 0.5rem) clamp(0.7rem, 1.67vw, 1.25rem);
            background: transparent;
            position: relative;
            overflow: hidden;
            transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
            white-space: nowrap;
        }

        /* Reflection sweep */
        .nav-cta::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 60%;
            height: 100%;
            background: linear-gradient(
                100deg,
                transparent 20%,
                rgba(255,255,255,0.35) 50%,
                transparent 80%
            );
            transform: translateX(-120%);
            transition: none;
        }

        .nav-cta:hover {
            color: #fff;
            border-color: #00aaff;
            box-shadow: 0 0 18px rgba(0,170,255,0.4), inset 0 0 12px rgba(0,170,255,0.08);
        }

        .nav-cta:hover::before {
            transform: translateX(250%);
            transition: transform 0.95s ease;
        }

        /* ── Mobile hamburger ── */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            flex-shrink: 0;
        }
        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--cyan);
            transition: transform 0.25s, opacity 0.25s;
        }
        .mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
        .mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* ── Mobile nav drawer ── */
        .mobile-nav-drawer {
            display: none;
            position: fixed;
            top: 56px;
            left: 0;
            right: 0;
            background: rgba(4,4,16,0.97);
            border-bottom: 2px solid var(--cyan);
            flex-direction: column;
            padding: 1.5rem 2rem;
            gap: 1.25rem;
            z-index: 99;
            backdrop-filter: blur(12px);
        }
        .mobile-nav-drawer.open { display: flex; }
        .mobile-nav-drawer a {
            font-family: var(--hud);
            font-size: 0.75rem;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            transition: color 0.2s;
        }
        .mobile-nav-drawer a:hover { color: var(--cyan); }

        /* ── Mobile-only party CTA in hero ── */
        .mobile-party-cta {
            display: none;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 4;
            /* Matches .btn-neon.outline style */
            font-family: var(--hud);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--cyan);
            background: rgba(0,0,0,0.7);
            border: 1px solid var(--cyan);
            padding: 0.9rem 2.5rem;
            white-space: nowrap;
            border-radius: 0;
            box-shadow: 0 0 28px 8px rgba(0,0,0,0.75);
            transition: background 0.25s, box-shadow 0.25s;
        }
        .mobile-party-cta:hover {
            background: rgba(0,0,0,0.85);
            box-shadow: 0 0 28px 8px rgba(0,0,0,0.75), 0 0 22px rgba(0,240,255,0.3);
            color: #fff;
        }

        /* ── Hero ── */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 580px;
            overflow: hidden;
        }

        /* Crossfade slideshow — pure CSS */
        .slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center center;
            opacity: 0;
            animation: fade 30s infinite;
            transform: scale(1.04); /* subtle Ken Burns */
            animation-timing-function: ease-in-out;
        }

        /* slide backgrounds + delays are output dynamically from view.phtml */

        /* N slides × 6s each = total cycle */
        @keyframes fade {
            0%   { opacity: 0; }
            5%   { opacity: 1; }
            15%  { opacity: 1; }
            20%  { opacity: 0; }
            100% { opacity: 0; }
        }

        /* Dark vignette over slideshow */
        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
            background:
                linear-gradient(to bottom,
                    rgba(8,8,16,0.55) 0%,
                    rgba(8,8,16,0.05) 35%,
                    rgba(8,8,16,0.1)  55%,
                    rgba(8,8,16,0.75) 85%,
                    rgba(8,8,16,1.00) 100%
                );
        }

        /* ── Hero feature: full-width band + centered overlapping logo ── */

        /*
         * Layout strategy:
         *   - .hero-feature spans from top:0, height = 80px gap + logo height
         *   - logo top edge sits at 80px (fully visible with gap)
         *   - band is absolutely positioned at the logo's vertical center
         *     so it bisects the logo cleanly
         *   Logo size: clamp(240px, 33vw, 390px) — call it L
         *   Logo center from viewport top = 80px + L/2
         *   Band center = same → band top = 80px + L/2, shifted up 50% by transform
         */
        .hero-feature {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 3;
            /* tall enough to contain the logo */
            height: calc(72px + clamp(240px, 33vw, 390px) + 40px);
        }

        /* Logo: top edge clears the 56px nav + gap */
        .hero-logo svg { width: 100%; height: 100%; display: block; }
        .hero-logo {
            position: absolute;
            left: 50%;
            top: 72px;
            transform: translateX(-50%);
            width: clamp(240px, 33vw, 390px);
            height: clamp(240px, 33vw, 390px);
            animation: pulse 3.5s ease-in-out infinite;
            pointer-events: none;
            z-index: 4;
        }

        /* Band: centered on logo's vertical midpoint */
        .hero-band {
            position: absolute;
            top: calc(72px + clamp(120px, 16.5vw, 195px));
            transform: translateY(-50%);
            left: 0;
            right: 0;
            display: grid;
            grid-template-columns: 1fr clamp(240px, 33vw, 390px) 1fr;
            align-items: center;
            background: rgba(0,0,0,0.82);
            border-top: 2px solid var(--cyan);
            border-bottom: 2px solid var(--cyan);
        }


        .hero-band-cell {
            padding: 1.8rem 2.5rem;
            font-family: var(--hud);
            font-size: clamp(0.9rem, 2vw, 1.4rem);
            font-weight: 900;
            color: var(--yellow);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            line-height: 1.1;
        }

        .hero-band-cell:first-child { text-align: right; }
        .hero-band-cell:last-child  { text-align: left;  }

        .hero-band-phone {
            display: block;
            font-family: var(--hud);
            font-weight: 400;
            text-transform: uppercase;
            color: var(--cyan);
            font-size: 0.75em;
            letter-spacing: 0.2em;
            margin-top: 0.3em;
        }

        @keyframes pulse {
            0%, 100% { filter: drop-shadow(0 0 20px rgba(255,230,0,0.55)) drop-shadow(0 0 40px rgba(255,230,0,0.25)); }
            50%       { filter: drop-shadow(0 0 40px rgba(255,230,0,0.9))  drop-shadow(0 0 80px rgba(255,230,0,0.5)); }
        }

        /* Tagline sits below the feature block */
        .hero-content {
            position: absolute;
            inset: 0;
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            padding: 0 1.5rem 12vh;
        }

        .hero-tagline {
            font-family: var(--hud);
            font-size: clamp(0.6rem, 1.6vw, 0.85rem);
            font-weight: 400;
            color: var(--cyan);
            letter-spacing: 0.35em;
            text-shadow: 0 0 18px var(--cyan), 0 0 40px rgba(0,240,255,0.4);
            text-transform: uppercase;
        }

        /* ── Pac-Man chase ── */
        .pac-stage {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 33.33vw;
            bottom: calc(12vh + 3.5rem);
            height: 56px;
            z-index: 3;
            overflow: hidden;
            pointer-events: none;
            /* Fade both edges to transparent */
            -webkit-mask-image: linear-gradient(
                to right,
                transparent 0%,
                black 18%,
                black 82%,
                transparent 100%
            );
            mask-image: linear-gradient(
                to right,
                transparent 0%,
                black 18%,
                black 82%,
                transparent 100%
            );
        }

        /* Dot trail */
        .dot-trail {
            position: absolute;
            left: 0; right: 0;
            top: 50%; transform: translateY(-50%);
            height: 12px;
        }

        .trail-dot {
            position: absolute;
            width: 7px;
            height: 7px;
            background: var(--yellow);
            border-radius: 50%;
            top: 50%; transform: translateY(-50%);
            box-shadow: 0 0 6px rgba(255,230,0,0.7);
            transition: opacity 0.06s;
        }

        /* Power pellets (bigger dots every ~8th) */
        .trail-dot.pellet {
            width: 14px;
            height: 14px;
            box-shadow: 0 0 10px rgba(255,230,0,0.9);
        }

        .pac-runner {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 12px;
            top: 50%;
            transform: translateY(-50%);
            left: -220px;
        }

        .pac-runner.running {
            animation: pacrun 9s linear forwards;
        }

        @keyframes pacrun {
            from { left: -220px; }
            to   { left: 110%; }
        }

        /* Outer div: glow only. ::before: shape + chomp animation */
        .pac-man {
            width: 46px;
            height: 46px;
            flex-shrink: 0;
            position: relative;
            filter: drop-shadow(0 0 8px rgba(255,230,0,0.9));
        }

        .pac-man::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--yellow);
            border-radius: 50%;
            animation: chomp 0.45s linear infinite;
        }

        @keyframes chomp {
            0%, 100% { clip-path: polygon(100% 10%, 50% 50%, 100% 90%, 100% 100%, 0 100%, 0 0, 100% 0); }
            50%       { clip-path: polygon(100% 46%, 50% 50%, 100% 54%, 100% 100%, 0 100%, 0 0, 100% 0); }
        }

        /* Ghost base */
        .ghost {
            width: 38px;
            height: 46px;
            border-radius: 19px 19px 0 0;
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 84% 80%, 67% 100%, 50% 80%, 33% 100%, 16% 80%, 0% 100%);
            position: relative;
            flex-shrink: 0;
            animation: ghost-skirt 0.38s steps(1) infinite;
        }

        @keyframes ghost-skirt {
            0%  { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 84% 80%, 67% 100%, 50% 80%, 33% 100%, 16% 80%, 0% 100%); }
            50% { clip-path: polygon(0% 0%, 100% 0%, 100% 80%,  84% 100%, 67% 80%,  50% 100%, 33% 80%,  16% 100%, 0% 80%);  }
        }

        /* Eyes — ::before/::after are the whites; pupil via animated inset shadow */
        .ghost::before,
        .ghost::after {
            content: '';
            position: absolute;
            top: 11px;
            width: 10px;
            height: 12px;
            background: #fff;
            border-radius: 50%;
            animation: ghost-pupil 1.8s ease-in-out infinite;
        }
        .ghost::before { left:  7px; }
        .ghost::after  { right: 7px; }

        @keyframes ghost-pupil {
            0%, 100% { box-shadow: inset -2px 2px 0 #000c3a; }
            50%       { box-shadow: inset  3px 2px 0 #000c3a; }
        }

        .ghost-r { background: #ff2222; filter: drop-shadow(0 0 7px rgba(255,34,34,0.8)); }
        .ghost-p { background: #ff69b4; filter: drop-shadow(0 0 7px rgba(255,105,180,0.8)); }
        .ghost-c { background: #00f0ff; filter: drop-shadow(0 0 7px rgba(0,240,255,0.8)); }

        /* Pixel down-arrow */
        .hero-scroll {
            position: absolute;
            bottom: 2.25rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            animation: bob 2s ease-in-out infinite;
        }

        @keyframes bob {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50%       { transform: translateX(-50%) translateY(9px); }
        }

        /* Scroll chevron arrow */
        .scroll-arrow {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            text-decoration: none;
        }

        .scroll-arrow span {
            display: block;
            width: 18px;
            height: 18px;
            border-right: 2px solid var(--cyan);
            border-bottom: 2px solid var(--cyan);
            transform: rotate(45deg);
            box-shadow: 2px 2px 6px rgba(0,240,255,0.35);
            opacity: 1;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .scroll-arrow span:nth-child(1) { opacity: 0.4; }
        .scroll-arrow span:nth-child(2) { opacity: 0.7; }

        .scroll-arrow:hover span {
            border-color: #ff00cc;
            box-shadow: 2px 2px 8px rgba(255,0,204,0.5);
        }
        .scroll-arrow span:nth-child(3) { opacity: 1.0; }

        /* ── Pixel dividers ── */
        .px-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--cyan), transparent);
            opacity: 0.3;
        }

        /* ── Sections ── */
        section { padding: 5rem 1.5rem; }

        .container { max-width: 1080px; margin: 0 auto; }

        .section-eyebrow {
            font-family: var(--hud);
            font-size: 0.65rem;
            font-weight: 400;
            color: var(--orange);
            letter-spacing: 0.3em;
            text-transform: uppercase;
            margin-bottom: 0.85rem;
        }

        .section-title {
            font-family: var(--hud);
            font-size: clamp(1.8rem, 4vw, 3rem);
            font-weight: 900;
            color: #fff;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            line-height: 1.1;
        }

        .section-title em {
            font-style: normal;
            color: var(--cyan);
            display: block;
            text-shadow: 0 0 30px rgba(0,240,255,0.4);
            margin-top: -0.18em;
        }

        .section-sub {
            margin-top: 0.85rem;
            font-family: 'Exo 2', sans-serif;
            font-size: 1rem;
            font-weight: 300;
            color: rgba(255,255,255,0.65);
            letter-spacing: 0.04em;
            line-height: 1.4;
            text-transform: none;
        }

        /* ── Pricing ── */
        .pricing-bg {
            background: var(--card-bg);
            border-top:    1px solid rgba(255,230,0,0.12);
            border-bottom: 1px solid rgba(255,230,0,0.12);
            position: relative;
            overflow: hidden;
        }

        .pricing-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,230,0,0.06), transparent);
            pointer-events: none;
        }

        /* Floating invaders in bg */
        .pricing-invader {
            position: absolute;
            opacity: 0.06;
            pointer-events: none;
        }

        .pricing-invader:nth-child(1) { top: 12%; right: 5%; transform: scale(8); }
        .pricing-invader:nth-child(2) { bottom: 10%; left: 4%; transform: scale(6); }
        .pricing-invader:nth-child(3) { top: 40%; right: 18%; transform: scale(4); }

        /* Fading horizontal lines — top-right of pricing section */
        .pricing-bg .container { position: relative; }

        .pricing-lines {
            position: absolute;
            top: 1.5rem;
            right: 0;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 7px;
            pointer-events: none;
        }

        .pricing-lines .freq-line {
            display: block;
            height: 3px;
            border-radius: 2px;
        }

        @media (max-width: 820px) { .pricing-lines { display: none; } }

        /* Invader strip across the top */
        .pricing-invader-row {
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 72px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 10' fill='%2300f0ff'%3E%3Crect x='3' y='1' width='1' height='1'/%3E%3Crect x='9' y='1' width='1' height='1'/%3E%3Crect x='4' y='2' width='1' height='1'/%3E%3Crect x='8' y='2' width='1' height='1'/%3E%3Crect x='3' y='3' width='7' height='1'/%3E%3Crect x='2' y='4' width='2' height='1'/%3E%3Crect x='5' y='4' width='3' height='1'/%3E%3Crect x='9' y='4' width='2' height='1'/%3E%3Crect x='1' y='5' width='11' height='1'/%3E%3Crect x='1' y='6' width='1' height='1'/%3E%3Crect x='3' y='6' width='7' height='1'/%3E%3Crect x='11' y='6' width='1' height='1'/%3E%3Crect x='1' y='7' width='1' height='1'/%3E%3Crect x='3' y='7' width='1' height='1'/%3E%3Crect x='9' y='7' width='1' height='1'/%3E%3Crect x='11' y='7' width='1' height='1'/%3E%3Crect x='4' y='8' width='2' height='1'/%3E%3Crect x='7' y='8' width='2' height='1'/%3E%3C/svg%3E");
            background-repeat: repeat-x;
            background-size: auto 48px;
            background-position: center 12px;
            opacity: 0.18;
            pointer-events: none;
        }

        .pricing-grid {
            display: flex;
            align-items: stretch;
            gap: 0;
            margin-top: 3rem;
        }

        .pricing-card {
            position: relative;
            flex: 1;
            z-index: 1;
            background: rgba(6,6,18,0.85);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 3px;
            padding: 2.5rem 1.75rem 2rem;
            margin: 1.5rem 0;
            text-align: center;
            overflow: visible;
            transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s, z-index 0s;
        }

        /* Neon top bar — color driven by --c set inline on each card */
        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: var(--c, var(--cyan));
            box-shadow: 0 0 14px var(--c, var(--cyan));
        }

        .pricing-card.featured {
            border-color: rgba(255,255,255,0.18);
            margin: 0;
            margin-inline: -1.5rem;
            z-index: 2;
            box-shadow: -12px 0 40px rgba(0,0,0,0.6), 12px 0 40px rgba(0,0,0,0.6);
        }

        .pricing-card.featured::before { height: 3px; }

        .pricing-card:hover {
            transform: translateY(-8px);
            z-index: 5;
            border-color: var(--c, var(--cyan));
            box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 28px color-mix(in srgb, var(--c, var(--cyan)) 30%, transparent);
        }

        /* Firework burst on hover */
        .pricing-card::after {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            width: 5px; height: 5px;
            margin: -2px 0 0 -2px;
            border-radius: 50%;
            pointer-events: none;
            opacity: 0;
            z-index: 10;
        }

        .pricing-grid .pricing-card:nth-child(1):hover::after { animation: fw-magenta 0.85s ease-out forwards; }
        .pricing-grid .pricing-card:nth-child(2):hover::after { animation: fw-green   0.85s ease-out forwards; }
        .pricing-grid .pricing-card:nth-child(3):hover::after { animation: fw-yellow  0.85s ease-out forwards; }

        @keyframes fw-magenta {
            0%  { opacity: 1;
                  box-shadow: 0 0 0 3px #ff00cc, 0 0 0 3px #ff00cc, 0 0 0 3px #ff00cc, 0 0 0 3px #ff00cc,
                              0 0 0 3px #ff00cc, 0 0 0 3px #ff00cc, 0 0 0 3px #ff00cc, 0 0 0 3px #ff00cc,
                              0 0 0 2px #ff88ee, 0 0 0 2px #ff88ee, 0 0 0 2px #ff88ee, 0 0 0 2px #ff88ee,
                              0 0 0 2px #ff88ee, 0 0 0 2px #ff88ee, 0 0 0 2px #ff88ee, 0 0 0 2px #ff88ee; }
            80% { opacity: 0.85;
                  box-shadow:  70px 0px   0 3px #ff00cc,  49px  49px 0 3px #ff00cc,
                               0px  70px  0 3px #ff00cc, -49px  49px 0 3px #ff00cc,
                              -70px 0px   0 3px #ff00cc, -49px -49px 0 3px #ff00cc,
                               0px -70px  0 3px #ff00cc,  49px -49px 0 3px #ff00cc,
                               110px 0px  0 2px #ff88ee,  78px  78px 0 2px #ff88ee,
                               0px  110px 0 2px #ff88ee, -78px  78px 0 2px #ff88ee,
                              -110px 0px  0 2px #ff88ee, -78px -78px 0 2px #ff88ee,
                               0px -110px 0 2px #ff88ee,  78px -78px 0 2px #ff88ee; }
            100% { opacity: 0;
                   box-shadow:  90px 0px   0 3px #ff00cc,  64px  64px 0 3px #ff00cc,
                                0px  90px  0 3px #ff00cc, -64px  64px 0 3px #ff00cc,
                               -90px 0px   0 3px #ff00cc, -64px -64px 0 3px #ff00cc,
                                0px -90px  0 3px #ff00cc,  64px -64px 0 3px #ff00cc,
                                140px 0px  0 2px #ff88ee,  99px  99px 0 2px #ff88ee,
                                0px  140px 0 2px #ff88ee, -99px  99px 0 2px #ff88ee,
                               -140px 0px  0 2px #ff88ee, -99px -99px 0 2px #ff88ee,
                                0px -140px 0 2px #ff88ee,  99px -99px 0 2px #ff88ee; } }

        @keyframes fw-yellow {
            0%  { opacity: 1;
                  box-shadow: 0 0 0 3px #ffe600, 0 0 0 3px #ffe600, 0 0 0 3px #ffe600, 0 0 0 3px #ffe600,
                              0 0 0 3px #ffe600, 0 0 0 3px #ffe600, 0 0 0 3px #ffe600, 0 0 0 3px #ffe600,
                              0 0 0 2px #fff188, 0 0 0 2px #fff188, 0 0 0 2px #fff188, 0 0 0 2px #fff188,
                              0 0 0 2px #fff188, 0 0 0 2px #fff188, 0 0 0 2px #fff188, 0 0 0 2px #fff188; }
            80% { opacity: 0.85;
                  box-shadow:  70px 0px   0 3px #ffe600,  49px  49px 0 3px #ffe600,
                               0px  70px  0 3px #ffe600, -49px  49px 0 3px #ffe600,
                              -70px 0px   0 3px #ffe600, -49px -49px 0 3px #ffe600,
                               0px -70px  0 3px #ffe600,  49px -49px 0 3px #ffe600,
                               110px 0px  0 2px #fff188,  78px  78px 0 2px #fff188,
                               0px  110px 0 2px #fff188, -78px  78px 0 2px #fff188,
                              -110px 0px  0 2px #fff188, -78px -78px 0 2px #fff188,
                               0px -110px 0 2px #fff188,  78px -78px 0 2px #fff188; }
            100% { opacity: 0;
                   box-shadow:  90px 0px   0 3px #ffe600,  64px  64px 0 3px #ffe600,
                                0px  90px  0 3px #ffe600, -64px  64px 0 3px #ffe600,
                               -90px 0px   0 3px #ffe600, -64px -64px 0 3px #ffe600,
                                0px -90px  0 3px #ffe600,  64px -64px 0 3px #ffe600,
                                140px 0px  0 2px #fff188,  99px  99px 0 2px #fff188,
                                0px  140px 0 2px #fff188, -99px  99px 0 2px #fff188,
                               -140px 0px  0 2px #fff188, -99px -99px 0 2px #fff188,
                                0px -140px 0 2px #fff188,  99px -99px 0 2px #fff188; } }

        @keyframes fw-green {
            0%  { opacity: 1;
                  box-shadow: 0 0 0 3px #00ff88, 0 0 0 3px #00ff88, 0 0 0 3px #00ff88, 0 0 0 3px #00ff88,
                              0 0 0 3px #00ff88, 0 0 0 3px #00ff88, 0 0 0 3px #00ff88, 0 0 0 3px #00ff88,
                              0 0 0 2px #88ffcc, 0 0 0 2px #88ffcc, 0 0 0 2px #88ffcc, 0 0 0 2px #88ffcc,
                              0 0 0 2px #88ffcc, 0 0 0 2px #88ffcc, 0 0 0 2px #88ffcc, 0 0 0 2px #88ffcc; }
            80% { opacity: 0.85;
                  box-shadow:  70px 0px   0 3px #00ff88,  49px  49px 0 3px #00ff88,
                               0px  70px  0 3px #00ff88, -49px  49px 0 3px #00ff88,
                              -70px 0px   0 3px #00ff88, -49px -49px 0 3px #00ff88,
                               0px -70px  0 3px #00ff88,  49px -49px 0 3px #00ff88,
                               110px 0px  0 2px #88ffcc,  78px  78px 0 2px #88ffcc,
                               0px  110px 0 2px #88ffcc, -78px  78px 0 2px #88ffcc,
                              -110px 0px  0 2px #88ffcc, -78px -78px 0 2px #88ffcc,
                               0px -110px 0 2px #88ffcc,  78px -78px 0 2px #88ffcc; }
            100% { opacity: 0;
                   box-shadow:  90px 0px   0 3px #00ff88,  64px  64px 0 3px #00ff88,
                                0px  90px  0 3px #00ff88, -64px  64px 0 3px #00ff88,
                               -90px 0px   0 3px #00ff88, -64px -64px 0 3px #00ff88,
                                0px -90px  0 3px #00ff88,  64px -64px 0 3px #00ff88,
                                140px 0px  0 2px #88ffcc,  99px  99px 0 2px #88ffcc,
                                0px  140px 0 2px #88ffcc, -99px  99px 0 2px #88ffcc,
                               -140px 0px  0 2px #88ffcc, -99px -99px 0 2px #88ffcc,
                                0px -140px 0 2px #88ffcc,  99px -99px 0 2px #88ffcc; } }

        .pricing-badge {
            font-family: var(--pixel);
            font-size: 0.38rem;
            letter-spacing: 0.1em;
            display: block;
            margin-bottom: 1.25rem;
        }

        /* Centers label under the number only, not the $ sign */
        .price-block {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
        }

        .price {
            font-family: var(--hud);
            font-weight: 900;
            font-size: 4rem;
            color: var(--c, var(--cyan));
            line-height: 1;
            text-shadow: 0 0 20px var(--c, var(--cyan));
            display: inline-block;
            position: relative;
        }

        .price sup {
            font-size: 1.5rem;
            position: absolute;
            right: 100%;
            top: 0.6rem;
            margin-right: 0.1em;
        }

        .price-label {
            font-family: var(--hud);
            font-size: 0.88rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--c, var(--cyan));
            margin-top: 0.5rem;
            text-align: center;
        }

        .pricing-card:hover .price-desc { color: #fff; }

        .most-popular {
            display: inline-block;
            margin-top: 1.5rem;
            padding: 0.35rem 1rem;
            font-family: var(--hud);
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #00ff88;
            border: 1px solid rgba(0,255,136,0.6);
            background: rgba(0,255,136,0.06);
            box-shadow: 0 0 10px rgba(0,255,136,0.2), inset 0 0 8px rgba(0,255,136,0.06);
        }

        .price-desc {
            font-family: 'Exo 2', sans-serif;
            font-size: 0.95rem;
            font-weight: 300;
            letter-spacing: 0.04em;
            text-transform: none;
            color: rgba(255,255,255,0.65);
            transition: color 0.3s;
            line-height: 1.4;
            margin-top: 1rem;
        }

        .price-btn {
            display: inline-block;
            margin-top: 1.75rem;
            padding: 0.65rem 1.75rem;
            font-family: var(--hud);
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--c, var(--cyan));
            background: transparent;
            border: 1px solid var(--c, var(--cyan));
            border-radius: 0;
            transition: background 0.25s, box-shadow 0.25s;
        }

        .price-btn:hover {
            background: color-mix(in srgb, var(--c, var(--cyan)) 12%, transparent);
            box-shadow: 0 0 20px color-mix(in srgb, var(--c, var(--cyan)) 40%, transparent);
        }

        /* ── Features ── */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
            margin-top: 3rem;
        }

        .feature-card {
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
            padding: 1.75rem;
            background: var(--card-bg);
            border: 1px solid rgba(255,255,255,0.06);
            border-left: 3px solid var(--c, var(--cyan));
            border-radius: 3px;
            text-decoration: none;
            color: inherit;
            transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
        }

        .feature-card:hover {
            border-color: var(--c, var(--cyan));
            border-left-color: var(--c, var(--cyan));
            transform: translateY(-4px);
            box-shadow: 0 8px 32px color-mix(in srgb, var(--c, var(--cyan)) 15%, transparent);
            color: inherit;
        }

        .feature-icon {
            font-size: 2.25rem;
            flex-shrink: 0;
            line-height: 1;
            filter: drop-shadow(0 0 10px var(--c, var(--cyan)));
        }

        .feature-title {
            font-family: var(--hud);
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--c, #fff);
            margin-bottom: 0.5rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }

        .feature-desc {
            font-size: 0.7rem;
            font-weight: 400;
            color: var(--muted);
            letter-spacing: 0.1em;
            line-height: 1.9;
            text-transform: uppercase;
        }

        /* ── Hours Cards ── */
        .hours-cards-section {
            background: #000;
            padding: 0 0 1.5rem 0;
            overflow-x: hidden;
            overflow-y: visible;
        }

        .hours-eyebrow-wrap {
            text-align: center;
            margin-bottom: 1.25rem;
        }

        @keyframes marquee-scroll {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .marquee-track {
            display: flex;
            gap: 1.25rem;
            width: max-content;
            animation: marquee-scroll 28s linear infinite;
            padding-top: 22px;
        }

        .marquee-track:hover { animation-play-state: paused; }

        .hours-cards-grid { display: contents; }

        .hours-card {
            flex: 0 0 260px;
            background: color-mix(in srgb, var(--hc, var(--cyan)) 8%, #06060f);
            border: 1px solid color-mix(in srgb, var(--hc, var(--cyan)) 40%, transparent);
            border-left: 4px solid var(--hc, var(--cyan));
            position: relative;
            cursor: default;
            display: flex;
            align-items: center;
            gap: 1.25rem;
            padding: 1.1rem 1.5rem;
            box-shadow: inset 0 0 30px color-mix(in srgb, var(--hc, var(--cyan)) 5%, transparent);
            transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
        }

        .hours-card:hover {
            background: color-mix(in srgb, var(--hc, var(--cyan)) 14%, #06060f);
            box-shadow: 0 0 28px color-mix(in srgb, var(--hc, var(--cyan)) 25%, transparent),
                        inset 0 0 30px color-mix(in srgb, var(--hc, var(--cyan)) 8%, transparent);
        }

        .hours-card-badge {
            position: absolute;
            top: -1px; right: -1px;
            font-family: var(--hud);
            font-size: 0.42rem;
            font-weight: 900;
            letter-spacing: 0.15em;
            padding: 0.2em 0.6em;
            background: var(--hc, var(--cyan));
            color: #000;
            text-transform: uppercase;
        }

        .hours-card-abbr {
            font-family: var(--hud);
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--hc, var(--cyan));
            text-shadow: 0 0 20px var(--hc, var(--cyan));
            line-height: 1;
            letter-spacing: 0.05em;
            flex-shrink: 0;
            min-width: 3.5rem;
        }

        .hours-today-chevron {
            display: none;
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            filter: drop-shadow(0 0 6px var(--hc, var(--cyan)));
            pointer-events: none;
        }

        .hours-card.is-today .hours-today-chevron { display: block; }

        .hours-countdown {
            display: none;
            font-size: 0.7rem;
            padding: 0.3em 0.7em;
            letter-spacing: 0.08em;
        }

        .hours-card.is-today .hours-countdown { display: block; }

        .hours-card-body { display: none; }

        .hours-card-footer {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.2rem;
            flex: 1;
        }

        .hours-card-day {
            font-family: var(--hud);
            font-size: 0.55rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
        }

        .hours-card-time {
            font-family: 'Exo 2', sans-serif;
            font-size: 1rem;
            font-weight: 400;
            color: #fff;
            white-space: nowrap;
            text-transform: lowercase;
        }

        @media (max-width: 820px) {
            .hours-cards-grid { flex-direction: column; align-items: center; }
            .hours-card { flex: 0 0 auto; width: 100%; max-width: 320px; }
        }

        /* ── Party / Reservation Section ── */
        .party-section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(22,0,32,0.98) 0%, rgba(6,6,18,1) 60%);
            border-top: 1px solid rgba(255,0,204,0.2);
            border-bottom: 1px solid rgba(255,0,204,0.1);
        }

        .party-section::before {
            content: '';
            position: absolute;
            top: -20%; left: -10%;
            width: 60%; height: 140%;
            background: radial-gradient(ellipse at center, rgba(255,0,204,0.09) 0%, transparent 65%);
            pointer-events: none;
        }

        /* Wireframe boxes — intact and larger near the top, fragmenting into smaller, randomly-rotated squares toward the bottom */
        .party-fragments {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .frag-box {
            position: absolute;
            border: 1px solid #ff00cc;
        }

        .party-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .party-perks {
            list-style: none;
            margin: 2rem 0 2.5rem;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }

        .party-perk {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            font-family: var(--hud);
            font-size: 0.72rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.92);
        }

        .perk-dot {
            flex-shrink: 0;
            width: 8px; height: 8px;
            border-radius: 50%;
            background: var(--pc, var(--cyan));
            box-shadow: 0 0 10px var(--pc, var(--cyan)), 0 0 20px var(--pc, var(--cyan));
        }

        .party-cta-btn {
            display: inline-flex;
            align-items: center;
            font-family: var(--hud);
            font-size: 0.85rem;
            font-weight: 900;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            text-decoration: none;
            color: #ff00cc;
            border: 2px solid #ff00cc;
            padding: 1rem 2rem;
            position: relative;
            overflow: hidden;
            transition: color 0.3s, box-shadow 0.3s;
        }

        .party-cta-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: #ff00cc;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
            z-index: 0;
        }

        .party-cta-btn:hover::before { transform: scaleX(1); }
        .party-cta-btn:hover {
            color: #06060f;
            box-shadow: 0 0 30px rgba(255,0,204,0.5), 0 0 60px rgba(255,0,204,0.2);
        }

        .party-cta-btn > span { position: relative; z-index: 1; }
        .party-cta-bracket {
            font-size: 1.4rem;
            line-height: 1;
            font-weight: 300;
            opacity: 0.7;
        }

        .party-urgency {
            margin-top: 1.25rem;
            font-family: 'Exo 2', sans-serif;
            font-size: 1rem;
            font-weight: 300;
            letter-spacing: 0.04em;
            text-transform: none;
            line-height: 1.4;
            color: rgba(255,255,255,0.65);
        }

        /* Party Photo Gallery — collage (1 featured + 5 stacked thumbnails) */
        .party-gallery-collage {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 0.75rem;
            height: 460px;
        }

        .gallery-photo {
            position: relative;
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            border: 1px solid rgba(255,0,204,0.35);
            box-shadow: 0 0 20px rgba(255,0,204,0.08);
            transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
        }

        .gallery-photo.featured { grid-column: 1 / 3; grid-row: 1 / 3; }
        .gallery-photo:nth-of-type(2) { grid-column: 3; grid-row: 1; }
        .gallery-photo:nth-of-type(3) { grid-column: 3; grid-row: 2; }
        .gallery-photo:nth-of-type(4) { grid-column: 1; grid-row: 3; }
        .gallery-photo:nth-of-type(5) { grid-column: 2; grid-row: 3; }
        .gallery-photo:nth-of-type(6) { grid-column: 3; grid-row: 3; }

        /* Pulsing frame — sits as its own grid item over the featured photo, last in DOM so it paints on top */
        @keyframes frame-pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 0 20px rgba(255,0,204,0.1), 0 0 40px rgba(255,0,204,0.05);
            }
            50% {
                transform: scale(1.03);
                box-shadow: 0 0 35px rgba(255,0,204,0.22), 0 0 60px rgba(255,0,204,0.08);
            }
        }

        .featured-frame {
            position: relative;
            grid-column: 1 / 3;
            grid-row: 1 / 3;
            border: 1px solid rgba(255,0,204,0.45);
            border-radius: 4px;
            pointer-events: none;
            animation: frame-pulse 3.5s ease-in-out infinite;
        }

        .gallery-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: brightness(1);
            transition: transform 0.4s ease, filter 0.4s ease;
        }

        .gallery-photo:hover {
            border-color: #ff00cc;
            box-shadow: 0 0 28px rgba(255,0,204,0.3);
            transform: translateY(-2px);
        }

        .gallery-photo:hover img { transform: scale(1.06); filter: brightness(1); }

        .gallery-photo-hint {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(6,6,18,0.55);
            opacity: 0;
            font-family: var(--hud);
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #fff;
            transition: opacity 0.25s;
        }

        .gallery-photo:hover .gallery-photo-hint { opacity: 0; }

        .gallery-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #111d27;
            border: 1px solid rgba(0,240,255,0.3);
            color: rgba(0,240,255,0.8);
            font-family: var(--hud);
            font-size: 1.4rem;
            font-weight: 900;
            width: 46px; height: 46px;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            user-select: none;
            transition: background 0.15s, border-color 0.15s, color 0.15s;
            z-index: 21;
        }

        .gallery-arrow:hover { border-color: #00ff88; color: #00ff88; }
        .gallery-arrow.prev { left: 10px; }
        .gallery-arrow.next { right: 10px; }

        .event-corner {
            position: absolute;
            width: 14px; height: 14px;
            border-color: #ff00cc;
            border-style: solid;
            opacity: 0.55;
        }
        .event-corner.tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
        .event-corner.tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
        .event-corner.bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
        .event-corner.br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

        /* Party package buttons */
        .party-packages {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .pkg-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1.1rem 1.75rem;
            border: 1px solid rgba(255,0,204,0.4);
            background: rgba(255,0,204,0.05);
            text-decoration: none;
            color: inherit;
            border-radius: 2px;
            min-width: 130px;
            position: relative;
            transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
        }

        .pkg-time { transition: color 0.3s, text-shadow 0.3s; }
        .pkg-players { transition: color 0.3s; }

        .pkg-btn:hover {
            border-color: #00ff88;
            background: rgba(0,255,136,0.08);
            box-shadow: 0 0 28px rgba(0,255,136,0.25);
        }

        .pkg-btn:hover .pkg-time {
            color: #00ff88;
            text-shadow: 0 0 24px rgba(0,255,136,0.6);
        }

        .pkg-btn:hover .pkg-players {
            color: #00ff88;
        }

        .pkg-btn.pkg-featured {
            border-color: #ff00cc;
            background: rgba(255,0,204,0.1);
        }

        .pkg-btn.pkg-featured::before {
            content: 'POPULAR';
            position: absolute;
            top: -0.65rem;
            left: 50%;
            transform: translateX(-50%);
            font-family: var(--hud);
            font-size: 0.46rem;
            font-weight: 900;
            letter-spacing: 0.22em;
            background: #ff00cc;
            color: #06060f;
            padding: 0.15em 0.7em;
            white-space: nowrap;
        }

        .pkg-time {
            font-family: var(--hud);
            font-size: 1.65rem;
            font-weight: 900;
            color: #ff00cc;
            text-shadow: 0 0 20px rgba(255,0,204,0.5);
            letter-spacing: 0.05em;
            line-height: 1;
        }

        .pkg-featured .pkg-time { text-shadow: 0 0 30px rgba(255,0,204,0.7); }
        .pkg-btn.pkg-featured:hover .pkg-time { color: #00ff88; text-shadow: 0 0 30px rgba(0,255,136,0.7); }
        .pkg-btn.pkg-featured:hover { border-color: #00ff88; background: rgba(0,255,136,0.08); box-shadow: 0 0 28px rgba(0,255,136,0.25); }
        .pkg-btn.pkg-featured:hover::before { background: #00ff88; }

        .pkg-label {
            font-family: var(--hud);
            font-size: 0.56rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.45);
            margin: 0.35rem 0 0.45rem;
        }

        .pkg-players {
            font-family: var(--hud);
            font-size: 0.63rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.8);
        }

        /* Plain-text add-ons line — mobile only */
        .mobile-addons-text { display: none; }
        .party-info-mobile  { display: none; }

        /* Add-ons callout strip */
        .addons-callout {
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.35rem;
            flex-wrap: nowrap;
            margin-top: 1.5rem;
            padding: 0.85rem 0.85rem 0.8rem;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 4px;
            background: rgba(255,255,255,0.02);
            overflow: hidden;
        }

        /* Chips wrapper — centers within the space remaining after the label */
        .addons-items {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            flex: 1;
            min-width: 0;
            overflow: hidden;
            scrollbar-width: none;
        }

        /* Hide the scrollbar — this only ever engages as a safety net if the row can't fully fit */
        .addons-items::-webkit-scrollbar { display: none; }

        /* Neon top bar — runs through the site's full accent palette */
        .addons-callout::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, #ff00cc, #00f0ff, #ffe600, #00ff88, #cc44ff);
            opacity: 0.8;
        }

        .addons-label {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-family: var(--hud);
            font-size: 0.62rem;
            font-weight: 900;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #ffe600;
            text-shadow: 0 0 10px rgba(255,230,0,0.4);
            margin-right: 0.1rem;
            flex-shrink: 0;
            white-space: nowrap;
        }

        .addons-label-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 13px; height: 13px;
            border: 1px solid #ffe600;
            border-radius: 3px;
            font-size: 0.64rem;
            line-height: 1;
            box-shadow: 0 0 8px rgba(255,230,0,0.5);
            flex-shrink: 0;
        }

        /* Each add-on is its own neon-bordered chip, colored via --ac set inline */
        .addon-item {
            display: inline-flex;
            align-items: center;
            padding: 0.22rem 0.55rem;
            border: 1px solid color-mix(in srgb, var(--ac, var(--cyan)) 55%, transparent);
            border-radius: 999px;
            background: color-mix(in srgb, var(--ac, var(--cyan)) 12%, transparent);
            font-family: var(--hud);
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            color: var(--ac, var(--cyan));
            white-space: nowrap;
            flex-shrink: 0;
        }

        /* Add-on hover preview — a framed box with a bottom-center pointer, colored to match
           the hovered chip's --ac. Fixed-position; JS sets --ac/left/top per chip on hover. */
        .addon-tooltip { display: none !important; }

        .addon-tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 7px solid transparent;
            border-top-color: var(--ac, var(--cyan));
        }

        .addon-tooltip-icon {
            width: 38px;
            height: 38px;
            stroke: var(--ac, var(--cyan));
        }

        .addon-tooltip-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 6px;
            display: none;
        }

        .addons-link {
            font-family: var(--hud);
            font-size: 0.58rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #ffe600;
            text-decoration: none;
            margin-left: auto;
            transition: text-shadow 0.2s;
        }

        .addons-link:hover { text-shadow: 0 0 12px rgba(255,230,0,0.6); }

        @media (max-width: 820px) {
            .party-layout { grid-template-columns: 1fr; gap: 3rem; }
            .party-gallery-collage { max-width: 420px; }
            .games-layout { grid-template-columns: 1fr; gap: 2.5rem; }
            .location-layout { grid-template-columns: 1fr; gap: 2rem; }
        }

        /* ── Games ── */
        .games-section {
            background: linear-gradient(135deg, rgba(0,16,40,0.98) 0%, rgba(6,6,18,1) 60%);
            border-top: 1px solid rgba(0,170,255,0.15);
            border-bottom: 1px solid rgba(0,170,255,0.15);
            padding: 3rem 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .games-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,170,255,0.05), transparent);
            pointer-events: none;
        }

        /* 45deg diagonal line vectors anchored top-left, fading out across the section */
        .games-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: repeating-linear-gradient(45deg, rgba(0,170,255,0.18) 0px, rgba(0,170,255,0.18) 1px, transparent 1px, transparent 16px);
            mask-image: linear-gradient(135deg, rgba(0,0,0,1) 0%, transparent 60%);
            -webkit-mask-image: linear-gradient(135deg, rgba(0,0,0,1) 0%, transparent 60%);
            pointer-events: none;
        }

        /* Left copy / right scrolling board, like the party section's two-column layout */
        .games-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-areas: "copy board" "cta board";
            column-gap: 4rem;
            align-items: stretch;
        }

        .games-copy  { grid-area: copy; display: flex; flex-direction: column; }
        .games-board { grid-area: board; }
        .games-cta   { grid-area: cta; padding-top: 1.5rem; }

        /* ── Brand tags — below the games layout, colored to match the games board palette ── */
        .brand-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.65rem;
            margin-top: auto;
            padding-top: 2rem;
        }

        .brand-tag {
            --bc: #00f0ff; /* fallback; each tag overrides via inline style="--bc:#hex" */
            font-family: var(--hud);
            font-size: 0.6rem;
            letter-spacing: 0.14em;
            color: var(--bc);
            padding: 0.4rem 0.8rem;
            background: color-mix(in srgb, var(--bc) 8%, transparent);
            border: 1px solid color-mix(in srgb, var(--bc) 25%, transparent);
            border-left: 3px solid var(--bc);
            white-space: nowrap;
            transition: color 0.2s, background 0.2s, border-color 0.2s;
        }

        .brand-tag:hover {
            background: color-mix(in srgb, var(--bc) 15%, transparent);
            border-color: color-mix(in srgb, var(--bc) 55%, transparent);
            border-left-color: var(--bc);
            text-shadow: 0 0 12px var(--bc);
            cursor: default;
        }

        /* ── Brand tooltip ── */
        #brand-tooltip {
            position: fixed;
            z-index: 9500;
            display: none;
            pointer-events: none;
            min-width: 190px;
            max-width: 270px;
            background: rgba(4, 4, 18, 0.97);
            border: 1px solid var(--bt-color, #00f0ff);
            border-left: 3px solid var(--bt-color, #00f0ff);
            box-shadow: 0 0 32px color-mix(in srgb, var(--bt-color, #00f0ff) 28%, transparent),
                        0 12px 40px rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            transition: opacity 0.12s ease;
        }

        .bt-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem;
            padding: 0.5rem 0.75rem;
            border-bottom: 1px solid color-mix(in srgb, var(--bt-color, #00f0ff) 20%, transparent);
        }

        .bt-brand {
            font-family: var(--hud);
            font-size: 0.55rem;
            font-weight: 900;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--bt-color, #00f0ff);
            text-shadow: 0 0 10px var(--bt-color, #00f0ff);
        }

        .bt-count {
            font-family: var(--hud);
            font-size: 0.46rem;
            font-weight: 400;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.35);
            text-transform: uppercase;
            white-space: nowrap;
        }

        .bt-list {
            list-style: none;
            margin: 0;
            padding: 0.25rem 0;
        }

        .bt-item {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            padding: 0.3rem 0.75rem;
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }

        .bt-item:last-child { border-bottom: none; }

        .bt-dot {
            flex-shrink: 0;
            width: 6px;
            height: 6px;
            border-radius: 50%;
        }

        .bt-title {
            flex: 1;
            font-family: var(--hud);
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            color: rgba(255,255,255,0.9);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .bt-year {
            font-family: var(--hud);
            font-size: 0.48rem;
            font-weight: 400;
            letter-spacing: 0.08em;
            color: var(--bt-color, #00f0ff);
            opacity: 0.7;
            flex-shrink: 0;
        }

        .bt-more {
            font-family: var(--hud);
            font-size: 0.48rem;
            letter-spacing: 0.12em;
            color: rgba(255,255,255,0.3);
            text-align: center;
            padding: 0.3rem 0.75rem;
            text-transform: uppercase;
        }

        .bt-arrow {
            position: absolute;
            bottom: -8px;
            width: 0;
            height: 0;
            border-left: 7px solid transparent;
            border-right: 7px solid transparent;
            border-top: 8px solid var(--bt-color, #00f0ff);
        }

        /* Desktop: buttons sit directly below the copy text */
        .games-cta {
            grid-area: cta;
            align-self: start;
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        /* Vertical "high score table" board — no frame; rows fade to transparent at top/bottom */
        .games-board {
            height: 420px;
            overflow: hidden;
            -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
                    mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
        }

        .games-board-track {
            will-change: transform;
        }

        .score-row {
            display: grid;
            grid-template-columns: 1.75rem auto minmax(0, 1fr);
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.25rem;
            border-bottom: 1px dashed rgba(255,255,255,0.08);
            transition: background 0.2s, box-shadow 0.2s;
            cursor: pointer;
        }

        .score-row:hover {
            background: color-mix(in srgb, var(--gc, var(--cyan)) 12%, transparent);
            box-shadow: inset 0 0 20px color-mix(in srgb, var(--gc, var(--cyan)) 10%, transparent);
        }

        .score-rank {
            font-family: var(--hud);
            font-size: 0.8rem;
            font-weight: 700;
            color: rgba(255,255,255,0.3);
        }

        /* Title styled like the hours marquee's day abbreviations (.hours-card-abbr).
           --rb (row brightness) is set per-row in JS: brightest at 01, fading to 1 (normal) by the last entry. */
        .score-title {
            font-family: var(--hud);
            font-size: 1.1rem;
            font-weight: 900;
            color: var(--gc, var(--cyan));
            text-shadow: 0 0 calc(16px * var(--rb, 1)) var(--gc, var(--cyan)),
                         0 0 calc(32px * var(--rb, 1)) var(--gc, var(--cyan));
            letter-spacing: 0.03em;
            white-space: nowrap;
            overflow: hidden;
        }

        .score-meta,
        .score-status,
        .score-location {
            font-family: var(--hud);
            font-size: 0.55rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .score-meta     { color: rgba(255,255,255,0.5); }
        .score-status   { color: #00ff88; text-align: right; }
        .score-location { color: rgba(255,255,255,0.4); text-align: right; }

        /* ── Floor Gallery (arcade select screen) ── */
        .floor-gallery-section {
            position: relative;
            padding: 1rem 1.5rem;
            background: linear-gradient(135deg, rgba(20,0,40,0.98) 0%, rgba(6,6,18,1) 60%);
            border-top: 1px solid rgba(153,0,255,0.2);
            border-bottom: 1px solid rgba(153,0,255,0.1);
        }

        .arcade-select {
            position: relative;
        }

        /* Sits behind the track, outside the viewport's clipping box, so the centered
           tile's glow can bleed past the section's top/bottom edges instead of being cut
           off by .arcade-select-viewport's overflow-y:hidden. Sized to match the focused
           tile at rest (TILE_WIDTH/height * ACTIVE_SCALE in the script below). */
        .arcade-select-glow { display: none; }

        /* While a tile is in transit, nothing is actually centered behind the glow —
           hide it so it doesn't read as a static glowing box left hanging in place. */
        .arcade-select-glow.is-hidden {
            opacity: 0;
        }

        .arcade-select .gallery-arrow {
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease;
        }

        .arcade-select:hover .gallery-arrow {
            opacity: 1;
            pointer-events: auto;
        }

        /* No edge-fade overlay needed — scaleAll() already fades tile opacity
           at the edges, creating a natural soft falloff without a mask. */

        .arcade-select-viewport {
            display: flex;
            align-items: center;
            height: 480px;
            overflow: hidden; /* track moves via transform, no scroll needed */
        }

        .arcade-select-track {
            display: flex;
            gap: 20px;
            width: max-content;
        }

        .arcade-tile {
            position: relative;
            flex: 0 0 200px;
            height: 140px;
            border: 1px solid rgba(153,0,255,0.25);
            overflow: hidden;
            cursor: pointer;
            transform-origin: center center;
            transition: none;
        }

        /* .arcade-tile.active border/glow set by JS in scaleAll() */

        .arcade-tile img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ── Desktop gallery header (hidden on mobile) ── */
        .desktop-gallery-header { padding: 1rem 0 0.5rem; }
        .desktop-gallery-body   { display: grid; grid-template-columns: 1fr 1fr; column-gap: 4rem; align-items: start; }
        .desktop-gallery-desc   { text-align: left; margin-top: 0; }

        /* ── Mobile Gallery marquee (hidden on desktop) ── */
        .mobile-gallery-header { display: none; text-align: center; padding: 1rem 1.5rem 1rem; }
        .mobile-gallery {
            display: none;
            overflow: hidden;
            position: relative;
            transform: translate3d(0, 0, 0); /* own GPU layer so iOS clips animated child correctly */
        }

        /* Edge fades — pseudo-elements avoid the iOS mask+transform compositing bug */
        .mobile-gallery::before,
        .mobile-gallery::after {
            content: '';
            position: absolute;
            top: 0; bottom: 0;
            width: 7%;
            z-index: 1;
            pointer-events: none;
        }
        .mobile-gallery::before { left:  0; background: linear-gradient(to right, var(--bg), transparent); }
        .mobile-gallery::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }

        @keyframes mobile-gallery-scroll {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .mobile-gallery-track {
            display: flex;
            gap: 0.75rem;
            width: max-content;
            padding: 0.5rem 0;
            will-change: transform;
            transform: translate3d(0, 0, 0); /* prime GPU compositing; JS drives movement */
        }

        .mobile-gallery-tile {
            flex: 0 0 200px;
            height: 140px;
            background: rgba(153,0,255,0.08);
            border: 1px solid rgba(153,0,255,0.35);
            border-left: 4px solid rgba(153,0,255,0.85);
            box-shadow: inset 0 0 24px rgba(153,0,255,0.05);
            overflow: hidden;
        }

        .mobile-gallery-tile img {
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
            filter: brightness(0.9);
        }

        /* ── Location / Coordinates ── */
        .location-section {
            position: relative;
            overflow: hidden;
            padding: 5rem 1.5rem;
            background: linear-gradient(135deg, rgba(0,20,32,0.98) 0%, rgba(6,6,18,1) 60%);
            border-top: 1px solid rgba(0,240,255,0.15);
            border-bottom: 1px solid rgba(0,240,255,0.15);
        }

        /* Glowing dot that travels one of the real contour-line paths, fading out the same way the background graphic does */
        .location-motion-svg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            mask-image: linear-gradient(225deg, rgba(0,0,0,1) 0%, transparent 80%);
            -webkit-mask-image: linear-gradient(225deg, rgba(0,0,0,1) 0%, transparent 80%);
            pointer-events: none;
        }

        .location-motion-dot {
            fill: #00f0ff;
            filter: drop-shadow(0 0 14px #00f0ff) drop-shadow(0 0 28px #00f0ff);
            opacity: 1;
        }

        /* Topographic contour graphic is now rendered as an <image> inside .location-motion-svg
           so both the graphic and the animated dots share one coordinate system and can be
           shifted together with a single SVG transform — no CSS background-position math needed. */

        .location-intro {
            position: relative;
            max-width: 1080px;
            margin: 0 auto 3rem;
        }

        .location-layout {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            max-width: 1080px;
            margin: 0 auto;
        }

        .location-cards {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .location-card {
            border: 1px solid rgba(0,240,255,0.25);
            background: rgba(0,240,255,0.04);
            border-radius: 4px;
            padding: 1.5rem;
            box-shadow: inset 0 0 30px rgba(0,240,255,0.05);
        }

        .location-card-label {
            font-family: var(--hud);
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--cyan);
            margin-bottom: 0.75rem;
        }

        .location-address {
            font-family: var(--hud);
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.5;
            margin-bottom: 1.25rem;
        }

        .location-card-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .location-hours-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .location-hours-list li {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            font-family: 'Exo 2', sans-serif;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.85);
            padding-bottom: 0.6rem;
            border-bottom: 1px dashed rgba(255,255,255,0.08);
        }

        .location-hours-list li:last-child { border-bottom: none; padding-bottom: 0; }

        .location-hours-list li span:first-child:not(.hours-ampm) { font-family: var(--hud); color: rgba(255,255,255,0.5); text-transform: uppercase; }

        .hours-ampm { color: rgba(255,255,255,0.35); text-transform: lowercase; }

        .location-map {
            border: 1px solid rgba(0,240,255,0.25);
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 0 40px rgba(0,240,255,0.08);
            min-height: 360px;
        }

        .location-map iframe {
            width: 100%;
            height: 100%;
            min-height: 360px;
            border: 0;
            display: block;
        }

        .map-filter-blue {
            filter: grayscale(1) sepia(1) hue-rotate(180deg) saturate(4) brightness(0.55) contrast(1.4);
            transition: filter 0.4s ease;
        }

        .location-map:hover .map-filter-blue {
            filter: none;
        }

        /* ── CTA ── */
        .cta-section {
            text-align: center;
            padding: 5rem 1.5rem;
            border-top: 1px solid rgba(255,0,102,0.12);
            background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(255,0,102,0.07), transparent);
        }

        .cta-heading {
            font-family: var(--hud);
            font-size: clamp(1.8rem, 4vw, 3.2rem);
            font-weight: 900;
            color: #fff;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            line-height: 1.2;
            margin-bottom: 2.5rem;
        }

        .cta-heading span {
            display: block;
            color: var(--pink);
            text-shadow: 0 0 30px rgba(255,0,102,0.6);
        }

        .btn-neon {
            display: inline-block;
            padding: 0.9rem 2.5rem;
            font-family: var(--hud);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 0;
            transition: background 0.25s, box-shadow 0.25s;
        }

        .btn-neon.yellow {
            color: var(--bg);
            background: var(--yellow);
            border: 1px solid var(--yellow);
        }

        .btn-neon.yellow:hover {
            box-shadow: 0 0 30px rgba(255,230,0,0.5);
        }


        .btn-neon.outline {
            color: var(--cyan);
            border: 1px solid var(--cyan);
            background: transparent;
        }

        .btn-neon.outline:hover {
            background: rgba(0,240,255,0.08);
            box-shadow: 0 0 22px rgba(0,240,255,0.3);
            color: #fff;
        }

        .btn-neon.outline.blue {
            color: #00aaff;
            border-color: #00aaff;
            background: transparent;
        }

        .btn-neon.outline.blue:hover {
            background: rgba(0,170,255,0.08);
            box-shadow: 0 0 22px rgba(0,170,255,0.3);
            color: #fff;
        }

        .btn-neon.blue {
            color: #fff;
            background: #0066ff;
            border: 1px solid #0066ff;
        }

        .btn-neon.blue:hover {
            box-shadow: 0 0 28px rgba(0,102,255,0.55);
            background: #1a7aff;
        }

        /* ── Newsletter Band ── */
        .newsletter-band {
            max-width: 1080px;
            margin: 2.5rem auto 0;
            display: flex;
            align-items: center;
            gap: 1.75rem;
            background: color-mix(in srgb, #00ff88 6%, #06060f);
            border: 1px solid color-mix(in srgb, #00ff88 35%, transparent);
            border-left: 4px solid #00ff88;
            padding: 1.1rem 1.75rem;
            box-shadow: inset 0 0 30px color-mix(in srgb, #00ff88 4%, transparent);
        }

        .newsletter-abbr {
            font-family: var(--hud);
            font-size: 1.5rem;
            font-weight: 900;
            color: #00ff88;
            text-shadow: 0 0 20px #00ff88;
            letter-spacing: 0.05em;
            flex-shrink: 0;
            min-width: 3.5rem;
            line-height: 1;
        }

        .newsletter-meta {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
            flex: 1;
        }

        .newsletter-label {
            font-family: var(--hud);
            font-size: 0.55rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
        }

        .newsletter-tagline {
            font-family: 'Exo 2', sans-serif;
            font-size: 1rem;
            font-weight: 400;
            color: #fff;
            white-space: nowrap;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
            flex-shrink: 0;
        }

        .newsletter-input {
            font-family: 'Exo 2', sans-serif;
            font-size: 0.8rem;
            background: rgba(0,255,136,0.04);
            border: 1px solid rgba(0,255,136,0.28);
            color: #fff;
            padding: 0.55rem 1rem;
            width: 220px;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .newsletter-input::placeholder { color: rgba(255,255,255,0.25); }

        .newsletter-input:focus {
            border-color: #00ff88;
            box-shadow: 0 0 14px rgba(0,255,136,0.18);
        }

        .newsletter-btn {
            font-family: var(--hud);
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            background: transparent;
            border: 1px solid #00ff88;
            color: #00ff88;
            padding: 0.55rem 1.25rem;
            cursor: pointer;
            white-space: nowrap;
            transition: background 0.2s, box-shadow 0.2s, color 0.2s;
        }

        .newsletter-btn:hover {
            background: rgba(0,255,136,0.1);
            box-shadow: 0 0 18px rgba(0,255,136,0.28);
            color: #fff;
        }

        @media (max-width: 820px) {
            .newsletter-band { flex-wrap: wrap; gap: 1rem; }
            .newsletter-tagline { white-space: normal; }
            .newsletter-form { width: 100%; }
            .newsletter-input { flex: 1; width: auto; }
        }

        /* ── Footer ── */
        footer {
            position: relative;
            z-index: 1;
            background: #000;
            padding: 1.625rem 1.5rem 2rem;
            border-top: 1px solid rgba(153,0,255,0.4);
            font-family: 'Exo 2', sans-serif;
            color: var(--muted);
        }

        .footer-col-logo {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes footer-logo-glow {
            0%, 100% { filter: drop-shadow(0 0 10px rgba(153,0,255,0.55)) drop-shadow(0 0 22px rgba(153,0,255,0.3)); }
            50%      { filter: drop-shadow(0 0 26px rgba(153,0,255,0.9)) drop-shadow(0 0 48px rgba(153,0,255,0.55)); }
        }

        .footer-logo-mark svg {
            width: 189px;
            height: 189px;
            display: block;
            animation: footer-logo-glow 2.5s ease-in-out infinite;
        }

        .footer-logo-mark .st0,
        .footer-logo-mark .st1,
        .footer-logo-mark .st2,
        .footer-logo-mark .st3 {
            fill: var(--purple);
        }

        .footer-grid {
            max-width: 1080px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            column-gap: 3rem;
            row-gap: 0;
            align-items: start;
        }

        .footer-col-contact { order: 1; align-self: start; }
        .footer-col-logo    { order: 2; align-self: center; }
        .footer-col-menu    { order: 3; align-self: center; }

        .footer-menu-cols {
            display: flex;
            justify-content: flex-end;
            align-items: flex-end;
            gap: 2.5rem;
        }

        .footer-menu {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 0.7rem;
            padding-left: 1.5rem;
            border-left: 2px solid var(--purple);
        }

        .footer-menu::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: -2px;
            width: 2px;
            box-shadow: 0 0 6px rgba(153,0,255,0.7);
            pointer-events: none;
        }

        .footer-menu a {
            position: relative;
            font-family: 'Exo 2', sans-serif;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--muted);
            text-decoration: none;
            padding: 0.3rem 1rem 0.3rem 0;
            transition: color 0.2s;
        }

        .footer-menu a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: -1.5rem;
            width: 0;
            border-bottom: 2px solid transparent;
            transition: width 0.25s ease, border-color 0.25s ease;
            pointer-events: none;
        }

        .footer-menu a:hover {
            color: var(--purple);
        }

        .footer-menu-legal a {
            text-transform: none;
        }

        .footer-menu a:hover::before {
            width: calc(100% + 1.5rem);
            border-color: var(--purple);
        }

        .footer-socials {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .footer-socials a {
            display: inline-flex;
            color: var(--muted);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-socials a:hover { color: var(--purple); }

        .footer-brand-mark {
            font-family: var(--hud);
            font-size: 1.1rem;
            font-weight: 900;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--purple);
            margin: 0 0 0.75rem;
        }

        .footer-col address {
            font-style: normal;
            font-size: 1rem;
            color: var(--muted);
            line-height: 1.4;
        }

        .footer-col address a {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            color: var(--purple);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-col address a:hover {
            color: #fff;
        }

        .footer-contact-icon {
            flex-shrink: 0;
        }

        .footer-copyright {
            display: block;
            margin-top: 1rem;
            font-size: 0.7rem;
            color: var(--muted);
        }

        /* Socials + copyright — sits under the contact column on desktop, very bottom on mobile */
        .footer-bottom {
            grid-column: 1;
            order: 4;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding-top: 0.375rem;
        }
        .footer-bottom .footer-socials { margin-top: 0; }
        .footer-bottom .footer-copyright { margin-top: 0; }

        /* ── Responsive ── */

        /* Tablet / narrow desktop */
        @media (max-width: 900px) {
            .pricing-grid  { flex-wrap: wrap; gap: 1rem; }
            .pricing-card.featured { margin: 0; margin-inline: 0; }
            .features-grid { grid-template-columns: 1fr 1fr; }
        }

        /* Nav collapse + mobile hero fixes */
        @media (max-width: 780px) {
            .nav-links       { display: none; }
            .top-nav         { padding: 0 1rem; }
            .nav-cta         { display: none; }
            .mobile-menu-btn { display: flex; }

            /* Use stable small viewport height so bottom elements
               aren't hidden by iOS browser toolbar */
            .hero { height: 100svh; }

            /* Push tagline well above the scroll arrows */
            .hero-content { padding-bottom: 22vh; }
            .hero-scroll  { bottom: 3.5rem; }

            /* ── Admission section ── */
            section.pricing-bg { padding-top: 2.5rem; }

            /* Center the heading block */
            .pricing-bg .section-eyebrow,
            .pricing-bg .section-title,
            .pricing-bg .section-sub { text-align: center; }

            /* Hide the decorative fading lines (don't fit mobile) */
            .pricing-lines { display: none; }

            /* Compact cards — less vertical padding, smaller type */
            .pricing-grid { margin-top: 1.5rem; }
            .pricing-card { padding: 1.25rem 1.25rem 1rem; }
            .price        { font-size: 3rem; }
            .price-desc   { font-size: 0.85rem; margin-top: 0.5rem; }
            .most-popular { margin-top: 0.75rem; }

            /* Reorder: $10 · $15 · $20 (All Day moves to bottom) */
            .pricing-grid .pricing-card:nth-child(1) { order: 1; }  /* $10 - 30 min */
            .pricing-grid .pricing-card:nth-child(2) { order: 3; }  /* $20 - All Day → bottom */
            .pricing-grid .pricing-card:nth-child(3) { order: 2; }  /* $15 - 1 Hour */

            /* ── Party section ── */
            section.party-section  { padding-top: 2.5rem; }

            /* Tighten gap, explicit order: copy on top, gallery at bottom */
            .party-layout          { gap: 2rem; }
            .party-copy            { order: 1; min-width: 0; overflow-wrap: break-word; }
            .party-gallery-collage { order: 2; max-width: 100%; height: 320px; }

            /* Center the eyebrow + title */
            .party-copy .section-eyebrow,
            .party-copy .section-title { text-align: center; }

            /* Center + enlarge the package buttons with more breathing room */
            .party-packages { justify-content: center; gap: 1.75rem; }
            .pkg-btn        { padding: 1.4rem 2.25rem; min-width: 150px; }
            .pkg-time       { font-size: 2rem; }

            /* Prevent any text overflowing the right edge */
            .party-perks   { min-width: 0; }
            .party-perk    { overflow-wrap: break-word; word-break: break-word; }
            .party-urgency { overflow-wrap: break-word; }

            /* ── Newsletter band ── */
            .newsletter-band { flex-direction: column; align-items: stretch; gap: 0.75rem; }
            .newsletter-form { width: 100%; flex-direction: column; }
            .newsletter-input { width: 100%; box-sizing: border-box; }
            .newsletter-btn   { width: 100%; }

            /* ── Gallery: swap arcade-select for simple CSS marquee ── */
            .arcade-select          { display: none; }
            .desktop-gallery-header { display: none; }
            .mobile-gallery-header  { display: block; }
            .mobile-gallery         { display: block; }
            .floor-gallery-section { padding-bottom: 2.8rem; }

            /* ── Location & Hours section ── */
            .location-section { padding-top: 2.5rem; }
            .location-intro .section-eyebrow,
            .location-intro .section-title { text-align: center; }
            .location-layout { grid-template-columns: 1fr; }
            .location-card-actions { justify-content: center; }
            .location-card > .btn-neon { display: block; text-align: center; }
            .location-hours-list li span:last-child { white-space: nowrap; flex-shrink: 0; }

            /* ── Games section ── */
            section.games-section { padding-top: 2.5rem; }
            .games-copy .section-eyebrow,
            .games-copy .section-title { text-align: center; }
            .brand-list { display: none; }

            /* Collapse to single column; reset areas or they enforce the 2-col structure */
            .games-layout { grid-template-columns: 1fr; grid-template-areas: none; gap: 1.5rem; }
            .games-copy  { grid-area: auto; order: 1; }
            .games-board { grid-area: auto; order: 2; }
            .games-cta   { grid-area: auto; order: 3; padding-top: 0; display: flex; justify-content: center; }
            .games-cta .btn-neon {
                text-align: center;
            }

            /* Add-ons → hide fancy callout; plain text line already in HTML above */
            .addons-callout    { display: none; }
            .addon-tooltip     { display: none; }
            /* The plain-text add-ons line is hidden on desktop, shown only on mobile */
            .party-info-desktop { display: none; }
            .party-info-mobile  { display: block; }
        }

        /* Game window on mobile — flex-center, scale canvas to fit */
        @media (max-width: 700px) {
            .game-overlay.open {
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 8px;
                box-sizing: border-box;
            }
            .game-window {
                position: static !important;
                top: auto !important;
                left: auto !important;
                transform: none !important;
                width: 100%;
                max-width: 640px;
            }
            #game-canvas { width: 100%; height: auto; touch-action: none; }

            /* Stack the game-info overlay's photo + details into a single column */
            .game-info-body { flex-direction: column; max-height: 75vh; }
            .game-info-photo { width: 100%; height: 140px; flex: 0 0 140px; }
        }

        /* General tablet */
        @media (max-width: 820px) {
            .hero-band-cell { font-size: clamp(0.5rem, 1.6vw, 0.9rem); padding: 0.7rem 0.8rem; }

            .pricing-grid  { flex-direction: column; max-width: 360px; margin-inline: auto; }
            .pricing-card  { margin: 0; }
            .features-grid { grid-template-columns: 1fr; }
            .footer-grid   { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
            .footer-menu   { align-items: flex-start; }
            .footer-menu-cols { justify-content: flex-start; }
            .footer-bottom { order: 99; grid-column: auto; justify-content: center; }
            .btn-neon.outline { margin-left: 0; margin-top: 0.75rem; }

            /* Wider pac-man on tablets */
            .pac-stage { width: 60vw; }

            /* Drop status/location columns from the score table on narrow screens */
            .score-row { grid-template-columns: 1.5rem auto minmax(0, 1fr); }
            .score-status, .score-location { display: none; }
        }

        /* Phone landscape / small tablet */
        @media (max-width: 600px) {
            .hero-logo { width: 46vw; top: 60px; }
            .hero-feature { height: calc(60px + 46vw + 32px); }
            .hero-band { display: none; }
            /* Sit pac-stage 2px above Insert Coin tagline (tagline bottom=22vh, text≈12px) */
            .pac-stage { width: 80vw; bottom: calc(22vh + 14px); }
            .hero-tagline { font-size: 0.55rem; }

            /* Centered vertically between logo bottom (60px+46vw) and pac-stage top (78vh-70px).
               Midpoint = 39vh+23vw-5px; subtract half button height (~22px). */
            .mobile-party-cta {
                display: block;
                top: calc(39vh + 23vw - 27px);
            }
        }

        /* Phone portrait */
        @media (max-width: 420px) {
            .hero-logo { width: 52vw; top: 56px; }
            .hero-feature { height: calc(56px + 52vw + 28px); }
            .pac-stage { width: 94vw; }
            .section-title { font-size: clamp(1.4rem, 7vw, 2rem); }

            /* Centered between logo bottom (56px+52vw) and pac-stage top (78vh-70px) */
            .mobile-party-cta { top: calc(39vh + 26vw - 29px); }
        }


        /* ── Space Game Overlay ── */
        .game-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 2000;
            background: rgba(4,4,16,0.7);
            backdrop-filter: blur(3px);
        }
        .game-overlay.open { display: block; }

        /* Floating window */
        .game-window {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transform-origin: center center;
            border: 1px solid rgba(0,240,255,0.5);
            box-shadow: 0 8px 60px rgba(0,0,0,0.8), 0 0 40px rgba(0,240,255,0.08);
            background: #070710;
            user-select: none;
        }

        /* Title bar */
        .game-titlebar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 34px;
            padding: 0 8px 0 12px;
            background: linear-gradient(90deg, rgba(0,240,255,0.12) 0%, rgba(0,240,255,0.04) 100%);
            border-bottom: 1px solid rgba(0,240,255,0.3);
            cursor: move;
        }

        .game-titlebar-left {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: var(--hud);
            font-size: 0.58rem;
            color: var(--cyan);
            letter-spacing: 0.14em;
        }

        .game-titlebar-icon {
            width: 14px; height: 14px;
            border: 1px solid var(--cyan);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px;
            padding: 2px;
        }
        .game-titlebar-icon span {
            background: var(--cyan);
            display: block;
        }

        .game-titlebar-controls {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .game-titlebar-counter {
            font-family: var(--hud);
            font-size: 0.58rem;
            color: var(--cyan);
            letter-spacing: 0.14em;
            margin-right: 4px;
        }

        .game-tb-btn {
            width: 22px; height: 22px;
            background: rgba(0,240,255,0.06);
            border: 1px solid rgba(0,240,255,0.3);
            color: rgba(0,240,255,0.8);
            font-size: 11px;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            line-height: 1;
            transition: background 0.15s, border-color 0.15s, color 0.15s;
        }
        .game-tb-btn:hover { background: rgba(0,240,255,0.15); border-color: var(--cyan); color: #fff; }
        .game-tb-btn.close:hover { background: rgba(255,0,102,0.3); border-color: var(--pink); color: var(--pink); }

        #game-canvas { display: block; }

        .game-statusbar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            height: 26px;
            background: rgba(0,240,255,0.04);
            border-top: 1px solid rgba(0,240,255,0.15);
            font-family: var(--hud);
            font-size: 0.45rem;
            color: rgba(0,240,255,0.4);
            letter-spacing: 0.1em;
        }

        /* ── Party Photo Overlay (reuses .game-overlay/.game-window chrome) ── */
        .photo-window { width: min(92vw, 880px); }

        .photo-stage {
            position: relative;
            background: #000;
        }

        .photo-img {
            width: 100%;
            max-height: 70vh;
            object-fit: contain;
            display: block;
            background: #000;
            transition: opacity 0.3s ease;
        }

        .photo-img.fading { opacity: 0; }

        /* ── Game Info Overlay (reuses .game-overlay/.game-window chrome) ── */
        .game-info-window { width: min(92vw, 760px); }

        .game-info-body {
            display: flex;
            gap: 1.5rem;
            padding: 1.25rem;
            max-height: 70vh;
            overflow-y: auto;
        }

        .game-info-photo {
            flex: 0 0 220px;
            height: 220px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            border: 1px dashed rgba(0,240,255,0.4);
            background: rgba(0,240,255,0.03);
            color: rgba(0,240,255,0.5);
        }

        .game-info-photo svg { width: 48px; height: 48px; }

        .game-info-photo span {
            font-family: var(--hud);
            font-size: 0.5rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            text-align: center;
        }

        .game-info-details {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }

        .game-info-game-title {
            font-family: var(--hud);
            font-size: 1.3rem;
            font-weight: 900;
            letter-spacing: 0.04em;
            color: var(--gc, var(--cyan));
            text-shadow: 0 0 18px var(--gc, var(--cyan)), 0 0 36px var(--gc, var(--cyan));
            margin-bottom: 0.6rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.12);
        }

        .game-info-row {
            display: flex;
            gap: 0.75rem;
            padding: 0.25rem 0;
            border-bottom: 1px dashed rgba(255,255,255,0.07);
            line-height: 1.3;
        }

        .game-info-label {
            flex: 0 0 7rem;
            font-family: var(--hud);
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--cyan);
            white-space: nowrap;
            padding-top: 0.15rem;
        }

        .game-info-value {
            font-family: 'Exo 2', sans-serif;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.9);
        }

        .game-info-description {
            font-family: 'Exo 2', sans-serif;
            font-size: 0.75rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.6);
            padding: 0.75rem 0;
            border-bottom: 1px dashed rgba(255,255,255,0.08);
        }

        .game-info-nav {
            display: flex;
            gap: 0.75rem;
            margin-top: auto;
            padding-top: 1rem;
        }

        .game-info-nav-btn {
            flex: 1;
            text-align: center;
            padding: 0.7rem 1rem;
            font-size: 0.62rem;
            cursor: pointer;
        }
    