:root {
    /* Neon Logo Theme */
    --clr-bg: #05000a; /* Deep dark purple/black */
    --clr-primary: #d500ff; /* Neon Purple */
    --clr-hover-glow: #39ff14; /* Neon Green */
    --clr-secondary: #00ffcc; /* Neon Cyan/Green */
    --clr-accent: #ff9900; /* Neon Orange */
    --clr-text: #ffffff;
    --clr-text-muted: #b899cf;
    --clr-hud-line: rgba(213, 0, 255, 0.2);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --glass-bg: rgba(20, 0, 30, 0.65);
    --glass-border: rgba(213, 0, 255, 0.35);
    --glass-shadow: 0 8px 32px 0 rgba(213, 0, 255, 0.2);
}

[data-theme="tactical"] {
    --clr-bg: #111111;
    --clr-primary: #00ffff; /* Neon Cyan */
    --clr-secondary: #008888;
    --clr-accent: #ffffff;
    --clr-text: #f0f0f0;
    --clr-text-muted: #999999;
    --clr-hud-line: rgba(0, 255, 255, 0.1);
    
    --glass-bg: rgba(17, 17, 17, 0.7);
    --glass-border: rgba(0, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 255, 255, 0.05);
}

[data-theme="undead"] {
    --clr-bg: #0d0000;
    --clr-primary: #ff1a1a; /* Blood Red */
    --clr-secondary: #800000;
    --clr-accent: #ff6666;
    --clr-text: #ffe6e6;
    --clr-text-muted: #a36666;
    --clr-hud-line: rgba(255, 26, 26, 0.1);

    --glass-bg: rgba(13, 0, 0, 0.75);
    --glass-border: rgba(255, 26, 26, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(255, 26, 26, 0.15);
}

[data-theme="cyber"] {
    --clr-bg: #050505;
    --clr-primary: #39ff14; /* Acid Green */
    --clr-secondary: #1f8f0a;
    --clr-accent: #000000;
    --clr-text: #e0ffe0;
    --clr-text-muted: #5a8a5a;
    --clr-hud-line: rgba(57, 255, 20, 0.1);

    --glass-bg: rgba(5, 5, 5, 0.8);
    --glass-border: rgba(57, 255, 20, 0.25);
    --glass-shadow: 0 8px 32px 0 rgba(57, 255, 20, 0.1);
}

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

body {
    background-color: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font-body);
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Glassmorphism Utilities */
.glass-header, .glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all 0.5s ease;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 25px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3rem;
    color: var(--clr-primary);
    text-shadow: 0 0 12px var(--clr-primary);
}

.logo-img {
    height: 150px;
    width: auto;
    filter: drop-shadow(0 0 12px var(--clr-primary));
}

.persona-toggle {
    display: flex;
    background: rgba(0,0,0,0.4);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.persona-toggle button {
    background: transparent;
    border: none;
    color: var(--clr-text-muted);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.persona-toggle button.active {
    background: var(--clr-primary);
    color: var(--clr-bg);
    box-shadow: 0 0 15px var(--clr-primary);
}

.cta-nav {
    background: transparent;
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary);
    padding: 0.75rem 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px var(--clr-primary);
    box-shadow: inset 0 0 0 var(--clr-primary);
}

.cta-nav:hover {
    background: var(--clr-hover-glow);
    color: #000;
    box-shadow: 0 0 20px var(--clr-hover-glow), inset 0 0 10px rgba(0,0,0,0.5);
    border-color: var(--clr-hover-glow);
}


/* Parallax Hero */
.hero-section {
    position: relative;
    height: 400vh;
    width: 100%;
}

.hero-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    background-color: var(--clr-bg);
}

.parallax-layer {
    height: 100vh;
    will-change: transform;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10,14,23,0) 0%, var(--clr-bg) 100%), 
                url('../assets/hero_setup.png') center/cover no-repeat;
    filter: blur(10px) brightness(0.3);
    z-index: 1;
    transform: scale(1.1);
}

.parallax-hud {
    z-index: 3;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 8vw;
    pointer-events: none;
    position: relative;
}

.parallax-mid {
    z-index: 2;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#hero-canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hud-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        var(--clr-hud-line) 3px,
        transparent 4px
    );
    opacity: 0.3;
    animation: scan 10s linear infinite;
}

@keyframes scan {
    from { background-position: 0 0; }
    to { background-position: 0 100vh; }
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.highlight {
    color: cyan;
    text-shadow: 0 0 15px cyan;
    font-weight: 400; /* Contrast with the heavy 900 logo font */
    font-style: italic;
    letter-spacing: 4px;
}

.hero-subtitle {
    margin-top: 1rem;
    font-size: 1.5rem;
    color: var(--clr-text-muted);
}

/* Sections */
section {
    padding: 6rem 10vw;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 3rem;
    color: var(--clr-primary);
    margin-bottom: 3rem;
    text-align: center;
}

/* Variants */
.experience-variants {
    display: flex;
    justify-content: center;
}

.variant-controls {
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.variant-controls h3 {
    margin-bottom: 1.5rem;
    color: var(--clr-text-muted);
}

.variant-buttons {
    display: flex;
    gap: 1rem;
}

.variant-btn {
    background: transparent;
    border: 1px solid var(--clr-text-muted);
    color: var(--clr-text);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.variant-btn:hover {
    border-color: var(--clr-hover-glow);
    color: var(--clr-hover-glow);
    box-shadow: inset 0 0 15px rgba(57, 255, 20, 0.2);
}
.variant-btn.active {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    box-shadow: inset 0 0 10px var(--glass-border);
}

/* Hardware Marquee Stage */
.hardware-showcase {
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.hardware-showcase .section-title { margin-bottom: 2rem; }

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 3rem 0;
}

.marquee-track {
    display: inline-flex;
    gap: 15vw;
    align-items: center;
    animation: marquee-scroll 15s linear infinite;
}

.marquee-track img {
    height: 400px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 25px var(--clr-primary));
    transition: transform 0.4s ease;
}

.marquee-track img:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 35px var(--clr-hover-glow));
}

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

/* Pricing Table */
.pricing-table {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.pricing-card {
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0;
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--clr-hover-glow);
    box-shadow: 0 10px 40px rgba(57, 255, 20, 0.25);
}

.card-img {
    width: 100%;
    height: 250px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Games Grid */
.game-library {
    margin: 4rem 10vw;
    border-radius: 12px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.game-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.25);
    border-color: var(--clr-hover-glow);
}

.game-card:hover img {
    transform: scale(1.1);
}


.price {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--clr-primary);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1.5rem;
    color: var(--clr-text-muted);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 3rem;
    width: 100%;
}

.pricing-card li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--clr-text);
    text-align: center;
}

.cta-primary {
    background: var(--clr-primary);
    color: var(--clr-bg);
    border: none;
    padding: 1rem 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 100%;
}

.cta-primary:hover {
    background: var(--clr-hover-glow);
    color: #000;
    box-shadow: 0 0 25px var(--clr-hover-glow);
}

/* Social Proof */
.live-feed {
    padding: 1.5rem 2rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.feed-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.pulsing-dot {
    width: 12px;
    height: 12px;
    background: var(--clr-primary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(var(--clr-primary), 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(var(--clr-primary), 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(var(--clr-primary), 0); }
}

.feed-list {
    list-style: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

.feed-list li {
    margin-bottom: 0.75rem;
}

.feed-list strong {
    color: var(--clr-text);
}

.nav-links {
    display: flex;
    gap: 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.nav-links a {
    color: var(--clr-text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.nav-links a:hover {
    color: var(--clr-hover-glow);
    text-shadow: 0 0 15px var(--clr-hover-glow);
}
.nav-links a.active {
    color: var(--clr-primary);
    text-shadow: 0 0 10px var(--clr-primary);
}

/* Gallery Base */
.gallery-section {
    padding-top: 150px;
    min-height: 100vh;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    padding: 0 10vw;
}
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--clr-hover-glow);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.3);
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Tally Engine */
.loadout-container {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.visual-proof {
    flex: 1;
    height: 500px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-proof img {
    height: 90%;
    object-fit: contain;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 0 30px var(--clr-primary));
}

.preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.configurator {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.config-card {
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.config-card.selected, .config-card:hover {
    border-color: var(--clr-hover-glow);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.15);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.cost-badge {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--clr-hover-glow);
    background: rgba(57,255,20,0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.toggle-switch {
    position: relative;
    width: 40px;
    height: 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.2);
    transition: 0.3s;
    flex-shrink: 0;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    top: 2px;
    left: 2px;
    transition: 0.3s;
}

.toggle-switch.on { background: var(--clr-hover-glow); }
.toggle-switch.on::after { left: 22px; background: #000; }

.duration-counter {
    display: flex;
    align-items: center;
    gap: 10px;
}
.duration-counter button {
    background: transparent;
    border: 1px solid var(--clr-primary);
    color: var(--clr-primary);
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}
.duration-counter button:hover {
    background: var(--clr-hover-glow);
    color: #000;
}

.error-tooltip {
    color: #ff3333;
    font-size: 0.8rem;
    margin-top: 10px;
    display: none;
    text-align: right;
    text-shadow: 0 0 5px rgba(255,51,51,0.5);
}

/* Tally Footer */
.tally-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    padding: 1.5rem 10vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-top: 1px solid var(--clr-primary);
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(20px);
}

.tally-left {
    position: relative;
}

.tally-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    letter-spacing: 2px;
}

.tally-total {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--clr-hover-glow);
    text-shadow: 0 0 15px var(--clr-hover-glow);
    margin-bottom: 0.5rem;
}

.breakdown-toggle {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    cursor: pointer;
    transition: 0.3s;
}

.breakdown-toggle:hover {
    color: var(--clr-hover-glow);
}

.breakdown-dropdown {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 350px;
    margin-bottom: 20px;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
}

.bd-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--clr-text);
}

.bd-tooltip-wrapper {
    position: relative;
    cursor: help;
    border-bottom: 1px dotted rgba(255,255,255,0.3);
}

.bd-tooltip-wrapper::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 150%;
    left: 0;
    background: rgba(10,14,23,0.95);
    border: 1px solid var(--clr-primary);
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    width: max-content;
    max-width: 250px;
    white-space: normal;
    color: var(--clr-text);
    box-shadow: 0 5px 15px rgba(0,0,0,0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(5px);
    z-index: 2000;
}

.bd-tooltip-wrapper:hover::before {
    opacity: 1;
    transform: translateY(0);
}

/* Shake Animation */
@keyframes screenShake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}
.shake-screen {
    animation: screenShake 0.15s cubic-bezier(.36,.07,.19,.97) both;
}

/* Responsive */
@media (max-width: 1024px) {
    .loadout-container {
        flex-direction: column;
    }
    .tally-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .breakdown-dropdown {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Footer */
.main-footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 10vw;
    margin-top: 4rem;
    font-family: var(--font-body);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-socials {
    display: flex;
    gap: 2rem;
}

.social-icon {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--clr-text);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.social-icon:hover {
    color: var(--clr-hover-glow);
    text-shadow: 0 0 15px var(--clr-hover-glow);
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.terms-link {
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: var(--clr-primary);
}

/* Mobile Responsiveness - Max Width 768px */
@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    .logo {
        font-size: 1.8rem;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }
    .logo-img {
        height: 50px;
    }
    .nav-links {
        gap: 1rem;
        width: 100%;
        justify-content: center;
        font-size: 0.9rem;
        flex-wrap: wrap;
    }
    .cta-nav {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* Typography & Structural */
    section {
        padding: 3rem 5vw;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* Homepage Elements */
    .variant-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    .variant-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }
    .game-library {
        margin: 2rem 5vw;
    }
    .marquee-track img {
        height: 200px;
    }
    .pricing-table {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        width: 100%;
        margin-bottom: 2rem;
    }

    /* Subpages */
    .gallery-grid {
        padding: 0 5vw;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    .video-hero h1 {
        font-size: 2.5rem !important;
    }
    .tally-engine {
        margin: 0 5vw !important;
    }
    .tally-footer {
        padding: 1rem 5vw;
    }
    #btn-reserve {
        width: 100%;
        font-size: 1.2rem !important;
        padding: 0.8rem 1rem !important;
    }

    /* Footer */
    .main-footer {
        padding: 2rem 5vw;
        margin-bottom: 120px !important; /* Make sure tall footer doesn't hide tally engine */
    }
    .footer-socials {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Configurator Modals & Modifiers */
    .configurator {
        gap: 1rem;
    }
    .config-card {
        padding: 1rem;
        margin-bottom: 1rem !important;
    }
    .card-header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .cost-badge {
        margin-left: 0 !important;
    }
    #enterprise-modal {
        width: 95% !important;
        padding: 1.5rem !important;
    }
}
}

/* Google Translate Global Overrides */
.goog-te-gadget {
    color: transparent !important; 
    font-size: 0px !important; 
}

.goog-te-gadget span {
    display: none !important;
}

.goog-te-combo {
    background: rgba(0, 0, 0, 0.7) !important;
    color: var(--clr-primary) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 4px;
    padding: 0.4rem 1rem;
    font-family: var(--font-heading) !important;
    font-size: 0.85rem !important;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    outline: none;
    box-shadow: 0 0 10px rgba(213, 0, 255, 0.1);
    transition: all 0.3s ease;
}

.goog-te-combo:hover, .goog-te-combo:focus {
    border-color: var(--clr-hover-glow) !important;
    color: var(--clr-hover-glow) !important;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
}

.goog-te-combo option {
    background: #05000a;
    color: #fff;
    padding: 0.5rem;
}

/* Hard Drop Google Top Frame Injection entirely */
.skiptranslate iframe.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0px !important; 
}

/* Custom Language Switcher Styles */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 4px;
    border-radius: 20px;
    height: 38px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--clr-text-muted);
    padding: 4px 12px;
    border-radius: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.lang-btn.active {
    background: var(--clr-primary);
    color: white;
    box-shadow: 0 0 10px var(--clr-primary);
}

.lang-btn:hover:not(.active) {
    color: white;
    background: rgba(213, 0, 255, 0.1);
}
/* Address Suggestion Box Styles */
.address-suggestions {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #05080f;
    border: 1px solid var(--clr-primary);
    border-radius: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.address-suggestions li {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--clr-text-muted);
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.address-suggestions li:hover {
    background: rgba(213, 0, 255, 0.2);
    color: white;
}
/* Hide the native Google Translate bar */
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
#google_translate_element { display: none; }
.goog-te-menu-value { display: none !important; }
.goog-te-gadget { font-size: 0 !important; }
.goog-te-gadget span { display: none !important; }
.goog-te-gadget .goog-te-combo { 
    background: var(--clr-bg);
    color: white;
    border: 1px solid var(--clr-primary);
    padding: 5px;
    border-radius: 4px;
}

/* --- MOBILE RESPONSIVENESS OVERHAUL --- */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem !important;
    }
    .parallax-hud {
        padding-left: 5vw !important;
    }
}

@media (max-width: 768px) {
    /* Global Navigation Fixes */
    nav.glass-header {
        padding: 1rem !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        height: auto !important;
        position: relative !important;
        background: rgba(5, 0, 10, 0.95) !important;
    }
    .logo {
        font-size: 1.2rem !important;
        gap: 10px !important;
        width: 100% !important;
        justify-content: center !important;
        text-align: center;
    }
    .logo-img {
        height: 40px !important;
    }
    .nav-links {
        display: flex !important;
        gap: 1rem !important;
        font-size: 0.75rem !important;
        width: 100%;
        justify-content: center;
    }
    nav div[style*="display:flex"] {
        width: 100%;
        justify-content: center !important;
        gap: 0.5rem !important;
    }
    .language-switcher {
        height: 30px !important;
    }
    .cta-nav {
        padding: 0.4rem 1rem !important;
        font-size: 0.7rem !important;
    }

    /* Hero Section Stacking Fix */
    .hero-section {
        height: auto !important;
    }
    .hero-sticky-container {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        min-height: 100vh;
        padding-top: 2rem;
    }
    .parallax-hud {
        width: 100% !important;
        padding: 2rem !important;
        align-items: center !important;
        text-align: center !important;
        pointer-events: all !important;
        position: relative !important;
        z-index: 20 !important;
    }
    .parallax-mid {
        width: 100% !important;
        height: 350px !important;
        position: relative !important;
        z-index: 10 !important;
        margin-top: -3rem; /* Overlap slightly for style */
    }
    #hero-canvas {
        height: 100% !important;
        width: auto !important;
        max-width: 100% !important;
        object-fit: contain !important;
    }
    .hero-title {
        font-size: 2rem !important;
    }
    .hero-subtitle {
        font-size: 0.9rem !important;
    }
    .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: 0.8rem;
    }

    /* Availability Capture Pipeline */
    .availability-check {
        margin: 1rem 5vw 2rem !important;
        padding: 1.5rem !important;
        z-index: 40 !important;
    }
    .availability-check > div {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    .availability-check div[style*="flex: 2"] {
        width: 100%;
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: stretch !important;
    }
    .availability-check label {
        text-align: left;
    }

    /* VR Solutions Grid Stacking */
    .vr-solutions-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    .vr-solutions-grid > div {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0 0 1.5rem 0 !important;
        width: 100% !important;
    }
    .vr-solutions-grid > div:last-child {
        border-bottom: none !important;
    }

    /* Hardware Showcase */
    .marquee-track img {
        height: 200px !important;
    }
    .marquee-track {
        gap: 40px !important;
    }

    /* General Typography */
    .section-title {
        font-size: 1.6rem !important;
        margin-bottom: 2rem !important;
    }
}


