
        :root {
            --bg-void: #030712;
            --bg-card: rgba(11, 17, 34, 0.78);
            --bg-card-hover: rgba(19, 29, 56, 0.88);
            --border-steel: rgba(255, 255, 255, 0.08);
            --border-highlight: rgba(0, 240, 255, 0.35);
            --neon-cyan: #00f0ff;
            --neon-amber: #f59e0b;
            --neon-rose: #f43f5e;
            --neon-purple: #8b5cf6;
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
            --text-dim: #64748b;
            --font-heading: 'Space Grotesk', -apple-system, sans-serif;
            --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html, body {
            background-color: var(--bg-void);
            color: var(--text-main);
            font-family: var(--font-body);
            overflow-x: hidden;
            max-width: 100vw;
            width: 100%;
            -webkit-font-smoothing: antialiased;
        }

        #coaster-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            pointer-events: none;
            z-index: 1;
            opacity: 0.85;
            transition: opacity 0.3s ease;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1.5rem;
            position: relative;
            z-index: 10;
        }

        /* ── High-Speed Telemetry Wire Ticker ── */
        .telemetry-strip {
            background: rgba(3, 7, 18, 0.85);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(12px);
            font-family: var(--font-mono);
            font-size: 0.75rem;
            padding: 0.45rem 0;
            position: relative;
            z-index: 20;
        }

        .telemetry-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }

        .ticker-left {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            overflow: hidden;
            white-space: nowrap;
        }

        .live-gforce-badge {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: #fff;
            padding: 0.18rem 0.55rem;
            border-radius: 9999px;
            font-weight: 800;
            font-size: 0.65rem;
            letter-spacing: 0.1em;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
            flex-shrink: 0;
        }

        .gforce-dot {
            width: 6px;
            height: 6px;
            background: #fff;
            border-radius: 50%;
            animation: pulse-dot 1.2s infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.6); opacity: 0.4; }
        }

        #telemetry-headline {
            color: var(--text-muted);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .telemetry-stats {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            color: var(--text-dim);
            font-weight: 700;
            flex-shrink: 0;
        }

        .stat-glow {
            color: var(--neon-cyan);
        }

        /* ── Top Navigation Bar ── */
        nav {
            padding: 1.1rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            gap: 1.25rem;
            position: relative;
            z-index: 20;
        }

        .brand-cluster {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            text-decoration: none;
            color: #fff;
        }

        .brand-logo-hex {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #4f46e5 0%, #00f0ff 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.25);
            flex-shrink: 0;
        }

        .brand-title-wrap {
            display: flex;
            flex-direction: column;
        }

        
        h1.brand-title {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #fff;
            margin: 0;
            line-height: 1.2;
        }
        .brand-title {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 900;
            letter-spacing: -0.02em;
            line-height: 1.1;
            background: linear-gradient(180deg, #ffffff 30%, #94a3b8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .brand-tagline {
            font-family: var(--font-mono);
            font-size: 0.65rem;
            color: var(--neon-cyan);
            letter-spacing: 0.12em;
            font-weight: 800;
            text-transform: uppercase;
        }

        .search-container {
            flex: 1;
            max-width: 440px;
            position: relative;
        }

        .search-container input {
            width: 100%;
            background: rgba(11, 17, 34, 0.7);
            border: 1px solid var(--border-steel);
            border-radius: 9999px;
            padding: 0.6rem 1rem 0.6rem 2.4rem;
            color: #fff;
            font-size: 0.85rem;
            font-family: var(--font-body);
            outline: none;
            transition: all 0.2s ease;
            backdrop-filter: blur(8px);
        }

        .search-container input:focus {
            border-color: var(--neon-cyan);
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.25);
            background: rgba(15, 23, 42, 0.9);
        }

        .search-icon {
            position: absolute;
            left: 0.85rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.85rem;
            color: var(--text-dim);
            pointer-events: none;
        }

        .nav-button-group {
            display: flex;
            align-items: center;
            gap: 0.65rem;
        }

        .btn-fb-glow {
            background: rgba(24, 119, 242, 0.18);
            border: 1px solid #1877f2;
            color: #fff;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 0.55rem 1rem;
            border-radius: 9999px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.45rem;
            transition: all 0.2s;
            box-shadow: 0 0 15px rgba(24, 119, 242, 0.2);
            white-space: nowrap;
            line-height: 1;
            text-align: center;
        }

        .btn-fb-glow:hover {
            background: #1877f2;
            transform: translateY(-1px);
            box-shadow: 0 0 20px rgba(24, 119, 242, 0.5);
        }

        .btn-sync-action {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-steel);
            color: var(--text-muted);
            padding: 0.55rem 0.9rem;
            border-radius: 9999px;
            font-size: 0.8rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            transition: all 0.2s;
        }

        .btn-sync-action:hover {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
        }

        .btn-vip-launch {
            background: linear-gradient(135deg, #f59e0b 0%, #f43f5e 100%);
            border: none;
            color: #fff;
            font-family: var(--font-body);
            font-size: 0.82rem;
            font-weight: 800;
            padding: 0.55rem 1.15rem;
            border-radius: 9999px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            box-shadow: 0 4px 18px rgba(245, 158, 11, 0.4);
            transition: all 0.2s;
        }

        .btn-vip-launch:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 24px rgba(245, 158, 11, 0.6);
        }

        /* ── Park Filters (Always-Visible Matrix on Desktop, Touch-Carousel on Mobile) ── */
        .park-track-container {
            padding: 0.75rem 0 0.25rem;
        }

        .park-track-scroll {
            display: flex;
            flex-wrap: wrap;
            gap: 0.55rem;
            align-items: center;
        }

        .park-switch-pill {
            background: rgba(11, 17, 34, 0.7);
            border: 1px solid var(--border-steel);
            color: var(--text-muted);
            padding: 0.4rem 0.85rem;
            border-radius: 9999px;
            font-size: 0.8rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            backdrop-filter: blur(8px);
        }

        .park-switch-pill:hover {
            color: #fff;
            border-color: var(--neon-cyan);
            transform: translateY(-1px);
        }

        .park-switch-pill.active {
            background: rgba(0, 240, 255, 0.15);
            border-color: var(--neon-cyan);
            color: var(--neon-cyan);
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
        }

        .pill-count-tag {
            background: rgba(0, 240, 255, 0.25);
            color: #fff;
            padding: 0.1rem 0.4rem;
            border-radius: 9999px;
            font-size: 0.7rem;
            font-family: var(--font-mono);
        }

        /* ── Category Switcher ── */
        .category-switcher-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 0.55rem;
            align-items: center;
            padding: 0.5rem 0 1.25rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .category-switch-btn {
            background: transparent;
            border: 1px solid transparent;
            color: var(--text-dim);
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 0.82rem;
            padding: 0.4rem 0.85rem;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.15s;
        }

        .category-switch-btn:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.05);
        }

        .category-switch-btn.active {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        /* ── Featured Hero Story Card ── */
        .hero-feature-card {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(11, 17, 34, 0.95) 100%);
            border: 1px solid rgba(0, 240, 255, 0.25);
            border-radius: 20px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            margin: 1.25rem 0 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 240, 255, 0.12);
            backdrop-filter: blur(12px);
        }

        
        
                .hero-image-box {
            position: relative;
            min-height: 340px !important;
            background-size: cover !important;
            background-position: center 20% !important;
            background-repeat: no-repeat !important;
            background-color: #0b1122 !important;
            transition: all 0.3s ease;
        }

        /* Subtle dark gradient overlay to blend into card */
        .hero-image-box::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent 65%, rgba(15, 23, 42, 0.95) 100%);
            pointer-events: none;
        }


        
                .hero-image-box {
            position: relative;
            min-height: 340px !important;
            background-size: cover !important;
            background-position: center 20% !important;
            background-repeat: no-repeat !important;
            background-color: #0b1122 !important;
            transition: all 0.3s ease;
        }

        /* Subtle dark gradient overlay to blend into card */
        .hero-image-box::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent 65%, rgba(15, 23, 42, 0.95) 100%);
            pointer-events: none;
        }


        .hero-content {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-badges-row {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 0.85rem;
            flex-wrap: wrap;
        }

        .badge-pill-park {
            background: rgba(0, 240, 255, 0.15);
            border: 1px solid var(--neon-cyan);
            color: var(--neon-cyan);
            font-family: var(--font-mono);
            font-size: 0.65rem;
            font-weight: 800;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            text-transform: uppercase;
        }

        .badge-pill-cat {
            background: rgba(244, 63, 94, 0.15);
            border: 1px solid var(--neon-rose);
            color: var(--neon-rose);
            font-family: var(--font-mono);
            font-size: 0.65rem;
            font-weight: 800;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            text-transform: uppercase;
        }

        .badge-pill-src {
            background: rgba(245, 158, 11, 0.15);
            border: 1px solid var(--neon-amber);
            color: var(--neon-amber);
            font-family: var(--font-mono);
            font-size: 0.65rem;
            font-weight: 800;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            text-transform: uppercase;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: 1.7rem;
            font-weight: 900;
            line-height: 1.25;
            color: #fff;
            margin-bottom: 0.75rem;
        }

        .hero-desc {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.6;
            margin-bottom: 1.25rem;
        }

        .hero-read-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            color: var(--neon-cyan);
            font-weight: 800;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.2s;
        }

        .hero-read-btn:hover {
            color: #fff;
            transform: translateX(4px);
        }

        /* ── Main Layout: Content Grid & Sidebar ── */
        .layout-grid {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 2.25rem;
            align-items: start;
        }

        .dispatch-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
            gap: 1.5rem;
            min-height: 900px;
            contain: layout;
        }

        .sidebar-column {
            min-height: 600px;
            contain: layout;
        }

        .fb-vip-pass {
            min-height: auto;
        }

        .cam-box {
            min-height: 280px;
            aspect-ratio: 16 / 9;
        }

        #view-cams {
            min-height: 600px;
            height: auto !important;
            overflow: visible !important;
        }

        #sov-cams-content {
            height: auto !important;
            overflow: visible !important;
            min-height: 400px;
        }

        .hero-feature-card {
            min-height: 420px;
            contain: layout;
        }

        .article-card {
            background: var(--bg-card);
            border: 1px solid var(--border-steel);
            border-radius: 18px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            backdrop-filter: blur(10px);
            text-decoration: none;
            color: inherit;
        }

        .article-card:hover {
            transform: translateY(-4px);
            border-color: var(--border-highlight);
            background: var(--bg-card-hover);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.15);
        }

        .card-thumbnail-box {
            position: relative;
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
            min-height: 240px;
            background-color: #0f172a;
            background-size: cover;
            background-position: top center;
            overflow: hidden;
        }

        .card-thumbnail-box::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: linear-gradient(180deg, transparent 0%, rgba(11, 17, 34, 0.95) 100%);
        }

        .card-body {
            padding: 1.25rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .card-badges {
            display: flex;
            gap: 0.4rem;
            margin-bottom: 0.65rem;
            flex-wrap: wrap;
        }

        .card-title {
            font-family: var(--font-heading);
            font-size: 1.05rem;
            font-weight: 800;
            line-height: 1.35;
            color: #fff;
            margin-bottom: 0.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-desc {
            color: var(--text-muted);
            font-size: 0.82rem;
            line-height: 1.5;
            margin-bottom: 1rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }

        .card-footer-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.75rem;
            color: var(--text-dim);
            font-family: var(--font-mono);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 0.75rem;
            margin-top: auto;
        }

        .btn-load-more {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-steel);
            color: #fff;
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 0.95rem;
            padding: 1rem 2rem;
            border-radius: 14px;
            width: 100%;
            margin-top: 2rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-load-more:hover {
            background: rgba(0, 240, 255, 0.15);
            border-color: var(--neon-cyan);
            color: var(--neon-cyan);
        }

        /* ── Sidebar Column & Widgets ── */
        .sidebar-column {
            display: flex;
            flex-direction: column;
            gap: 1.75rem;
        }

        .glass-widget {
            background: var(--bg-card);
            border: 1px solid var(--border-steel);
            border-radius: 18px;
            padding: 1.35rem;
            backdrop-filter: blur(10px);
        }

        /* Official Facebook VIP Pass Card */
        .fb-vip-pass {
            background: linear-gradient(135deg, rgba(24, 119, 242, 0.18) 0%, rgba(11, 17, 34, 0.9) 100%);
            border: 2px solid #1877f2;
            border-radius: 18px;
            padding: 1.35rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(24, 119, 242, 0.25);
        }

        .fb-card-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.85rem;
            gap: 0.75rem;
        }

        .fb-rider-badge {
            background: linear-gradient(135deg, #1877f2 0%, #0284c7 100%);
            color: #ffffff;
            font-family: var(--font-mono);
            font-size: 0.65rem;
            font-weight: 900;
            letter-spacing: 0.08em;
            padding: 0.25rem 0.65rem;
            border-radius: 9999px;
            box-shadow: 0 2px 8px rgba(24, 119, 242, 0.4);
            white-space: nowrap;
            flex-shrink: 0;
            border: 1px solid rgba(255, 255, 255, 0.25);
        }

        .fb-profile-row {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            margin-bottom: 0.85rem;
        }

        .fb-icon-box {
            width: 44px;
            height: 44px;
            background: #1877f2;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #fff;
            box-shadow: 0 0 15px rgba(24, 119, 242, 0.6);
        }

        .fb-title-text h4 {
            color: #fff;
            font-size: 1.05rem;
            font-weight: 800;
        }

        .fb-title-text span {
            color: #93c5fd;
            font-size: 0.72rem;
            font-family: var(--font-mono);
        }

        .fb-desc-text {
            color: var(--text-muted);
            font-size: 0.82rem;
            line-height: 1.5;
            margin-bottom: 1.1rem;
        }

        .btn-join-fb-card {
            display: block;
            text-align: center;
            background: #1877f2;
            color: #fff;
            font-weight: 800;
            font-size: 0.9rem;
            padding: 0.75rem;
            border-radius: 12px;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
            transition: all 0.2s;
        }

        .btn-join-fb-card:hover {
            background: #0d6efd;
            box-shadow: 0 6px 20px rgba(24, 119, 242, 0.6);
        }

        /* Live Deals & Speed Leaderboard */
        .widget-title {
            font-family: var(--font-heading);
            font-size: 1.05rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .deal-item {
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid var(--border-steel);
            border-radius: 12px;
            padding: 0.85rem 1rem;
            margin-bottom: 0.65rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .deal-name {
            font-size: 0.85rem;
            font-weight: 700;
            color: #fff;
        }

        .deal-sub {
            font-size: 0.72rem;
            color: var(--text-dim);
        }

        .deal-price {
            color: #34d399;
            font-family: var(--font-mono);
            font-weight: 800;
            font-size: 0.95rem;
        }

        .coaster-rank-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.65rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.85rem;
        }

        .rank-num {
            color: var(--neon-amber);
            font-family: var(--font-mono);
            font-weight: 800;
            margin-right: 0.5rem;
        }

        .rank-speed {
            color: var(--neon-cyan);
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 0.78rem;
        }

        /* ── Google AdSense Units ── */
        .ad-container-banner {
            background: rgba(11, 17, 34, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            padding: 1rem;
            margin: 1.5rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(12px);
        }

        .ad-badge-tag {
            font-size: 0.65rem;
            color: var(--text-dim);
            font-family: var(--font-mono);
            letter-spacing: 0.12em;
            margin-bottom: 0.5rem;
            display: block;
            text-transform: uppercase;
        }

        .ad-native-card {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(11, 17, 34, 0.85) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 18px;
            padding: 1.25rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 260px;
            text-align: center;
            backdrop-filter: blur(12px);
        }

        /* ── Modals Architecture ── */
        .vip-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(16px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease;
        }

        .vip-modal-overlay.open {
            opacity: 1;
            pointer-events: auto;
        }

        .vip-modal-dialog {
            background: #0b1122;
            border: 2px solid var(--neon-amber);
            border-radius: 24px;
            padding: 2rem;
            width: 480px;
            max-width: 90vw;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(245, 158, 11, 0.3);
            position: relative;
            transform: scale(0.95);
            transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .vip-modal-overlay.open .vip-modal-dialog {
            transform: scale(1);
        }

        .vip-modal-close {
            position: absolute;
            top: 1.25rem;
            right: 1.25rem;
            background: rgba(255, 255, 255, 0.08);
            border: none;
            color: #fff;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .vip-badge-pill {
            background: var(--neon-amber);
            color: #000;
            font-family: var(--font-mono);
            font-size: 0.65rem;
            font-weight: 800;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            letter-spacing: 0.1em;
            display: inline-block;
            margin-bottom: 0.75rem;
        }

        .vip-modal-title {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 900;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 0.4rem;
        }

        .vip-modal-sub {
            color: var(--text-muted);
            font-size: 0.85rem;
            line-height: 1.5;
            margin-bottom: 1.25rem;
        }

        .form-group {
            margin-bottom: 1rem;
            text-align: left;
        }

        .form-label {
            display: block;
            font-size: 0.72rem;
            font-family: var(--font-mono);
            color: var(--text-dim);
            margin-bottom: 0.4rem;
            text-transform: uppercase;
        }

        .form-input, .form-select {
            width: 100%;
            background: #030712;
            border: 1px solid var(--border-steel);
            border-radius: 12px;
            padding: 0.75rem 1rem;
            color: #fff;
            font-size: 0.9rem;
            outline: none;
            font-family: var(--font-body);
        }

        .form-input:focus, .form-select:focus {
            border-color: var(--neon-amber);
            box-shadow: 0 0 15px rgba(245, 158, 11, 0.25);
        }

        .btn-claim-vip {
            background: linear-gradient(135deg, #f59e0b 0%, #f43f5e 100%);
            border: none;
            color: #fff;
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 800;
            padding: 0.9rem;
            border-radius: 12px;
            width: 100%;
            cursor: pointer;
            margin-top: 0.5rem;
            box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
        }

        /* Digital VIP Fast Pass Card Generated View */
        .generated-ticket-card {
            background: linear-gradient(135deg, #0f172a 0%, #030712 100%);
            border: 2px solid var(--neon-amber);
            border-radius: 18px;
            padding: 1.5rem;
            margin: 1.25rem 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
        }

        .generated-ticket-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #00f0ff, #f59e0b, #f43f5e);
        }

        
        /* ── Footer ── */
        footer {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 3rem 0 2rem;
            color: var(--text-dim);
            font-size: 0.85rem;
            position: relative;
            z-index: 10;
        }

        .footer-grid-layout {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }

        @media (min-width: 1081px) {
            .footer-grid-5,
            .footer-grid-layout:has(> div:nth-child(5)) {
                grid-template-columns: 1.35fr 1fr 1fr 1fr 1fr !important;
                gap: 1.75rem !important;
            }
        }

        @media (max-width: 1080px) and (min-width: 641px) {
            .footer-grid-layout,
            .footer-grid-5,
            .footer-grid-layout:has(> div:nth-child(5)) {
                grid-template-columns: 1fr 1fr !important;
                gap: 2rem !important;
            }
            .footer-grid-layout > div:first-child,
            .footer-grid-5 > div:first-child,
            .footer-grid-layout:has(> div:nth-child(5)) > div:first-child {
                grid-column: 1 / -1 !important;
                max-width: 550px !important;
                margin-bottom: 0.5rem !important;
            }
        }

        @media (max-width: 640px) {
            footer {
                text-align: center !important;
            }
            .footer-grid-layout,
            .footer-grid-5,
            .footer-grid-layout:has(> div:nth-child(5)) {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
                text-align: center !important;
            }
            .footer-grid-layout > div,
            .footer-grid-5 > div,
            .footer-grid-layout:has(> div:nth-child(5)) > div {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
            }
            .footer-grid-layout > div > div:first-child,
            .footer-grid-5 > div > div:first-child,
            .footer-grid-layout:has(> div:nth-child(5)) > div > div:first-child {
                justify-content: center !important;
            }
            .footer-link-list {
                padding: 0 !important;
                margin: 0 !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
            }
            .footer-header {
                text-align: center !important;
            }
        }

        .footer-header {
                text-align: center !important;
            }
        }

        footer {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 3rem 0 2rem;
            color: var(--text-dim);
            font-size: 0.85rem;
            position: relative;
            z-index: 10;
        }

        .footer-grid-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2.5rem;
        }

        .footer-header {
            color: #f8fafc;
            font-size: 0.95rem;
            font-weight: 800;
            margin-bottom: 0.85rem;
            font-family: var(--font-heading);
        }

        .footer-link-list {
            list-style: none;
        }

        .footer-link-list li {
            margin-bottom: 0.45rem;
        }

        .footer-link-list a {
            color: var(--text-dim);
            text-decoration: none;
            transition: color 0.15s;
        }

        .footer-link-list a:hover {
            color: var(--neon-cyan);
        }

        /* ═════════════════════════════════════════════════════════════════
           TABLET & MOBILE NAVIGATION (iPad / iPhone / Android)
           ═════════════════════════════════════════════════════════════════ */
        @media (max-width: 1024px) {
            .container {
                padding: 0 1rem !important;
            }

            .telemetry-strip {
                padding: 0.35rem 0 !important;
                font-size: 0.7rem !important;
            }

            nav {
                padding: 0.65rem 0 0.5rem !important;
                display: grid !important;
                grid-template-columns: 1fr auto !important;
                grid-template-rows: auto auto !important;
                row-gap: 0.5rem !important;
                column-gap: 0.5rem !important;
            }

            .brand-cluster {
                grid-column: 1 / 2 !important;
                grid-row: 1 / 2 !important;
                gap: 0.5rem !important;
            }

            .brand-logo-hex {
                width: 38px !important;
                height: 38px !important;
                font-size: 1.2rem !important;
            }

            .brand-title {
                font-size: 1.1rem !important;
            }

            .brand-tagline {
                font-size: 0.62rem !important;
            }

            .nav-button-group {
                grid-column: 2 / 3 !important;
                grid-row: 1 / 2 !important;
                display: flex !important;
                align-items: center !important;
                justify-content: flex-end !important;
                gap: 0.4rem !important;
            }

            .home-park-control-bar {
                display: none !important;
            }

            .desktop-text {
                display: none !important;
            }

            .mobile-text {
                display: inline !important;
            }

            .btn-fb-glow {
                padding: 0.45rem 0.75rem !important;
                font-size: 0.74rem !important;
                display: inline-flex !important;
                align-items: center !important;
                justify-content: center !important;
                text-align: center !important;
                white-space: nowrap !important;
                line-height: 1 !important;
                height: 34px !important;
                box-sizing: border-box !important;
            }

            .btn-vip-launch {
                padding: 0.45rem 0.85rem !important;
                font-size: 0.74rem !important;
                display: inline-flex !important;
                align-items: center !important;
                justify-content: center !important;
                text-align: center !important;
                white-space: nowrap !important;
                line-height: 1 !important;
                height: 34px !important;
                box-sizing: border-box !important;
            }

            .btn-sync-action {
                display: none !important;
            }

            .search-container {
                grid-column: 1 / 3 !important;
                grid-row: 2 / 3 !important;
                max-width: 100% !important;
                width: 100% !important;
            }

            .search-container input {
                padding: 0.45rem 0.75rem 0.45rem 2.2rem !important;
                font-size: 0.8rem !important;
            }

            /* Single-Row Touch Carousels on Mobile */
            .park-track-container {
                margin: 0 -0.85rem !important;
                padding: 0.4rem 0.85rem !important;
                overflow: hidden !important;
            }

            .park-track-scroll {
                display: flex !important;
                flex-wrap: nowrap !important;
                overflow-x: auto !important;
                -webkit-overflow-scrolling: touch !important;
                scrollbar-width: none !important;
                gap: 0.45rem !important;
            }

            .park-track-scroll::-webkit-scrollbar {
                display: none;
            }

            .park-switch-pill {
                flex-shrink: 0 !important;
                font-size: 0.75rem !important;
                padding: 0.35rem 0.7rem !important;
            }

            .category-switcher-bar {
                display: flex !important;
                flex-wrap: nowrap !important;
                overflow-x: auto !important;
                -webkit-overflow-scrolling: touch !important;
                scrollbar-width: none !important;
                gap: 0.45rem !important;
                padding: 0.25rem 0 0.85rem !important;
                margin: 0 -0.85rem !important;
                padding-left: 0.85rem !important;
                padding-right: 0.85rem !important;
            }

            .category-switcher-bar::-webkit-scrollbar {
                display: none;
            }

            .category-switch-btn {
                flex-shrink: 0 !important;
                font-size: 0.75rem !important;
                padding: 0.35rem 0.7rem !important;
            }

            /* Hero Card & Grid */
            .hero-feature-card {
                grid-template-columns: 1fr !important;
                margin: 0.75rem 0 1.5rem !important;
            }

            
        
                .hero-image-box {
            position: relative;
            min-height: 340px !important;
            background-size: cover !important;
            background-position: center 20% !important;
            background-repeat: no-repeat !important;
            background-color: #0b1122 !important;
            transition: all 0.3s ease;
        }

        /* Subtle dark gradient overlay to blend into card */
        .hero-image-box::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent 65%, rgba(15, 23, 42, 0.95) 100%);
            pointer-events: none;
        }


        
                .hero-image-box {
            position: relative;
            min-height: 340px !important;
            background-size: cover !important;
            background-position: center 20% !important;
            background-repeat: no-repeat !important;
            background-color: #0b1122 !important;
            transition: all 0.3s ease;
        }

        /* Subtle dark gradient overlay to blend into card */
        .hero-image-box::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent 65%, rgba(15, 23, 42, 0.95) 100%);
            pointer-events: none;
        }


            .hero-content {
                padding: 1.15rem !important;
            }

            .hero-title {
                font-size: 1.15rem !important;
            }

            .layout-grid {
                grid-template-columns: 1fr !important;
                gap: 1.75rem !important;
            }

            .dispatch-grid {
                grid-template-columns: 1fr !important;
                gap: 1rem !important;
            }

            .card-thumbnail-box {
                height: auto !important;
                aspect-ratio: 16 / 9 !important;
                min-height: 220px !important;
            }

            .vip-modal-dialog {
                width: 92% !important;
                max-width: 92% !important;
                padding: 1.25rem !important;
                border-radius: 18px !important;
            }
        }
    
        .mobile-text {
            display: none;
        }

        @media (max-width: 768px) {
            .desktop-text {
                display: none !important;
            }
            .mobile-text {
                display: inline !important;
            }
            .btn-fb-glow {
                padding: 0.4rem 0.65rem !important;
                font-size: 0.72rem !important;
                height: 32px !important;
                display: inline-flex !important;
                align-items: center !important;
                justify-content: center !important;
                white-space: nowrap !important;
                line-height: 1 !important;
            }
            .btn-vip-launch {
                padding: 0.4rem 0.65rem !important;
                font-size: 0.72rem !important;
                height: 32px !important;
                display: inline-flex !important;
                align-items: center !important;
                justify-content: center !important;
                white-space: nowrap !important;
                line-height: 1 !important;
            }
        }

    
        @media (max-width: 768px) {
            .brand-cluster {
                display: flex !important;
                align-items: center !important;
                gap: 0.45rem !important;
                min-width: 0 !important;
            }

            .brand-logo-hex {
                width: 30px !important;
                height: 30px !important;
                font-size: 0.95rem !important;
                border-radius: 8px !important;
                box-shadow: 0 0 10px rgba(0, 240, 255, 0.3) !important;
                flex-shrink: 0 !important;
            }

            
        h1.brand-title {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #fff;
            margin: 0;
            line-height: 1.2;
        }
        .brand-title {
                font-size: 0.88rem !important;
                font-weight: 900 !important;
                white-space: nowrap !important;
                line-height: 1 !important;
                letter-spacing: -0.01em !important;
            }

            .brand-tagline {
                display: none !important; /* Conceal long subtitle on mobile to remove clutter */
            }

            .nav-button-group {
                gap: 0.3rem !important;
                flex-shrink: 0 !important;
            }

            .btn-fb-glow {
                padding: 0.35rem 0.6rem !important;
                font-size: 0.7rem !important;
                height: 30px !important;
            }

            .btn-vip-launch {
                padding: 0.35rem 0.65rem !important;
                font-size: 0.7rem !important;
                height: 30px !important;
            }
        }

    
        /* ═════════════════════════════════════════════════════════════════
           2-TIER STACKED BANNER MOBILE HEADER ARCHITECTURE
           ═════════════════════════════════════════════════════════════════ */
        @media (max-width: 768px) {
            nav {
                display: flex !important;
                flex-direction: column !important;
                align-items: stretch !important;
                gap: 0.75rem !important;
                padding: 0.75rem 0 0.5rem !important;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
            }

            /* TIER 1: Full-Width Brand Banner */
            .brand-cluster {
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                gap: 0.75rem !important;
                width: 100% !important;
                text-align: center !important;
                padding: 0.25rem 0 !important;
            }

            .brand-logo-hex {
                width: 42px !important;
                height: 42px !important;
                font-size: 1.35rem !important;
                border-radius: 12px !important;
                box-shadow: 0 0 20px rgba(0, 240, 255, 0.4) !important;
                flex-shrink: 0 !important;
            }

            .brand-title-wrap {
                display: flex !important;
                flex-direction: column !important;
                align-items: flex-start !important;
            }

            
        h1.brand-title {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #fff;
            margin: 0;
            line-height: 1.2;
        }
        .brand-title {
                font-size: 1.25rem !important;
                font-weight: 900 !important;
                letter-spacing: -0.02em !important;
                line-height: 1.1 !important;
                white-space: normal !important;
            }

            .brand-tagline {
                font-size: 0.65rem !important;
                letter-spacing: 0.12em !important;
                font-family: var(--font-mono) !important;
                color: var(--neon-cyan) !important;
                font-weight: 800 !important;
                margin-top: 0.15rem !important;
                display: block !important;
            }

            /* TIER 2: Dual Action Buttons Row */
            .nav-button-group {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 0.5rem !important;
                width: 100% !important;
            }

            .btn-fb-glow {
                width: 100% !important;
                padding: 0.6rem 0.5rem !important;
                font-size: 0.78rem !important;
                font-weight: 800 !important;
                border-radius: 12px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                text-align: center !important;
                box-shadow: 0 2px 10px rgba(24, 119, 242, 0.3) !important;
            }

            .btn-vip-launch {
                width: 100% !important;
                padding: 0.6rem 0.5rem !important;
                font-size: 0.78rem !important;
                font-weight: 800 !important;
                border-radius: 12px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                text-align: center !important;
                box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35) !important;
            }

            .btn-sync-action {
                display: none !important;
            }

            /* TIER 3: Full-Width Search Input */
            .search-container {
                width: 100% !important;
                max-width: 100% !important;
                height: 40px !important;
                margin: 0 !important;
            }

            .search-container input {
                width: 100% !important;
                height: 100% !important;
                padding: 0.5rem 0.75rem 0.5rem 2.3rem !important;
                font-size: 0.82rem !important;
                border-radius: 12px !important;
            }
        }

    
        /* ═════════════════════════════════════════════════════════════════
           STRICT MOBILE CONTAINER & CARD SYMMETRY ENFORCEMENT
           ═════════════════════════════════════════════════════════════════ */
        *, *::before, *::after {
            box-sizing: border-box !important;
        }

        .container {
            width: 100% !important;
            max-width: 1400px !important;
            margin: 0 auto !important;
            box-sizing: border-box !important;
        }

        .layout-grid {
            min-width: 0 !important;
        }

        .sidebar-column {
            min-width: 0 !important;
        }

        .fb-vip-pass {
            width: 100% !important;
            max-width: 100% !important;
            min-width: 0 !important;
            box-sizing: border-box !important;
        }

        .glass-widget {
            width: 100% !important;
            max-width: 100% !important;
            min-width: 0 !important;
            box-sizing: border-box !important;
        }

        .fb-card-top {
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            gap: 0.5rem !important;
            min-width: 0 !important;
            width: 100% !important;
        }

        .fb-profile-row {
            display: flex !important;
            align-items: center !important;
            gap: 0.65rem !important;
            min-width: 0 !important;
            flex: 1 !important;
        }

        .fb-title-text {
            min-width: 0 !important;
            flex: 1 !important;
        }

        .fb-title-text h4 {
            font-size: 0.95rem !important;
            font-weight: 800 !important;
            line-height: 1.2 !important;
            word-break: break-word !important;
        }

        .fb-title-text span {
            font-size: 0.68rem !important;
            display: block !important;
        }

        .fb-rider-badge {
            flex-shrink: 0 !important;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1rem !important;
            }

            .layout-grid {
                display: flex !important;
                flex-direction: column !important;
                width: 100% !important;
                max-width: 100% !important;
                gap: 1.5rem !important;
            }

            .sidebar-column {
                width: 100% !important;
                max-width: 100% !important;
                display: flex !important;
                flex-direction: column !important;
                gap: 1.25rem !important;
            }

            .fb-vip-pass {
                padding: 1.15rem !important;
            }

            .glass-widget {
                padding: 1.15rem !important;
            }
        }

        .ticker-item-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #d1d5db;
            text-decoration: none;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .ticker-item-link:hover {
            color: #00f0ff;
            text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
        }

        .ticker-park-tag {
            background: rgba(0, 240, 255, 0.12);
            color: #00f0ff;
            border: 1px solid rgba(0, 240, 255, 0.3);
            padding: 2px 7px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 0.68rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .ticker-indicator-green {
            color: #10b981;
            font-weight: 800;
            font-size: 0.75rem;
        }

        .ticker-divider {
            color: rgba(255, 255, 255, 0.2);
            margin-left: 1rem;
        }

    
        /* ── Seamless Hardware-Accelerated Infinite News Ticker ── */
        .breaking-ticker-bar {
            background: linear-gradient(90deg, #050b18 0%, #0c142b 50%, #050b18 100%);
            border-top: 1px solid rgba(0, 240, 255, 0.15);
            border-bottom: 1px solid rgba(0, 240, 255, 0.25);
            height: 38px;
            overflow: hidden;
            display: flex;
            align-items: center;
            position: relative;
            z-index: 100;
            font-family: var(--font-mono);
            font-size: 0.78rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        }

        .ticker-badge-lead {
            background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
            color: #fff;
            font-weight: 800;
            font-size: 0.72rem;
            letter-spacing: 0.08em;
            padding: 0 14px;
            height: 100%;
            display: flex;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
            z-index: 10;
            box-shadow: 4px 0 14px rgba(0, 0, 0, 0.8);
            text-transform: uppercase;
            border-right: 1px solid rgba(255, 255, 255, 0.2);
        }

        .ticker-badge-lead .pulse-live {
            width: 7px;
            height: 7px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 0 8px #fff;
            animation: pulseFlash 1.2s infinite;
        }

        @keyframes pulseFlash {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.3; transform: scale(0.7); }
        }

        .ticker-viewport {
            overflow: hidden;
            width: 100%;
            display: flex;
            position: relative;
            mask-image: linear-gradient(to right, transparent, black 25px, black 95%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 25px, black 95%, transparent);
        }

        .ticker-track {
            display: flex;
            width: max-content;
            will-change: transform;
            animation: smoothContinuousMarquee 100s linear infinite;
        }

        .ticker-group {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            padding-right: 2.5rem;
            flex-shrink: 0;
        }

        @keyframes smoothContinuousMarquee {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }

        .ticker-item-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #d1d5db;
            text-decoration: none;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .ticker-item-link:hover {
            color: #00f0ff;
            text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
        }

        .ticker-park-tag {
            background: rgba(0, 240, 255, 0.12);
            color: #00f0ff;
            border: 1px solid rgba(0, 240, 255, 0.3);
            padding: 2px 7px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 0.68rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .ticker-indicator-green {
            color: #10b981;
            font-weight: 800;
            font-size: 0.75rem;
        }

        .ticker-divider {
            color: rgba(255, 255, 255, 0.2);
            margin-left: 1rem;
        }

    
        /* ── Compact Streamlined Hero for Immediate Feed Visibility ── */
        .hero-spotlight-card {
            margin: 1.25rem 0 1.5rem 0 !important;
            border-radius: 16px !important;
        }
        
        
                .hero-image-box {
            position: relative;
            min-height: 340px !important;
            background-size: cover !important;
            background-position: center 20% !important;
            background-repeat: no-repeat !important;
            background-color: #0b1122 !important;
            transition: all 0.3s ease;
        }

        /* Subtle dark gradient overlay to blend into card */
        .hero-image-box::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent 65%, rgba(15, 23, 42, 0.95) 100%);
            pointer-events: none;
        }


        
                .hero-image-box {
            position: relative;
            min-height: 340px !important;
            background-size: cover !important;
            background-position: center 20% !important;
            background-repeat: no-repeat !important;
            background-color: #0b1122 !important;
            transition: all 0.3s ease;
        }

        /* Subtle dark gradient overlay to blend into card */
        .hero-image-box::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent 65%, rgba(15, 23, 42, 0.95) 100%);
            pointer-events: none;
        }

        .hero-content {
            padding: 1.25rem 1.5rem !important;
        }
        .hero-title {
            font-size: clamp(1.2rem, 2.2vw, 1.6rem) !important;
            margin-bottom: 0.5rem !important;
            line-height: 1.25 !important;
        }
        .hero-desc {
            font-size: 0.85rem !important;
            line-height: 1.45 !important;
            margin-bottom: 0.75rem !important;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .park-track-container {
            margin-top: 0.5rem !important;
            margin-bottom: 0.5rem !important;
        }
        .category-filter-bar {
            margin-bottom: 1.25rem !important;
        }

    
        @media (max-width: 1024px) {
            .hero-feature-card,
            #hero-card {
                display: grid !important;
                grid-template-columns: 1fr !important;
                margin: 1rem 0 1.5rem !important;
            }
            .hero-image-box {
                min-height: 240px !important;
            }
            .hero-content {
                padding: 1.35rem 1.15rem !important;
            }
            .hero-title {
                font-size: 1.25rem !important;
            }
        }

    
        /* ── 48+ Park Deals Matrix Styling ── */
        .deals-scroll-box::-webkit-scrollbar {
            width: 5px;
        }
        .deals-scroll-box::-webkit-scrollbar-track {
            background: rgba(15, 23, 42, 0.5);
            border-radius: 4px;
        }
        .deals-scroll-box::-webkit-scrollbar-thumb {
            background: rgba(0, 240, 255, 0.3);
            border-radius: 4px;
        }
        .deals-scroll-box::-webkit-scrollbar-thumb:hover {
            background: rgba(0, 240, 255, 0.6);
        }
        .deal-item {
            transition: all 0.2s ease;
        }
        .deal-item:hover {
            background: rgba(0, 240, 255, 0.08) !important;
            border-color: rgba(0, 240, 255, 0.4) !important;
            transform: translateX(3px);
        }

    
        /* ── Main View Mode Switcher ── */
        .view-mode-tabs {
            display: flex;
            gap: 0.75rem;
            margin: 1.5rem 0 1rem 0;
            overflow-x: auto;
            padding-bottom: 4px;
        }

        .view-mode-btn {
            background: rgba(15, 23, 42, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: var(--text-muted);
            padding: 0.65rem 1.25rem;
            border-radius: 12px;
            font-size: 0.88rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
            transition: all 0.2s ease;
        }

        .view-mode-btn:hover {
            border-color: var(--neon-cyan);
            color: #fff;
            background: rgba(0, 240, 255, 0.08);
        }

        .view-mode-btn.active {
            background: linear-gradient(135deg, rgba(0, 240, 255, 0.2) 0%, rgba(59, 130, 246, 0.3) 100%);
            border-color: var(--neon-cyan);
            color: #fff;
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.25);
        }

        /* ── Radar Queue Grid ── */

        .radar-status-closed {
            background: rgba(239, 68, 68, 0.15);
            color: #f87171;
            border: 1px solid rgba(239, 68, 68, 0.35);
        }
        .radar-card.is-closed {
            opacity: 0.85;
            background: rgba(11, 17, 34, 0.6);
            border-color: rgba(255, 255, 255, 0.05);
        }
        .radar-card.is-closed:hover {
            opacity: 1;
            border-color: rgba(239, 68, 68, 0.4);
        }

        .radar-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.25rem;
            margin-top: 1.5rem;
        }

        .radar-card {
            background: rgba(11, 17, 34, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 1.25rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.25s ease;
            position: relative;
            overflow: hidden;
        }

        .radar-card:hover {
            border-color: rgba(0, 240, 255, 0.4);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 240, 255, 0.1);
        }

        .radar-status-pill {
            font-family: var(--font-mono);
            font-size: 0.78rem;
            font-weight: 800;
            padding: 4px 10px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            letter-spacing: 0.05em;
        }

        .radar-status-open {
            background: rgba(16, 185, 129, 0.15);
            color: #34d399;
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .radar-status-moderate {
            background: rgba(245, 158, 11, 0.15);
            color: #fbbf24;
            border: 1px solid rgba(245, 158, 11, 0.3);
        }

        .radar-status-special {
            background: rgba(139, 92, 246, 0.15);
            color: #c084fc;
            border: 1px solid rgba(139, 92, 246, 0.3);
        }

        /* ── Passport Matrix ── */
        .passport-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 0.85rem;
            margin: 1.5rem 0;
        }

        .passport-item {
            background: rgba(15, 23, 42, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 0.85rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.85rem;
            cursor: pointer;
            transition: all 0.2s ease;
            user-select: none;
        }

        .passport-item:hover {
            border-color: rgba(0, 240, 255, 0.3);
            background: rgba(0, 240, 255, 0.05);
        }

        .passport-item.checked {
            background: rgba(16, 185, 129, 0.12);
            border-color: rgba(16, 185, 129, 0.4);
        }

        .passport-checkbox {
            width: 20px;
            height: 20px;
            accent-color: #00f0ff;
            cursor: pointer;
        }

        /* ── Verified Digital VIP Passport Badge Modal ── */
        .badge-modal-card {
            background: linear-gradient(135deg, #090e1a 0%, #111a33 50%, #090e1a 100%);
            border: 2px solid #f59e0b;
            border-radius: 24px;
            padding: 2.5rem 2rem;
            text-align: center;
            position: relative;
            box-shadow: 0 0 50px rgba(245, 158, 11, 0.25), 0 20px 60px rgba(0, 0, 0, 0.9);
            max-width: 480px;
            width: 90%;
            margin: 0 auto;
        }

    
        /* ── My Home Park Command Center ── */
        .home-park-strip {
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(59, 130, 246, 0.2) 100%);
            border: 1px solid rgba(0, 240, 255, 0.35);
            border-radius: 14px;
            padding: 0.75rem 1.25rem;
            margin: 0.75rem 0 1.25rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.75rem;
            box-shadow: 0 4px 20px rgba(0, 240, 255, 0.15);
        }

        .home-park-badge {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            font-size: 0.88rem;
            font-weight: 800;
            color: #fff;
        }

        .home-park-name-pill {
            background: rgba(0, 240, 255, 0.2);
            border: 1px solid var(--neon-cyan);
            color: var(--neon-cyan);
            padding: 3px 10px;
            border-radius: 8px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-family: var(--font-mono);
            font-size: 0.82rem;
        }

        /* ── Community Top 25 Leaderboard Widget ── */
        .ranked-coaster-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.6rem 0.75rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.8rem;
            transition: all 0.2s ease;
            border-radius: 8px;
        }

        .ranked-coaster-row:hover {
            background: rgba(0, 240, 255, 0.08);
            transform: translateX(3px);
        }

        .rank-num-badge {
            font-family: var(--font-mono);
            font-weight: 800;
            color: #f59e0b;
            width: 26px;
        }

        /* ── Coaster Rating Stars ── */
        .star-rating-box {
            display: flex;
            gap: 0.4rem;
            font-size: 1.6rem;
            cursor: pointer;
            justify-content: center;
            margin: 0.75rem 0;
        }

        .star-rating-box span {
            color: rgba(255, 255, 255, 0.2);
            transition: color 0.15s ease;
        }

        .star-rating-box span.active {
            color: #f59e0b;
            text-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
        }

    
        
        /* ── Unified View Mode Switcher (Desktop + iPhone) ── */
        .view-mode-tabs {
            display: flex;
            gap: 0.75rem;
            margin: 1.25rem 0 0.75rem 0;
        }

        .view-mode-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            background: rgba(15, 23, 42, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 12px;
            color: var(--text-muted);
            font-size: 0.88rem;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.25s ease;
            backdrop-filter: blur(10px);
        }

        .view-mode-btn:hover {
            border-color: rgba(0, 240, 255, 0.4);
            color: #fff;
            transform: translateY(-2px);
        }

        .view-mode-btn.active {
            background: linear-gradient(135deg, rgba(0, 240, 255, 0.2) 0%, rgba(59, 130, 246, 0.25) 100%);
            border-color: var(--neon-cyan);
            color: #fff;
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
        }

        .desktop-tab-label { display: inline; }
        .mobile-tab-label { display: none; }

        @media (max-width: 768px) {
            .view-mode-tabs {
                display: grid !important;
                grid-template-columns: 1fr 1fr 1fr !important;
                gap: 0.35rem !important;
                margin: 0.75rem 0 0.5rem 0 !important;
                padding: 0 !important;
                overflow-x: visible !important;
            }

            .view-mode-btn {
                padding: 0.55rem 0.2rem !important;
                font-size: 0.7rem !important;
                flex-direction: column !important;
                gap: 0.2rem !important;
                border-radius: 10px !important;
                white-space: normal !important;
                min-width: 0 !important;
                text-align: center !important;
                justify-content: center !important;
            }

            .desktop-tab-label { display: none !important; }
            .mobile-tab-label { display: inline-block !important; font-size: 0.72rem !important; font-weight: 700 !important; line-height: 1.1; }
        }

        /* ── Mobile iPhone Optimizations ── */
        @media (max-width: 768px) {
            #coaster-canvas {
                opacity: 0.75 !important; /* Vibrant, ultra-crisp coaster headlights & track visibility */
            }

            /* View mode switcher equal 3-column tabs */
            .view-mode-tabs {
                display: grid !important;
                grid-template-columns: 1fr 1fr 1fr !important;
                gap: 0.35rem !important;
                padding: 0 0.5rem !important;
            }

            .tab-btn {
                padding: 0.6rem 0.25rem !important;
                font-size: 0.72rem !important;
                justify-content: center !important;
                text-align: center !important;
                white-space: nowrap !important;
            }

            /* Mobile Home Park Strip */
            .home-park-strip {
                flex-direction: column !important;
                align-items: stretch !important;
                padding: 0.75rem 1rem !important;
                gap: 0.6rem !important;
            }

            

            /* Smooth touch scrolling */
            .park-track, .category-track, #community-leaderboard-list, .deal-list-container {
                -webkit-overflow-scrolling: touch !important;
                scroll-behavior: smooth !important;
            }

            /* Ticker mobile text */
            .ticker-item {
                font-size: 0.75rem !important;
            }
        }

    
        @media (max-width: 768px) {
            .desktop-tab-label { display: none !important; }
            .mobile-tab-label { display: inline !important; }
        }

    
        /* ── 4-Column Responsive Tabs ── */
        @media (max-width: 768px) {
            .view-mode-tabs {
                grid-template-columns: repeat(4, 1fr) !important;
                gap: 0.25rem !important;
            }
            .view-mode-btn {
                padding: 0.45rem 0.1rem !important;
                font-size: 0.65rem !important;
            }
            .mobile-tab-label {
                font-size: 0.68rem !important;
            }
        }

        /* ── Project Vault Styling ── */

        .proj-pill {
            background: rgba(15, 23, 42, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: var(--text-muted);
            padding: 6px 14px;
            border-radius: 9999px;
            font-size: 0.78rem;
            font-weight: 700;
            white-space: nowrap;
            flex-shrink: 0;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .proj-pill:hover {
            border-color: var(--neon-cyan);
            color: #fff;
        }

        .proj-pill.active {
            background: linear-gradient(135deg, rgba(0, 240, 255, 0.25) 0%, rgba(59, 130, 246, 0.3) 100%);
            border-color: var(--neon-cyan);
            color: #fff;
            box-shadow: 0 0 12px rgba(0, 240, 255, 0.3);
        }

        .project-card {
            background: rgba(15, 23, 42, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 1.25rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.25s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .project-card:hover {
            border-color: rgba(0, 240, 255, 0.4);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 240, 255, 0.12);
        }

        .progress-bar-track {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 9999px;
            height: 8px;
            width: 100%;
            overflow: hidden;
            margin: 0.6rem 0 0.85rem 0;
        }

        .progress-bar-fill {
            background: linear-gradient(90deg, #00f0ff 0%, #3b82f6 50%, #10b981 100%);
            height: 100%;
            border-radius: 9999px;
            box-shadow: 0 0 12px rgba(0, 240, 255, 0.5);
            transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .milestone-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2px 8px;
            border-radius: 6px;
            font-size: 0.68rem;
            color: #94a3b8;
            margin: 2px;
        }

        .milestone-chip.done {
            color: #34d399;
            border-color: rgba(52, 211, 153, 0.3);
            background: rgba(52, 211, 153, 0.08);
        }

        /* ── Radar Filter Chips ── */
        .radar-filter-bar {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            align-items: center;
            margin: 0.75rem 0 1.25rem 0;
            padding: 0.75rem 1rem;
            background: rgba(15, 23, 42, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
        }

    
        /* ── 5-Column Responsive Tab Bar ── */
        @media (max-width: 768px) {
            .view-mode-tabs {
                grid-template-columns: repeat(5, 1fr) !important;
                gap: 0.2rem !important;
            }
            .view-mode-btn {
                padding: 0.4rem 0.05rem !important;
                font-size: 0.6rem !important;
                border-radius: 8px !important;
            }
            .mobile-tab-label {
                font-size: 0.62rem !important;
            }
        }

        /* ── Trip Reports Styling ── */
        .report-card {
            background: rgba(15, 23, 42, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 18px;
            padding: 1.5rem;
            margin-bottom: 1.25rem;
            transition: all 0.25s ease;
            backdrop-filter: blur(12px);
        }

        .report-card:hover {
            border-color: rgba(0, 240, 255, 0.35);
            box-shadow: 0 8px 30px rgba(0, 240, 255, 0.1);
        }

        .crowd-pill {
            padding: 3px 10px;
            border-radius: 9999px;
            font-size: 0.72rem;
            font-weight: 800;
            font-family: var(--font-mono);
        }
        .crowd-light { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
        .crowd-mod { background: rgba(245, 158, 11, 0.15); color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.3); }
        .crowd-heavy { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }

        .like-btn {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
            padding: 4px 12px;
            border-radius: 8px;
            font-size: 0.78rem;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            transition: all 0.2s ease;
        }
        .like-btn:hover {
            background: rgba(244, 63, 94, 0.15);
            border-color: #f43f5e;
            color: #f43f5e;
        }

        /* ── Radar Spec Badges ── */
        .spec-badge {
            font-size: 0.68rem;
            font-family: var(--font-mono);
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2px 7px;
            border-radius: 6px;
            color: #cbd5e1;
        }
        .spec-badge.single-rider {
            background: rgba(0, 240, 255, 0.12);
            border-color: rgba(0, 240, 255, 0.35);
            color: var(--neon-cyan);
            font-weight: 700;
        }

    
        /* ── Grace Notes Ministries Sponsor Card ── */
        .sponsor-grace-card {
            background: linear-gradient(135deg, rgba(26, 18, 8, 0.94) 0%, rgba(13, 11, 7, 0.98) 50%, rgba(30, 20, 10, 0.96) 100%) !important;
            border: 1px solid rgba(245, 200, 66, 0.45) !important;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(245, 200, 66, 0.15) !important;
            position: relative;
            overflow: hidden;
            padding: 1.35rem !important;
            border-radius: 18px !important;
        }

        .sponsor-grace-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 80% 20%, rgba(245, 200, 66, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .grace-sponsor-badge {
            background: rgba(245, 200, 66, 0.15);
            color: #f5c842;
            border: 1px solid rgba(245, 200, 66, 0.35);
            padding: 3px 10px;
            border-radius: 9999px;
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            font-family: var(--font-mono);
        }

        .grace-logo-wrapper {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            background: rgba(245, 200, 66, 0.1);
            border: 1px solid rgba(245, 200, 66, 0.3);
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .btn-grace-visit {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: linear-gradient(135deg, #c9972a 0%, #e8a020 50%, #f5c842 100%);
            color: #0a0800 !important;
            font-weight: 900;
            font-size: 0.82rem;
            padding: 0.75rem 1.15rem;
            border-radius: 10px;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(245, 200, 66, 0.35);
            transition: all 0.25s ease;
        }

        .btn-grace-visit:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 28px rgba(245, 200, 66, 0.55);
            filter: brightness(1.08);
        }

    
        /* ── Unified Thrill Command & Filter Console ── */
        .unified-command-console {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.94) 0%, rgba(11, 17, 34, 0.98) 100%);
            border: 1px solid rgba(0, 240, 255, 0.3);
            border-radius: 18px;
            padding: 1.15rem 1.35rem 0.85rem;
            margin: 1.25rem 0 1.5rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 240, 255, 0.1);
            backdrop-filter: blur(16px);
        }

        .command-console-top {
            display: grid;
            grid-template-columns: 1.3fr 1.1fr auto;
            gap: 1rem;
            align-items: flex-end;
        }

        .command-group {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }

        .command-label {
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            color: var(--neon-cyan);
            font-family: var(--font-mono);
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }

        .custom-select-wrapper {
            position: relative;
            width: 100%;
        }

        .command-select {
            width: 100%;
            background: #090e1a;
            border: 1px solid rgba(0, 240, 255, 0.25);
            border-radius: 10px;
            padding: 0.65rem 0.85rem;
            color: #fff;
            font-size: 0.85rem;
            font-weight: 700;
            outline: none;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .command-select:hover, .command-select:focus {
            border-color: var(--neon-cyan);
            box-shadow: 0 0 12px rgba(0, 240, 255, 0.35);
        }

        .command-select optgroup {
            background: #0f172a;
            color: var(--neon-cyan);
            font-weight: 800;
        }

        .command-select option {
            background: #090e1a;
            color: #fff;
            padding: 6px;
        }

        .command-actions-group {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cmd-action-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.65rem 1rem;
            border-radius: 10px;
            font-size: 0.8rem;
            font-weight: 800;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.2s ease;
            border: none;
        }

        .cmd-action-btn.primary {
            background: linear-gradient(135deg, #00f0ff 0%, #3b82f6 100%);
            color: #000;
            box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
        }

        .cmd-action-btn.primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(0, 240, 255, 0.45);
        }

        .cmd-action-btn.secondary {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
        }

        .cmd-action-btn.secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--neon-cyan);
        }

        .cmd-gear-btn {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
            padding: 0.65rem 0.75rem;
            border-radius: 10px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.2s ease;
        }

        .cmd-gear-btn:hover {
            background: rgba(0, 240, 255, 0.15);
            border-color: var(--neon-cyan);
        }

        .command-subbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 0.75rem;
            padding-top: 0.65rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.75rem;
        }

        .telemetry-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .active-filter-pill {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.72rem;
            font-family: var(--font-mono);
            color: var(--text-dim);
            background: rgba(0, 0, 0, 0.3);
            padding: 2px 8px;
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        @media (max-width: 768px) {
            .command-console-top {
                grid-template-columns: 1fr 1fr !important;
                gap: 0.65rem !important;
            }
            .command-actions-group {
                grid-column: 1 / -1;
                width: 100%;
                display: grid;
                grid-template-columns: 1.25fr 1fr auto;
                gap: 0.4rem;
            }
            .cmd-action-btn {
                justify-content: center;
                padding: 0.55rem 0.5rem;
                font-size: 0.72rem;
            }
            .command-select {
                font-size: 0.78rem;
                padding: 0.55rem 0.45rem;
            }
        }

    
        /* ═════════════════════════════════════════════════════════════════
           ⚡ CENTERED THRILL COMMAND CONSOLE & BULLETPROOF MOBILE LAYOUT
           ═════════════════════════════════════════════════════════════════ */
        .unified-command-console {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.96) 0%, rgba(11, 17, 34, 0.98) 100%);
            border: 1px solid rgba(0, 240, 255, 0.35);
            border-radius: 20px;
            padding: 1.35rem 1.5rem 1.15rem;
            margin: 1.25rem auto 1.75rem auto;
            max-width: 100%;
            box-shadow: 0 10px 36px rgba(0, 0, 0, 0.65), 0 0 25px rgba(0, 240, 255, 0.12);
            backdrop-filter: blur(16px);
            text-align: center;
        }

        .command-console-top {
            display: grid;
            grid-template-columns: 1.25fr 1.25fr auto;
            gap: 1.15rem;
            align-items: flex-end;
            justify-items: center;
        }

        .command-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 100%;
            gap: 0.4rem;
        }

        .command-label {
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            color: var(--neon-cyan);
            font-family: var(--font-mono);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            text-align: center;
            width: 100%;
        }

        .custom-select-wrapper {
            position: relative;
            width: 100%;
        }

        .command-select {
            width: 100%;
            background: #090e1a;
            border: 1px solid rgba(0, 240, 255, 0.3);
            border-radius: 12px;
            padding: 0.7rem 0.85rem;
            color: #fff;
            font-size: 0.85rem;
            font-weight: 700;
            outline: none;
            cursor: pointer;
            text-align: center;
            text-align-last: center;
            transition: all 0.2s ease;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .command-select:hover, .command-select:focus {
            border-color: var(--neon-cyan);
            box-shadow: 0 0 14px rgba(0, 240, 255, 0.4);
        }

        .command-select optgroup {
            background: #0f172a;
            color: var(--neon-cyan);
            font-weight: 800;
            text-align: center;
        }

        .command-select option {
            background: #090e1a;
            color: #fff;
            padding: 6px;
            text-align: center;
        }

        .command-actions-group {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
        }

        .cmd-action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.45rem;
            padding: 0.68rem 1.1rem;
            border-radius: 12px;
            font-size: 0.82rem;
            font-weight: 800;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.2s ease;
            border: none;
            text-align: center;
        }

        .cmd-action-btn.primary {
            background: linear-gradient(135deg, #00f0ff 0%, #3b82f6 100%);
            color: #000;
            box-shadow: 0 4px 15px rgba(0, 240, 255, 0.35);
        }

        .cmd-action-btn.primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(0, 240, 255, 0.5);
        }

        .cmd-action-btn.secondary {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: #fff;
        }

        .cmd-action-btn.secondary:hover {
            background: rgba(255, 255, 255, 0.16);
            border-color: var(--neon-cyan);
        }

        .cmd-gear-btn {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: #fff;
            padding: 0.68rem 0.85rem;
            border-radius: 12px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .cmd-gear-btn:hover {
            background: rgba(0, 240, 255, 0.2);
            border-color: var(--neon-cyan);
        }

        .command-subbar {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 0.45rem;
            margin-top: 0.9rem;
            padding-top: 0.75rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.78rem;
            width: 100%;
        }

        .telemetry-item {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 0.45rem;
            flex-wrap: wrap;
            width: 100%;
        }

        .active-filter-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 0.4rem;
            font-size: 0.75rem;
            font-family: var(--font-mono);
            color: var(--text-dim);
            background: rgba(0, 0, 0, 0.4);
            padding: 3px 12px;
            border-radius: 8px;
            border: 1px solid rgba(0, 240, 255, 0.2);
            margin: 0 auto;
        }

        /* ── Mobile Layout Grid Stacking & Strict Responsiveness ── */
        @media (max-width: 900px) {
            .layout-grid {
                display: flex !important;
                flex-direction: column !important;
                width: 100% !important;
                max-width: 100% !important;
                gap: 2rem !important;
            }

            .content-column,
            .sidebar-column {
                width: 100% !important;
                max-width: 100% !important;
                min-width: 0 !important;
            }

            .dispatch-grid {
                display: grid !important;
                grid-template-columns: 1fr !important;
                gap: 1.25rem !important;
            }

            .command-console-top {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                width: 100% !important;
                gap: 0.9rem !important;
            }

            .command-actions-group {
                display: grid !important;
                grid-template-columns: 1fr 1fr auto !important;
                gap: 0.45rem !important;
                width: 100% !important;
            }

            .cmd-action-btn {
                padding: 0.6rem 0.5rem !important;
                font-size: 0.76rem !important;
                justify-content: center !important;
            }

            .command-select {
                font-size: 0.8rem !important;
                padding: 0.6rem 0.5rem !important;
            }

            .hero-feature-card,
            #hero-card {
                display: grid !important;
                grid-template-columns: 1fr !important;
                margin: 0.85rem 0 1.25rem !important;
            }
        }

    
        /* ═════════════════════════════════════════════════════════════════
           🪪 MASTER DIGITAL RIDER PASSPORT STYLING & SYMMETRY
           ═════════════════════════════════════════════════════════════════ */
        .passport-hero-card {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(11, 17, 34, 0.98) 100%);
            border: 1px solid rgba(245, 158, 11, 0.4);
            border-radius: 22px;
            padding: 2.25rem;
            margin-bottom: 2rem;
            box-shadow: 0 12px 45px rgba(0, 0, 0, 0.65), 0 0 35px rgba(245, 158, 11, 0.12);
            backdrop-filter: blur(16px);
        }

        .passport-header-flex {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 2rem;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding-bottom: 1.75rem;
        }

        .passport-title-block {
            display: flex;
            flex-direction: column;
            gap: 0.45rem;
        }

        .passport-badge-tag {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: #f59e0b;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }

        .passport-main-title {
            font-family: var(--font-display);
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 900;
            color: #fff;
            margin: 0;
            letter-spacing: -0.02em;
        }

        .passport-subtitle {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.5;
            margin: 0;
            max-width: 680px;
        }

        .passport-credits-box {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(9, 14, 26, 0.98) 100%);
            border: 2px solid #f59e0b;
            border-radius: 16px;
            padding: 1.25rem 2rem;
            text-align: center;
            min-width: 220px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(245, 158, 11, 0.15);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .passport-credits-label {
            font-size: 0.72rem;
            color: #94a3b8;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-family: var(--font-mono);
        }

        .passport-credits-num {
            font-family: var(--font-display);
            font-size: 2.8rem;
            font-weight: 900;
            color: #f59e0b;
            line-height: 1.05;
            margin: 0.2rem 0;
            text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
        }

        .passport-rank-badge {
            font-size: 0.78rem;
            font-weight: 800;
            color: #34d399;
            background: rgba(52, 211, 153, 0.12);
            border: 1px solid rgba(52, 211, 153, 0.3);
            padding: 3px 12px;
            border-radius: 20px;
            white-space: nowrap;
        }

        .passport-actions-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1.5rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .passport-toggle-btns {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .passport-btn-secondary {
            background: rgba(255, 255, 255, 0.06);
            color: #e2e8f0;
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 0.55rem 1.15rem;
            border-radius: 10px;
            font-size: 0.82rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .passport-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #f59e0b;
            color: #fff;
        }

        .passport-btn-claim {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: #000;
            font-weight: 900;
            font-size: 0.9rem;
            padding: 0.8rem 1.75rem;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.2s ease;
        }

        .passport-btn-claim:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(245, 158, 11, 0.6);
        }

        /* ── Passport Mobile Alignment ── */
        @media (max-width: 768px) {
            .passport-hero-card {
                padding: 1.35rem 1rem !important;
                border-radius: 18px !important;
                text-align: center !important;
            }

            .passport-header-flex {
                grid-template-columns: 1fr !important;
                text-align: center !important;
                gap: 1.25rem !important;
                padding-bottom: 1.25rem !important;
            }

            .passport-title-block {
                align-items: center !important;
                text-align: center !important;
            }

            .passport-subtitle {
                text-align: center !important;
                font-size: 0.84rem !important;
            }

            .passport-credits-box {
                width: 100% !important;
                min-width: 0 !important;
                padding: 1rem 1.25rem !important;
            }

            .passport-credits-num {
                font-size: 2.5rem !important;
            }

            .passport-actions-bar {
                flex-direction: column !important;
                align-items: stretch !important;
                gap: 0.75rem !important;
                margin-top: 1.15rem !important;
                margin-bottom: 1.15rem !important;
            }

            .passport-toggle-btns {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                width: 100% !important;
                gap: 0.5rem !important;
            }

            .passport-btn-secondary {
                width: 100% !important;
                text-align: center !important;
                padding: 0.65rem 0.5rem !important;
            }

            .passport-btn-claim {
                width: 100% !important;
                padding: 0.85rem 1rem !important;
                font-size: 0.86rem !important;
            }
        }

    
        /* ═════════════════════════════════════════════════════════════════
           ⚡ MASTER VIEW PANELS, TRIP REPORTS & PROJECT VAULT STYLING
           ═════════════════════════════════════════════════════════════════ */
        .view-panel-card {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(11, 17, 34, 0.98) 100%);
            border: 1px solid rgba(0, 240, 255, 0.3);
            border-radius: 22px;
            padding: 2.25rem;
            box-shadow: 0 12px 45px rgba(0, 0, 0, 0.65), 0 0 35px rgba(0, 240, 255, 0.08);
            backdrop-filter: blur(16px);
        }

        .view-panel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding-bottom: 1.75rem;
            margin-bottom: 1.5rem;
        }

        .view-panel-info {
            display: flex;
            flex-direction: column;
            gap: 0.45rem;
            max-width: 750px;
        }

        .view-panel-tag {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--neon-cyan);
            letter-spacing: 0.12em;
            text-transform: uppercase;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }

        .view-panel-title {
            font-family: var(--font-display);
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 900;
            color: #fff;
            margin: 0;
            letter-spacing: -0.02em;
        }

        .view-panel-desc {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.5;
            margin: 0;
        }

        .btn-post-report-hero {
            background: linear-gradient(135deg, #00f0ff 0%, #3b82f6 100%);
            color: #000;
            font-weight: 900;
            font-size: 0.9rem;
            padding: 0.85rem 1.65rem;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 20px rgba(0, 240, 255, 0.35);
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .btn-post-report-hero:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(0, 240, 255, 0.55);
        }

        .filter-pills-scroll-track {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            overflow-x: auto;
            padding-bottom: 0.85rem;
            margin-bottom: 1.75rem;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .filter-pills-scroll-track::-webkit-scrollbar {
            display: none;
        }

        .proj-pill {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #cbd5e1;
            padding: 0.55rem 1.15rem;
            border-radius: 10px;
            font-size: 0.82rem;
            font-weight: 700;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }

        .proj-pill:hover {
            background: rgba(0, 240, 255, 0.1);
            border-color: var(--neon-cyan);
            color: #fff;
        }

        .proj-pill.active {
            background: linear-gradient(135deg, rgba(0, 240, 255, 0.25) 0%, rgba(59, 130, 246, 0.35) 100%);
            border-color: var(--neon-cyan);
            color: #fff;
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
            font-weight: 800;
        }

        /* ── Trip Reports Feed ── */
        .trip-reports-feed-grid {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .report-card {
            background: rgba(11, 17, 34, 0.82);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 18px;
            padding: 1.65rem 1.85rem;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            backdrop-filter: blur(12px);
            position: relative;
            overflow: hidden;
        }

        .report-card:hover {
            border-color: rgba(0, 240, 255, 0.45);
            background: rgba(15, 23, 42, 0.92);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 240, 255, 0.12);
            transform: translateY(-2px);
        }

        .report-header-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 0.85rem;
            margin-bottom: 1rem;
        }

        .report-author-meta {
            display: flex;
            align-items: center;
            gap: 0.85rem;
        }

        .report-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, #00f0ff, #3b82f6);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            color: #000;
            font-size: 1.1rem;
            box-shadow: 0 2px 12px rgba(0, 240, 255, 0.35);
            flex-shrink: 0;
        }

        .report-author-name {
            font-weight: 800;
            color: #fff;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 0.45rem;
        }

        .report-park-name {
            font-size: 0.82rem;
            color: var(--neon-cyan);
            font-family: var(--font-mono);
            font-weight: 700;
        }

        .report-badges-group {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            flex-wrap: wrap;
        }

        .crowd-pill {
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.76rem;
            font-weight: 800;
            white-space: nowrap;
        }

        .crowd-pill.crowd-light { background: rgba(16, 185, 129, 0.15); border: 1px solid #10b981; color: #34d399; }
        .crowd-pill.crowd-mod { background: rgba(245, 158, 11, 0.15); border: 1px solid #f59e0b; color: #fbbf24; }
        .crowd-pill.crowd-heavy { background: rgba(239, 68, 68, 0.15); border: 1px solid #ef4444; color: #f87171; }

        .crowd-gauge-badge {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            font-weight: 800;
            background: rgba(139, 92, 246, 0.15);
            border: 1px solid rgba(139, 92, 246, 0.35);
            color: #c4b5fd;
            padding: 3px 10px;
            border-radius: 20px;
        }

        .report-rating-tag {
            color: #f59e0b;
            font-weight: 900;
            font-size: 0.9rem;
            background: rgba(245, 158, 11, 0.12);
            border: 1px solid rgba(245, 158, 11, 0.35);
            padding: 3px 10px;
            border-radius: 8px;
        }

        .report-story-title {
            font-size: 1.3rem;
            color: #fff;
            font-weight: 800;
            margin: 0.35rem 0 0.65rem 0;
            line-height: 1.35;
        }

        .report-story-content {
            font-size: 0.94rem;
            color: #cbd5e1;
            line-height: 1.65;
            margin-bottom: 1.25rem;
        }

        /* ── Report Rich Media: Photos, Waits & Tips ── */
        .report-photo-container {
            margin: 1rem 0 1.25rem 0;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.12);
            max-height: 380px;
            background: #000;
            cursor: pointer;
            position: relative;
        }

        .report-photo-img {
            width: 100%;
            height: 100%;
            max-height: 380px;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform 0.3s ease;
        }

        .report-photo-container:hover .report-photo-img {
            transform: scale(1.03);
        }

        .report-photo-tag {
            position: absolute;
            bottom: 10px;
            right: 12px;
            background: rgba(0, 0, 0, 0.75);
            color: #fff;
            font-size: 0.72rem;
            font-family: var(--font-mono);
            padding: 3px 8px;
            border-radius: 6px;
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .report-waits-callout {
            background: rgba(0, 240, 255, 0.05);
            border-left: 3px solid var(--neon-cyan);
            padding: 0.75rem 1rem;
            border-radius: 0 8px 8px 0;
            margin-bottom: 0.85rem;
            font-size: 0.85rem;
            color: #e2e8f0;
            font-family: var(--font-mono);
        }

        .report-tips-callout {
            background: rgba(245, 158, 11, 0.06);
            border-left: 3px solid #f59e0b;
            padding: 0.75rem 1rem;
            border-radius: 0 8px 8px 0;
            margin-bottom: 1.1rem;
            font-size: 0.88rem;
            color: #fef08a;
            line-height: 1.5;
        }

        .report-footer-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 0.95rem;
            flex-wrap: wrap;
            gap: 0.85rem;
        }

        .btn-like-report {
            background: rgba(239, 68, 68, 0.12);
            border: 1px solid rgba(239, 68, 68, 0.35);
            color: #fca5a5;
            padding: 0.45rem 0.95rem;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 800;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            transition: all 0.2s ease;
        }

        .btn-like-report:hover {
            background: rgba(239, 68, 68, 0.28);
            border-color: #ef4444;
            color: #fff;
            transform: scale(1.05);
        }

        /* ── Top Live Ride Times Marquee Ticker (Phase 5 - Ultra-Smooth GPU 60/120fps) ── */
        .live-queue-marquee-strip {
            background: #020617;
            border-bottom: 1px solid rgba(0, 240, 255, 0.25);
            overflow: hidden;
            white-space: nowrap;
            padding: 0.4rem 0;
            display: flex;
            align-items: center;
            font-family: var(--font-mono);
            font-size: 0.78rem;
            position: relative;
            z-index: 99;
            touch-action: pan-y;
            -webkit-user-select: none;
            user-select: none;
            contain: content;
        }

        .queue-marquee-label {
            background: linear-gradient(135deg, #00f0ff, #3b82f6);
            color: #000;
            font-weight: 900;
            padding: 0.25rem 0.75rem;
            margin-left: 1rem;
            margin-right: 0.75rem;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            flex-shrink: 0;
            position: relative;
            z-index: 10;
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
        }

        .queue-marquee-viewport {
            flex: 1;
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
            contain: paint;
        }

        /* Performant GPU gradient edge fades (Replaces expensive CPU mask-image) */
        .queue-marquee-viewport::before,
        .queue-marquee-viewport::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 32px;
            z-index: 5;
            pointer-events: none;
        }
        .queue-marquee-viewport::before {
            left: 0;
            background: linear-gradient(to right, #020617, rgba(2, 6, 23, 0));
        }
        .queue-marquee-viewport::after {
            right: 0;
            background: linear-gradient(to left, #020617, rgba(2, 6, 23, 0));
        }

        .queue-marquee-track {
            display: flex;
            align-items: center;
            width: max-content;
            flex-shrink: 0;
            will-change: transform;
            transform: translate3d(0, 0, 0);
            -webkit-transform: translate3d(0, 0, 0);
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            perspective: 1000px;
            -webkit-perspective: 1000px;
            animation: marqueeScrollSmooth 40s linear infinite;
        }

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

        .queue-marquee-content {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding-right: 1.5rem;
            flex-shrink: 0;
            white-space: nowrap;
        }

        @keyframes marqueeScrollSmooth {
            0% {
                transform: translate3d(0, 0, 0);
            }
            100% {
                transform: translate3d(-50%, 0, 0);
            }
        }

        .queue-item-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            color: #cbd5e1;
            padding: 3px 10px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.76rem;
        }

        .queue-dot-live {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
            flex-shrink: 0;
        }
        .queue-dot-live.dot-green { background: #10b981; box-shadow: 0 0 8px #10b981; }
        .queue-dot-live.dot-yellow { background: #f59e0b; box-shadow: 0 0 8px #f59e0b; }
        .queue-dot-live.dot-red { background: #ef4444; box-shadow: 0 0 8px #ef4444; }
        .queue-dot-live.dot-blue { background: #38bdf8; box-shadow: 0 0 8px #38bdf8; }

        
        .queue-dot-live.dot-closed { background: #64748b; box-shadow: 0 0 6px rgba(100, 116, 139, 0.6); }
        .queue-item-pill.closed-pill {
            background: rgba(15, 23, 42, 0.7);
            border-color: rgba(239, 68, 68, 0.25);
            color: #94a3b8;
        }
        .queue-item-pill .closed-tag {
            color: #ef4444;
            font-weight: 800;
            letter-spacing: 0.5px;
            text-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
        }
        .queue-item-pill .opens-tag {
            color: #64748b;
            font-size: 0.72rem;
        }
        .queue-item-pill .tier-tag {
            color: #64748b;
            font-size: 0.7rem;
            font-family: var(--font-mono);
        }

        /* ── Personalization & Home Park Controls (Phase 5) ── */
        .home-park-control-bar {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(11, 17, 34, 0.85);
            border: 1px solid rgba(0, 240, 255, 0.25);
            border-radius: 12px;
            padding: 0.5rem 0.85rem;
            margin-left: auto;
        }

        .home-park-select {
            background: #0f172a;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            font-size: 0.8rem;
            padding: 0.35rem 0.65rem;
            border-radius: 8px;
            font-weight: 700;
            outline: none;
            cursor: pointer;
        }

        .home-park-select:focus {
            border-color: var(--neon-cyan);
        }

        .btn-export-log {
            background: rgba(139, 92, 246, 0.15);
            border: 1px solid rgba(139, 92, 246, 0.4);
            color: #c4b5fd;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 0.45rem 0.9rem;
            border-radius: 8px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            transition: all 0.2s ease;
        }

        .btn-export-log:hover {
            background: rgba(139, 92, 246, 0.3);
            border-color: #a78bfa;
            color: #fff;
        }
            border-radius: 8px;
            font-size: 0.78rem;
            font-weight: 800;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            transition: all 0.2s ease;
        }

        .btn-like-report:hover {
            background: rgba(239, 68, 68, 0.25);
            border-color: #ef4444;
            color: #fff;
            transform: scale(1.05);
        }

        /* ── Vault Projects Grid ── */
        .vault-projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: 1.5rem;
        }

        .project-card {
            background: rgba(11, 17, 34, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.09);
            border-radius: 18px;
            padding: 1.65rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            backdrop-filter: blur(12px);
        }

        .project-card:hover {
            border-color: var(--neon-cyan);
            background: rgba(15, 23, 42, 0.9);
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 240, 255, 0.15);
        }

        .milestone-chip {
            display: inline-block;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #94a3b8;
            font-size: 0.7rem;
            font-family: var(--font-mono);
            padding: 3px 8px;
            border-radius: 6px;
            margin: 2px;
            transition: all 0.2s ease;
        }

        .milestone-chip.done {
            background: rgba(0, 240, 255, 0.1);
            border-color: rgba(0, 240, 255, 0.35);
            color: #38bdf8;
            font-weight: 700;
        }

        /* ── Mobile Responsive Overrides for Reports & Vault ── */
        @media (max-width: 768px) {
            .view-panel-card {
                padding: 1.35rem 1rem !important;
                border-radius: 18px !important;
            }

            .view-panel-header {
                flex-direction: column !important;
                align-items: stretch !important;
                gap: 1rem !important;
                text-align: center !important;
            }

            .view-panel-info {
                align-items: center !important;
                text-align: center !important;
            }

            .view-panel-title {
                text-align: center !important;
            }

            .view-panel-desc {
                text-align: center !important;
                font-size: 0.85rem !important;
            }

            .btn-post-report-hero {
                width: 100% !important;
                justify-content: center !important;
                padding: 0.85rem 1rem !important;
            }

            .vault-projects-grid {
                grid-template-columns: 1fr !important;
                gap: 1.25rem !important;
            }

            .report-card {
                padding: 1.25rem 1rem !important;
            }

            .report-header-row {
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 0.65rem !important;
            }

            .report-badges-group {
                width: 100% !important;
                justify-content: space-between !important;
            }

            .report-story-title {
                font-size: 1.12rem !important;
            }

            .report-story-content {
                font-size: 0.86rem !important;
            }
        }

    
        /* ═════════════════════════════════════════════════════════════════
           ✨ PERFECTED TRIP REPORTS & PROJECT VAULT SPACING & ALIGNMENT
           ═════════════════════════════════════════════════════════════════ */
        .view-panel-header {
            display: grid !important;
            grid-template-columns: 1fr auto !important;
            gap: 1.5rem !important;
            align-items: center !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
            padding-bottom: 1.75rem !important;
            margin-bottom: 1.5rem !important;
        }

        .view-panel-info {
            display: flex !important;
            flex-direction: column !important;
            gap: 0.45rem !important;
            max-width: 800px !important;
        }

        .milestones-container {
            display: flex !important;
            flex-wrap: wrap !important;
            gap: 4px !important;
            margin-bottom: 0.85rem !important;
        }

        .project-card {
            background: rgba(11, 17, 34, 0.85) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            border-radius: 18px !important;
            padding: 1.6rem !important;
            display: flex !important;
            flex-direction: column !important;
            justify-content: space-between !important;
            gap: 1rem !important;
            backdrop-filter: blur(12px) !important;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
        }

        .project-card:hover {
            border-color: var(--neon-cyan) !important;
            background: rgba(15, 23, 42, 0.95) !important;
            transform: translateY(-3px) !important;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 240, 255, 0.15) !important;
        }

        .project-action-btn {
            width: 100% !important;
            background: rgba(0, 240, 255, 0.08) !important;
            border: 1px solid rgba(0, 240, 255, 0.25) !important;
            color: #38bdf8 !important;
            padding: 0.6rem 1rem !important;
            border-radius: 10px !important;
            font-size: 0.78rem !important;
            font-weight: 700 !important;
            cursor: pointer !important;
            text-align: center !important;
            transition: all 0.2s ease !important;
        }

        .project-action-btn:hover {
            background: rgba(0, 240, 255, 0.18) !important;
            border-color: var(--neon-cyan) !important;
            color: #fff !important;
        }

        @media (max-width: 768px) {
            .view-panel-header {
                grid-template-columns: 1fr !important;
                text-align: center !important;
                gap: 1.25rem !important;
                padding-bottom: 1.25rem !important;
            }

            .view-panel-info {
                align-items: center !important;
                text-align: center !important;
            }

            .view-panel-tag {
                justify-content: center !important;
                text-align: center !important;
            }

            .view-panel-title {
                text-align: center !important;
            }

            .view-panel-desc {
                text-align: center !important;
            }

            .btn-post-report-hero {
                width: 100% !important;
                justify-content: center !important;
                padding: 0.85rem 1rem !important;
            }
        }

    
        /* ═════════════════════════════════════════════════════════════════
           🪪 MASTER DEEP PASSPORT HUD & TELEMETRY STYLING
           ═════════════════════════════════════════════════════════════════ */
        .passport-hud-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.15rem;
            margin-top: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .hud-card {
            background: rgba(11, 17, 34, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.09);
            border-radius: 16px;
            padding: 1.15rem 1.25rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            backdrop-filter: blur(10px);
            transition: all 0.2s ease;
        }

        .hud-card:hover {
            border-color: rgba(245, 158, 11, 0.4);
            background: rgba(15, 23, 42, 0.9);
            transform: translateY(-2px);
        }

        .hud-icon {
            font-size: 1.9rem;
            background: rgba(255, 255, 255, 0.04);
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            flex-shrink: 0;
        }

        .hud-info {
            display: flex;
            flex-direction: column;
            gap: 0.15rem;
            min-width: 0;
        }

        .hud-label {
            font-size: 0.68rem;
            color: #94a3b8;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            font-family: var(--font-mono);
        }

        .hud-value {
            font-family: var(--font-display);
            font-size: 1.55rem;
            font-weight: 900;
            color: #f59e0b;
            line-height: 1.1;
        }

        .hud-unit {
            font-size: 0.85rem;
            font-weight: 700;
            color: #cbd5e1;
        }

        .hud-sub {
            font-size: 0.72rem;
            color: var(--text-dim);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* ── Manufacturer Mastery Box ── */
        .passport-mastery-box {
            background: rgba(11, 17, 34, 0.65);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 1.25rem 1.5rem;
            margin-bottom: 1.5rem;
        }

        .mastery-title {
            font-size: 0.82rem;
            color: #cbd5e1;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            font-family: var(--font-mono);
            margin-bottom: 0.85rem;
        }

        .mastery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }

        .mastery-item {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .mastery-header {
            display: flex;
            justify-content: space-between;
            font-size: 0.74rem;
            color: #94a3b8;
            font-family: var(--font-mono);
            font-weight: 700;
        }

        .mastery-track {
            height: 6px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 9999px;
            overflow: hidden;
        }

        .mastery-bar {
            height: 100%;
            border-radius: 9999px;
            transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .mastery-bar.rmc { background: linear-gradient(90deg, #ef4444, #f59e0b); }
        .mastery-bar.bm { background: linear-gradient(90deg, #3b82f6, #00f0ff); }
        .mastery-bar.intamin { background: linear-gradient(90deg, #10b981, #34d399); }
        .mastery-bar.wood { background: linear-gradient(90deg, #f59e0b, #d97706); }

        /* ── Search & Filter Controls ── */
        .passport-search-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .passport-search-wrap {
            flex: 1;
            min-width: 280px;
            position: relative;
            display: flex;
            align-items: center;
        }

        .passport-search-wrap .search-icon {
            position: absolute;
            left: 1rem;
            font-size: 0.95rem;
            color: #94a3b8;
        }

        #passport-search-input {
            width: 100%;
            background: rgba(11, 17, 34, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #fff;
            padding: 0.75rem 1rem 0.75rem 2.5rem;
            border-radius: 12px;
            font-size: 0.88rem;
            outline: none;
            transition: all 0.2s ease;
        }

        #passport-search-input:focus {
            border-color: #f59e0b;
            box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
            background: rgba(15, 23, 42, 0.95);
        }

        .passport-quick-actions {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        /* ── Coaster Item Card ── */
        .passport-item {
            background: rgba(11, 17, 34, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            padding: 0.95rem 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.85rem;
            cursor: pointer;
            transition: all 0.2s ease;
            user-select: none;
        }

        .passport-item:hover {
            border-color: rgba(245, 158, 11, 0.4);
            background: rgba(15, 23, 42, 0.85);
            transform: translateY(-2px);
        }

        .passport-item.checked {
            background: rgba(245, 158, 11, 0.1);
            border-color: #f59e0b;
            box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
        }

        .passport-checkbox {
            width: 20px;
            height: 20px;
            accent-color: #f59e0b;
            cursor: pointer;
            flex-shrink: 0;
        }

        .coaster-badge-mfg {
            font-size: 0.68rem;
            font-family: var(--font-mono);
            font-weight: 800;
            padding: 1px 6px;
            border-radius: 4px;
            text-transform: uppercase;
        }

        .coaster-badge-mfg.RMC { background: rgba(239, 68, 68, 0.2); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.4); }
        .coaster-badge-mfg.B_M { background: rgba(59, 130, 246, 0.2); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.4); }
        .coaster-badge-mfg.Intamin { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.4); }
        .coaster-badge-mfg.Mack { background: rgba(168, 85, 247, 0.2); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.4); }
        .coaster-badge-mfg.Vekoma { background: rgba(245, 158, 11, 0.2); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.4); }
        .coaster-badge-mfg.Other { background: rgba(255, 255, 255, 0.1); color: #cbd5e1; border: 1px solid rgba(255, 255, 255, 0.2); }

        /* ── Mobile Overrides for HUD & Passport ── */
        @media (max-width: 900px) {
            .passport-hud-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 0.85rem !important;
            }

            .mastery-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 0.85rem !important;
            }
        }

        @media (max-width: 600px) {
            .passport-hud-grid {
                grid-template-columns: 1fr !important;
            }

            .mastery-grid {
                grid-template-columns: 1fr !important;
            }

            .passport-search-row {
                flex-direction: column !important;
                align-items: stretch !important;
            }

            .passport-quick-actions {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                width: 100% !important;
            }

            .passport-btn-claim {
                grid-column: 1 / -1 !important;
            }
        }

    
        /* ── On-Site Community Discussion & Social Layer ── */
        .card-social-toolbar {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
            padding-top: 0.85rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            flex-wrap: wrap;
        }

        .social-btn {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 0.4rem 0.7rem;
            color: #94a3b8;
            font-size: 0.76rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .social-btn:hover {
            background: rgba(0, 240, 255, 0.08);
            border-color: rgba(0, 240, 255, 0.3);
            color: #fff;
            transform: translateY(-1px);
        }

        .social-btn.hype-btn.active {
            background: rgba(239, 68, 68, 0.15);
            border-color: rgba(239, 68, 68, 0.4);
            color: #f87171;
        }

        .card-comments-drawer {
            margin-top: 0.85rem;
            background: #090e1a;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 0.85rem;
            box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5);
            animation: fadeInDrawer 0.2s ease;
        }

        @keyframes fadeInDrawer {
            from { opacity: 0; transform: translateY(-4px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .comments-drawer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.76rem;
            font-weight: 800;
            color: #00f0ff;
            margin-bottom: 0.75rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding-bottom: 0.4rem;
        }

        .comments-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            max-height: 220px;
            overflow-y: auto;
            margin-bottom: 0.75rem;
            padding-right: 0.25rem;
        }

        .comments-list::-webkit-scrollbar {
            width: 4px;
        }
        .comments-list::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
        }

        .comment-item {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 8px;
            padding: 0.5rem 0.7rem;
            border-left: 3px solid var(--neon-cyan);
        }

        .comment-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.25rem;
            font-size: 0.72rem;
        }

        .comment-author-tag {
            font-weight: 800;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .comment-time {
            color: var(--text-dim);
            font-family: var(--font-mono);
        }

        .comment-text {
            font-size: 0.8rem;
            color: #cbd5e1;
            line-height: 1.4;
            margin: 0;
            word-break: break-word;
        }

        .comment-input-box {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            padding: 0.5rem;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .comment-input-row {
            display: flex;
            gap: 0.4rem;
        }

        .comment-author-input {
            flex: 1;
            background: #0f172a;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 6px;
            padding: 0.35rem 0.6rem;
            color: #fff;
            font-size: 0.76rem;
        }

        .comment-avatar-select {
            background: #0f172a;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 6px;
            padding: 0.35rem 0.5rem;
            color: #fff;
            font-size: 0.76rem;
        }

        .comment-input-textarea-row {
            display: flex;
            gap: 0.4rem;
        }

        .comment-text-input {
            flex: 1;
            background: #0f172a;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 6px;
            padding: 0.45rem 0.6rem;
            color: #fff;
            font-size: 0.8rem;
        }

        .comment-text-input:focus, .comment-author-input:focus {
            outline: none;
            border-color: #00f0ff;
        }

        .comment-submit-btn {
            background: linear-gradient(135deg, #00f0ff 0%, #3b82f6 100%);
            border: none;
            border-radius: 6px;
            padding: 0.45rem 0.85rem;
            color: #000;
            font-weight: 800;
            font-size: 0.76rem;
            cursor: pointer;
            transition: transform 0.15s ease;
        }

        .comment-submit-btn:hover {
            transform: scale(1.04);
        }

    
        /* ── Project Vault Pipeline Stepper & Blueprint Dossier ── */
        .project-pipeline-container {
            margin: 1.25rem 0 1rem 0;
            background: rgba(0, 0, 0, 0.4);
            border-radius: 12px;
            padding: 0.85rem;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .pipeline-stepper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            margin-bottom: 0.75rem;
        }

        .pipeline-stepper::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 5%;
            right: 5%;
            height: 2px;
            background: rgba(255, 255, 255, 0.1);
            z-index: 1;
            transform: translateY(-50%);
        }

        .pipeline-step-node {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .pipeline-dot {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #0b1122;
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: #64748b;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.65rem;
            font-weight: 800;
            transition: all 0.2s ease;
        }

        .pipeline-step-node.completed .pipeline-dot {
            background: rgba(0, 240, 255, 0.2);
            border-color: #00f0ff;
            color: #00f0ff;
            box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
        }

        .pipeline-step-node.current .pipeline-dot {
            background: #f59e0b;
            border-color: #fbbf24;
            color: #000;
            box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
            transform: scale(1.15);
        }

        .pipeline-label {
            font-size: 0.62rem;
            font-weight: 700;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pipeline-step-node.completed .pipeline-label {
            color: #94a3b8;
        }

        .pipeline-step-node.current .pipeline-label {
            color: #f59e0b;
            font-weight: 800;
        }

        .project-progress-bar-bg {
            height: 6px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 4px;
            overflow: hidden;
            position: relative;
        }

        .project-progress-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, #00f0ff 0%, #3b82f6 50%, #f59e0b 100%);
            border-radius: 4px;
            transition: width 0.5s ease;
        }

        .dossier-spec-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
            margin: 1.25rem 0;
        }

        @media (max-width: 768px) {
            .dossier-spec-grid {
                grid-template-columns: 1fr 1fr;
            }
            .pipeline-label {
                display: none;
            }
        }

        .dossier-spec-box {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            padding: 0.75rem;
            text-align: left;
        }

        .dossier-spec-label {
            font-size: 0.68rem;
            font-family: var(--font-mono);
            color: var(--text-dim);
            text-transform: uppercase;
            margin-bottom: 2px;
        }

        .dossier-spec-val {
            font-size: 0.95rem;
            font-weight: 800;
            color: #fff;
        }

    
        /* ── Card Thumbnail & Image Fallbacks ── */
        .card-thumbnail-box {
            position: relative;
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
            min-height: 250px;
            background: #090e1a;
            overflow: hidden;
        }

        .card-thumb-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center !important;
            display: block;
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @media (max-width: 1024px) {
            .card-thumbnail-box {
                height: auto !important;
                aspect-ratio: 16 / 9 !important;
                min-height: 260px !important;
            }
            .card-thumb-img {
                object-position: top center !important;
            }
        }

        .article-card:hover .card-thumb-img {
            transform: scale(1.06);
        }

    
        /* ── Live Park Cams Command Center & Video Wall ── */
        .cams-panel-card {
            background: rgba(11, 17, 34, 0.9);
            border: 1px solid rgba(0, 240, 255, 0.3);
            border-radius: 20px;
            padding: 2.2rem;
            margin-bottom: 2.5rem;
            box-shadow: 0 12px 45px rgba(0, 0, 0, 0.65), 0 0 35px rgba(0, 240, 255, 0.1);
            backdrop-filter: blur(16px);
        }

        .cams-hud-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 1.8rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .cams-tag-live {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--font-mono);
            font-size: 0.72rem;
            font-weight: 800;
            color: #f87171;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            background: rgba(239, 68, 68, 0.12);
            border: 1px solid rgba(239, 68, 68, 0.35);
            padding: 0.25rem 0.65rem;
            border-radius: 9999px;
            margin-bottom: 0.5rem;
        }

        .cams-tag-live .pulse-red-ring {
            width: 8px;
            height: 8px;
            background: #ef4444;
            border-radius: 50%;
            box-shadow: 0 0 10px #ef4444;
            animation: pulse-dot 1.2s infinite;
        }

        .cams-view-controls {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(15, 23, 42, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.12);
            padding: 0.35rem;
            border-radius: 12px;
        }

        .cam-layout-btn {
            background: transparent;
            border: none;
            color: var(--text-muted);
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.78rem;
            padding: 0.45rem 0.85rem;
            border-radius: 8px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            transition: all 0.2s ease;
        }

        .cam-layout-btn:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }

        .cam-layout-btn.active {
            background: linear-gradient(135deg, #00f0ff, #3b82f6);
            color: #000;
            font-weight: 800;
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
        }

        /* Spotlight Theater */
        .spotlight-theater-layout {
            display: grid;
            grid-template-columns: 1.8fr 1fr;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        .spotlight-main-screen {
            background: #020617;
            border: 1px solid rgba(0, 240, 255, 0.35);
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 12px 35px rgba(0,0,0,0.8);
            display: flex;
            flex-direction: column;
        }

        .spotlight-video-wrapper {
            position: relative;
            width: 100%;
            padding-top: 56.25%;
            background: #000;
            overflow: hidden;
        }

        .spotlight-video-wrapper iframe,
        .spotlight-video-wrapper video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .spotlight-hud-overlay {
            position: absolute;
            top: 1rem;
            left: 1rem;
            right: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            pointer-events: none;
            z-index: 10;
        }

        .hud-live-pill {
            background: rgba(0, 0, 0, 0.85);
            border: 1px solid #ef4444;
            backdrop-filter: blur(8px);
            padding: 0.3rem 0.75rem;
            border-radius: 6px;
            font-family: var(--font-mono);
            font-size: 0.72rem;
            font-weight: 800;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 0.45rem;
        }

        .hud-weather-pill {
            background: rgba(0, 0, 0, 0.85);
            border: 1px solid rgba(0, 240, 255, 0.4);
            backdrop-filter: blur(8px);
            padding: 0.3rem 0.75rem;
            border-radius: 6px;
            font-family: var(--font-mono);
            font-size: 0.72rem;
            color: var(--neon-cyan);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .spotlight-info-bar {
            padding: 1.25rem 1.5rem;
            background: rgba(15, 23, 42, 0.95);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }

        .spotlight-title-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .spotlight-cam-title {
            font-family: var(--font-heading);
            font-size: 1.35rem;
            font-weight: 800;
            color: #fff;
        }

        .spotlight-cam-meta {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--neon-cyan);
        }

        .spotlight-actions-bar {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
        }

        .spotlight-action-btn {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
            padding: 0.45rem 0.9rem;
            border-radius: 8px;
            font-size: 0.78rem;
            font-weight: 700;
            font-family: var(--font-heading);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            text-decoration: none;
            transition: all 0.2s;
        }

        .spotlight-action-btn:hover {
            background: rgba(0, 240, 255, 0.2);
            border-color: var(--neon-cyan);
            color: var(--neon-cyan);
            transform: translateY(-1px);
        }

        .spotlight-action-btn.primary {
            background: linear-gradient(135deg, #00f0ff, #2563eb);
            border: none;
            color: #000;
            font-weight: 800;
        }

        .spotlight-action-btn.primary:hover {
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
            color: #000;
        }

        .spotlight-playlist-panel {
            background: rgba(15, 23, 42, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 1.25rem;
            display: flex;
            flex-direction: column;
            max-height: 540px;
        }

        .playlist-header {
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.85rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .playlist-scroll-list {
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            padding-right: 4px;
        }

        .playlist-item-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            padding: 0.65rem;
            display: flex;
            gap: 0.75rem;
            align-items: center;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .playlist-item-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(0, 240, 255, 0.4);
            transform: translateX(3px);
        }

        .playlist-item-card.active {
            background: rgba(0, 240, 255, 0.12);
            border-color: var(--neon-cyan);
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
        }

        .playlist-thumb {
            width: 80px;
            height: 50px;
            border-radius: 6px;
            object-fit: cover;
            flex-shrink: 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .playlist-info h5 {
            font-size: 0.8rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 0.2rem;
        }

        .playlist-info p {
            font-family: var(--font-mono);
            font-size: 0.68rem;
            color: var(--text-dim);
        }

        .cams-matrix-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 1.5rem;
        }

        .cam-grid-card {
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: all 0.25s ease;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        }

        .cam-grid-card:hover {
            border-color: rgba(0, 240, 255, 0.5);
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 240, 255, 0.15);
        }

        .cam-card-media {
            position: relative;
            width: 100%;
            padding-top: 56.25%;
            background: #020617;
            overflow: hidden;
        }

        .cam-card-thumb {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .cam-grid-card:hover .cam-card-thumb {
            transform: scale(1.04);
        }

        .cam-card-play-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.85;
            transition: all 0.2s;
            cursor: pointer;
        }

        .cam-grid-card:hover .cam-card-play-overlay {
            opacity: 1;
            background: rgba(0, 0, 0, 0.25);
        }

        .cam-play-btn-circle {
            width: 48px;
            height: 48px;
            background: rgba(0, 240, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-size: 1.2rem;
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
            transition: transform 0.2s;
        }

        .cam-grid-card:hover .cam-play-btn-circle {
            transform: scale(1.15);
            background: #00f0ff;
        }

        .cam-card-badge-top {
            position: absolute;
            top: 0.65rem;
            left: 0.65rem;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(239, 68, 68, 0.5);
            color: #fca5a5;
            font-family: var(--font-mono);
            font-size: 0.65rem;
            font-weight: 800;
            padding: 0.2rem 0.55rem;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }

        .cam-card-weather-top {
            position: absolute;
            top: 0.65rem;
            right: 0.65rem;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: var(--neon-cyan);
            font-family: var(--font-mono);
            font-size: 0.65rem;
            padding: 0.2rem 0.55rem;
            border-radius: 4px;
        }

        .cam-card-body {
            padding: 1.15rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .cam-card-park {
            font-family: var(--font-mono);
            font-size: 0.72rem;
            color: var(--neon-cyan);
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .cam-card-title {
            font-family: var(--font-heading);
            font-size: 1.05rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.45rem;
            line-height: 1.25;
        }

        .cam-card-desc {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-bottom: 0.85rem;
            flex: 1;
            line-height: 1.4;
        }

        .cam-card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.35rem;
            margin-bottom: 1rem;
        }

        .cam-ride-tag {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            font-family: var(--font-mono);
            font-size: 0.65rem;
            color: var(--text-dim);
            padding: 0.15rem 0.45rem;
            border-radius: 4px;
        }

        .cam-card-footer {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 0.85rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .quad-wall-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
            margin-bottom: 2.5rem;
        }

        .quad-cam-box {
            background: #020617;
            border: 1px solid rgba(0, 240, 255, 0.25);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }

        .quad-cam-screen {
            position: relative;
            width: 100%;
            padding-top: 56.25%;
            background: #000;
        }

        .quad-cam-screen iframe,
        .quad-cam-screen video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .quad-cam-info {
            padding: 0.75rem 1rem;
            background: rgba(15, 23, 42, 0.9);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.82rem;
            color: #fff;
            font-weight: 700;
        }

        @media (max-width: 1024px) {
            .spotlight-theater-layout {
                grid-template-columns: 1fr;
            }
            .quad-wall-layout {
                grid-template-columns: 1fr;
            }
        }

    
        /* ── SOVEREIGN INTEL CAMERA DECK STYLES ── */
        .snav-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.6);
            font-family: var(--font-mono);
            font-size: 10px;
            letter-spacing: 1.5px;
            padding: 4px 12px;
            cursor: pointer;
            border-radius: 4px;
            white-space: nowrap;
            transition: all 0.15s;
            flex-shrink: 0;
        }
        .snav-btn:hover, .snav-btn.active {
            color: #fff !important;
            border-color: currentColor !important;
            background: rgba(255, 255, 255, 0.15);
        }

        .sov-btn {
            background: transparent;
            border: 1px solid rgba(0, 255, 136, 0.25);
            color: #00aa55;
            font-family: var(--font-mono);
            font-size: 10px;
            letter-spacing: 1.5px;
            padding: 5px 12px;
            cursor: pointer;
            transition: all 0.15s;
            border-radius: 4px;
            white-space: nowrap;
        }
        .sov-btn:hover, .sov-btn.active {
            border-color: #00ff88;
            color: #00ff88;
            background: rgba(0, 255, 136, 0.1);
            box-shadow: 0 0 10px rgba(0, 255, 136, 0.25);
        }

        .sov-section-header {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px 6px;
            border-top: 1px solid rgba(0, 255, 136, 0.2);
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(2, 12, 6, 0.96);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            margin-top: 6px;
            width: 100%;
        }
        .sov-section-title {
            font-family: 'Space Grotesk', var(--font-mono);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 3px;
        }
        .sov-section-count {
            font-size: 9px;
            letter-spacing: 2px;
            color: #00aa55;
            font-family: var(--font-mono);
        }
        .sov-section-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, rgba(0, 255, 136, 0.2), transparent);
        }

        .sov-grid {
            display: grid;
            grid-template-columns: repeat(var(--sov-cols, 4), 1fr);
            gap: 10px;
            margin-bottom: 16px;
            width: 100%;
        }

        .sov-feed-cell {
            background: #020804;
            border: 1px solid rgba(0, 255, 136, 0.25);
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            transition: border-color 0.2s, box-shadow 0.2s;
            width: 100%;
        }
        .sov-feed-cell.sound-active {
            border-color: #00ffff !important;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.3) !important;
        }
        .sov-feed-cell.favorited {
            border-color: #ffaa00 !important;
        }

        .sov-feed-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            background: #000;
            overflow: hidden;
            border-radius: 7px 7px 0 0;
        }
        .sov-feed-wrap iframe,
        .sov-feed-wrap video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100% !important;
            height: 100% !important;
            border: 0 !important;
            object-fit: cover !important;
            display: block;
        }
        .sov-feed-glass-blocker {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 5;
            background: transparent;
            cursor: pointer;
        }
        .sov-feed-glass-blocker.interact-on {
            display: none !important;
            pointer-events: none !important;
        }

        .sov-pip-ctrls {
            position: absolute;
            bottom: 8px;
            right: 8px;
            z-index: 10;
            display: flex;
            gap: 4px;
        }
        .sov-pip-btn {
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            border: 1px solid rgba(0, 255, 136, 0.4);
            color: #fff;
            border-radius: 4px;
            width: 30px;
            height: 30px;
            font-size: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.15s;
        }
        .sov-pip-btn.fav-on {
            color: #ffaa00;
            border-color: #ffaa00;
            background: rgba(255, 170, 0, 0.25);
        }
        .sov-pip-btn.sound-on {
            color: #00ffff;
            border-color: #00ffff;
            background: rgba(0, 255, 255, 0.25);
        }

        .sov-tag-topleft {
            position: absolute;
            top: 8px;
            left: 8px;
            z-index: 10;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            border: 1px solid #00ff88;
            font-family: 'Share Tech Mono', monospace;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 3px;
            letter-spacing: 1px;
        }
        .sov-tag-topright {
            position: absolute;
            top: 8px;
            right: 8px;
            z-index: 10;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 51, 51, 0.5);
            color: #ff3333;
            font-family: 'Share Tech Mono', monospace;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 3px;
            display: flex;
            align-items: center;
            gap: 4px;
            letter-spacing: 1px;
        }
        .sov-rec-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #ff3333;
            box-shadow: 0 0 6px #ff3333;
            animation: pulse-dot 1s infinite;
        }

        .sov-card-meta {
            padding: 8px 12px;
            background: rgba(2, 10, 5, 0.95);
            border-top: 1px solid rgba(0, 255, 136, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
            min-height: 40px;
            width: 100%;
        }
        .sov-card-code {
            font-family: 'Share Tech Mono', monospace;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            flex-shrink: 0;
        }
        .sov-card-loc {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 12px;
            color: #c9d1d9;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            text-align: right;
            flex: 1;
            min-width: 0;
        }

        /* ── Theater Overlay Modal ── */
        .sov-overlay {
            display: none !important;
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
            width: 100vw !important;
            height: 100vh !important;
            background: rgba(1, 6, 3, 0.98) !important;
            backdrop-filter: blur(14px) !important;
            -webkit-backdrop-filter: blur(14px) !important;
            z-index: 999999 !important;
            flex-direction: column !important;
            padding: 12px !important;
            box-sizing: border-box !important;
        }
        .sov-overlay.open {
            display: flex !important;
        }
        .sov-overlay-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 14px;
            background: rgba(0, 0, 0, 0.85);
            border: 1px solid rgba(0, 255, 136, 0.3);
            border-radius: 8px;
            margin-bottom: 8px;
            width: 100%;
        }
        .sov-overlay-close {
            background: rgba(255, 51, 51, 0.15);
            border: 1px solid #ff3333;
            color: #ff3333;
            font-family: 'Share Tech Mono', monospace;
            font-size: 12px;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 4px;
            cursor: pointer;
        }
        .sov-overlay-footer {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            background: rgba(0, 0, 0, 0.85);
            border: 1px solid rgba(0, 255, 136, 0.3);
            border-radius: 8px;
            margin-top: 8px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            width: 100%;
        }
        .sov-ov-btn {
            background: transparent;
            border: 1px solid rgba(0, 255, 136, 0.25);
            color: #00aa55;
            font-family: 'Share Tech Mono', monospace;
            font-size: 11px;
            padding: 6px 12px;
            cursor: pointer;
            border-radius: 4px;
            white-space: nowrap;
        }
        .sov-ov-btn.active, .sov-ov-btn:hover {
            border-color: #00ff88;
            color: #00ff88;
            background: rgba(0, 255, 136, 0.15);
        }

        /* ── Mobile Responsive Optimizations ── */
        @media (max-width: 768px) {
            .sov-desktop-btn {
                display: none !important;
            }
            .sov-grid {
                grid-template-columns: 1fr !important;
                gap: 12px !important;
                width: 100% !important;
            }
            .sov-feed-cell {
                width: 100% !important;
                max-width: 100% !important;
            }
            #view-cams {
                padding: 0 4px !important;
            }
            .sov-card-loc {
                font-size: 11px !important;
            }
            #sov-search-container {
                width: 100% !important;
                min-width: 100% !important;
                max-width: 100% !important;
                order: 10;
                margin-top: 4px;
            }
        }
    
        /* 📱 iOS Mobile & iPad Touch Optimizations */
        .filter-pills-scroll-track, #view-menus div[style*="overflow-x: auto"] {
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .filter-pills-scroll-track::-webkit-scrollbar, #view-menus div[style*="overflow-x: auto"]::-webkit-scrollbar {
            display: none;
        }
        #menu-detail-modal .vip-modal-dialog {
            -webkit-overflow-scrolling: touch;
        }
        @media (max-width: 640px) {
            #menu-detail-modal .vip-modal-dialog {
                width: 94vw !important;
                padding: 1.25rem 1rem !important;
                max-height: 85vh !important;
            }
            #menus-grid {
                grid-template-columns: 1fr !important;
                gap: 1.25rem !important;
            }
        }

    
        /* ── Responsive Hero Card on Mobile / Tablet ── */
        @media (max-width: 768px) {
            .hero-feature-card,
            #hero-card {
                display: grid !important;
                grid-template-columns: 1fr !important;
                margin: 0.85rem 0 1.25rem !important;
            }
            .hero-image-box {
                min-height: 220px !important;
            }
            .hero-content {
                padding: 1.25rem 1rem !important;
            }
        }

    
        .hero-image-box {
            position: relative;
            min-height: 340px !important;
            background-size: cover !important;
            background-position: center !important;
            background-repeat: no-repeat !important;
            background-color: #0b1122 !important;
            transition: all 0.3s ease;
        }

    

