:root {
    --text-primary: #f5f5f5;
    --text-muted: rgba(255, 255, 255, 0.5);
    --font-display: 'Clash Display', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --accent: #3fbbf0;
    --text-cyan: #3fbbf0;
    --bg-dark: #030303;
}

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

body, html {
    width: 100%;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
    user-select: none;
    cursor: default; 
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

::selection {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Cinematic Noise */
.noise {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.04;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* Sci-Fi Custom Cursor */
.cursor-dot {
    width: 6px; height: 6px;
    background: #3fbbf0;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s, background-color 0.4s;
    box-shadow: 0 0 10px rgba(63, 187, 240, 0.8);
}

.cursor-ring {
    width: 44px; height: 44px;
    border: 1px solid rgba(63, 187, 240, 0.35);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), height 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s, border-color 0.4s, opacity 0.4s;
}

/* High-tech crosshair ticks */
.cursor-ring::before, .cursor-ring::after {
    content: '';
    position: absolute;
    background: rgba(63, 187, 240, 0.4);
    transition: opacity 0.3s ease;
}
.cursor-ring::before {
    top: 50%; left: -6px; width: 4px; height: 1px;
    box-shadow: 52px 0 0 rgba(63, 187, 240, 0.4);
}
.cursor-ring::after {
    left: 50%; top: -6px; width: 1px; height: 4px;
    box-shadow: 0 52px 0 rgba(63, 187, 240, 0.4);
}

/* Cursor text hint */
.cursor-text {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 500;
    color: #030303;
    opacity: 0;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10001;
    text-transform: uppercase;
}

/* Hover expansion */
.cursor-hover {
    width: 80px !important; height: 80px !important;
    background-color: rgba(63, 187, 240, 0.95);
    border-color: #3fbbf0;
    box-shadow: 0 0 30px rgba(63, 187, 240, 0.4);
}

.cursor-hover::before, .cursor-hover::after {
    opacity: 0 !important;
}

.cursor-hover .cursor-text {
    opacity: 1;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 30px; left: 50%;
    transform: translateX(-50%);
    display: flex; align-items: center; gap: 40px;
    padding: 12px 16px 12px 32px;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    z-index: 100;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    animation: fadeInDown 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.navbar:hover {
    background: rgba(10, 10, 10, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.nav-logo {
    font-family: var(--font-display);
    font-weight: 700; font-size: 1.2rem;
    color: #fff; text-decoration: none;
    letter-spacing: 0.05em; cursor: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 44px;
    height: auto;
    color: #e5e5ea; /* Silver */
    transition: color 0.4s ease, filter 0.4s ease;
}

.nav-logo:hover .logo-icon {
    color: #fff;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.logo-icon-footer {
    width: 64px;
    height: auto;
    color: rgba(255, 255, 255, 0.25); /* Silver overlay */
    transition: color 0.4s ease, filter 0.4s ease;
}

.logo-icon-footer:hover {
    color: #fff;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.nav-links { display: flex; gap: 30px; }

.nav-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none; font-size: 0.85rem; font-weight: 500;
    transition: color 0.4s ease; cursor: none;
    text-transform: uppercase; letter-spacing: 0.05em;
}

.nav-links a:hover { color: #fff; }

.nav-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent; color: #fff;
    text-decoration: none; font-size: 0.8rem; font-weight: 600;
    padding: 10px 24px; border-radius: 100px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: none; will-change: transform;
    text-transform: uppercase; letter-spacing: 0.05em;
}

.nav-btn:hover { background: #fff; color: #000; }

@keyframes fadeInDown {
    from { opacity: 0; transform: translate(-50%, -20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* WebGL Background */
#glcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ui-layer {
    position: relative; z-index: 1; width: 100%; display: flex; flex-direction: column;
}

.screen {
    width: 100%; min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 100px 20px; position: relative;
}

.screen::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, rgba(63, 187, 240, 0.025) 0%, rgba(63, 187, 240, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

/* Exclude Hero from the standard screen glow pseudo-element */
.hero::before {
    display: none;
}

.w-full { width: 100%; }

.content {
    display: flex; flex-direction: column; align-items: center;
    gap: 10px; position: relative; z-index: 2; width: 100%;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    overflow: hidden;
    padding: 0;
    justify-content: flex-end;
    padding-bottom: 15vh;
}

#experiencias {
    margin-top: -15px;
    position: relative;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        #030303 0%,
        #030303 350px,
        rgba(3, 3, 3, 0.9) 600px,
        rgba(3, 3, 3, 0.5) 900px,
        transparent 1300px
    );
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(115%) brightness(50%) saturate(135%);
    opacity: 0.95;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(3, 3, 3, 0.2) 0%,
        rgba(3, 3, 3, 0.5) 50%,
        rgba(3, 3, 3, 0.8) 80%,
        #030303 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    gap: 24px;
}

.location-badge {
    font-family: var(--font-mono); font-size: 0.75rem;
    color: rgba(255,255,255,0.6); letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.hero-title {
    font-family: var(--font-display); font-size: clamp(2.8rem, 7vw, 5.8rem);
    font-weight: 600; color: #fff; letter-spacing: -0.02em;
    line-height: 1.15; max-width: 1200px;
    text-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    max-width: 800px;
    margin-top: 15px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}


/* --- PRODUCT CLARITY (BENTO) --- */
.section-header.center { text-align: center; margin-bottom: 60px; }

.section-title {
    font-family: var(--font-display); font-size: 3.5rem;
    font-weight: 500; color: #fff; letter-spacing: -0.02em; margin-bottom: 16px;
}

.section-subtitle { font-size: 1.2rem; color: var(--text-muted); }

.product-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 30px; width: 100%;
}

.games-carousel-container {
    width: 100%;
    height: 540px;
    margin-top: 110px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
    overflow: visible;
}

.games-track {
    position: relative;
    width: 600px;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    display: flex;
    justify-content: center;
    align-items: center;
}

.games-track .game-card {
    position: absolute;
    width: 460px;
    height: 480px;
    left: 50%;
    margin-left: -230px;
    backface-visibility: hidden;
    transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease, border-color 0.6s ease, box-shadow 0.6s ease;
    opacity: 0.05;
    filter: blur(6px) brightness(30%);
    pointer-events: none;
    border-radius: 24px;
    display: flex;
    align-items: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transform-style: preserve-3d;
}

.games-track .game-card.active {
    opacity: 1;
    filter: blur(0px) brightness(100%);
    pointer-events: auto;
    z-index: 10;
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(63, 187, 240, 0.1);
}

.games-track .game-card.active:hover {
    border-color: rgba(63, 187, 240, 0.5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(63, 187, 240, 0.2);
}

.games-track .game-card.adjacent {
    opacity: 0.45;
    filter: blur(2.5px) brightness(60%);
    pointer-events: auto;
    z-index: 5;
}

/* 3D transforms for 6 cards around the Y-axis (60deg increments) */
.games-track .game-card:nth-child(1) { transform: rotateY(0deg) translateZ(580px); }
.games-track .game-card:nth-child(2) { transform: rotateY(60deg) translateZ(580px); }
.games-track .game-card:nth-child(3) { transform: rotateY(120deg) translateZ(580px); }
.games-track .game-card:nth-child(4) { transform: rotateY(180deg) translateZ(580px); }
.games-track .game-card:nth-child(5) { transform: rotateY(240deg) translateZ(580px); }
.games-track .game-card:nth-child(6) { transform: rotateY(300deg) translateZ(580px); }

.bento-card {
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px; padding: 40px;
    display: flex; flex-direction: column; gap: 20px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border 0.6s ease;
    text-align: left; position: relative; overflow: hidden;
    cursor: none; transform-style: preserve-3d;
}

.bento-card:hover {
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.product-card { padding: 0; min-height: 500px; justify-content: flex-end; }

.product-image {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease;
    filter: grayscale(20%) brightness(85%);
    z-index: 0;
    border-radius: inherit;
}

.product-card:hover .product-image {
    transform: scale(1.06);
    filter: grayscale(0%) brightness(100%);
}

.product-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.95) 100%);
    z-index: 1; transition: opacity 0.6s ease;
    border-radius: inherit;
}

.product-info { position: relative; z-index: 2; padding: 40px 30px; display: flex; flex-direction: column; gap: 16px; height: 100%; justify-content: flex-end;}

.bento-header { display: flex; justify-content: space-between; align-items: flex-start; }

.bento-badge {
    font-family: var(--font-mono); background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px; border-radius: 100px; font-size: 0.75rem; font-weight: 500;
    color: #fff; backdrop-filter: blur(10px);
}

.bento-body { display: flex; flex-direction: column; gap: 8px; }

.bento-title { font-family: var(--font-display); font-size: 1.8rem; color: #fff; font-weight: 500; }

.bento-desc { font-size: 1rem; color: rgba(255, 255, 255, 0.7); line-height: 1.6; }

.bento-tags { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }

.bento-tag {
    font-family: var(--font-mono); color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* ACTIONS */
.action-box {
    display: inline-flex; align-items: center; gap: 16px;
    font-size: 1rem; font-weight: 600; color: #000; cursor: none;
    padding: 18px 36px; border-radius: 100px; background: #fff;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
    will-change: transform;
}

.action-box:hover { background: #e5e5e5; }
.action-box.outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.action-box.outline:hover { background: #fff; color: #000; border-color: #fff; }

.action-box.btn-booking {
    background: linear-gradient(135deg, #ff0055 0%, #ff3b30 100%) !important;
    color: #fff !important;
    box-shadow: 0 0 25px rgba(255, 0, 85, 0.45);
    border: none !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.action-box.btn-booking:hover {
    background: linear-gradient(135deg, #ff1a6c 0%, #ff5247 100%) !important;
    box-shadow: 0 0 40px rgba(255, 0, 85, 0.8), 0 0 15px rgba(255, 59, 48, 0.4);
    color: #fff !important;
}

.nav-btn.btn-booking {
    background: linear-gradient(135deg, #ff0055 0%, #ff3b30 100%) !important;
    color: #fff !important;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.45) !important;
    border: none !important;
}

.nav-btn.btn-booking:hover {
    background: linear-gradient(135deg, #ff1a6c 0%, #ff5247 100%) !important;
    box-shadow: 0 0 25px rgba(255, 0, 85, 0.75) !important;
    color: #fff !important;
}
.action-box .icon { transition: transform 0.4s ease; }
.action-box:hover .icon { transform: translateX(6px); }

/* --- REVIEWS SECTION --- */
.review-section {
    width: 100%;
    padding: 120px 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.reviews-carousel-container {
    width: 100%;
    height: 520px;
    margin-top: 60px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
    overflow: visible;
}

.reviews-track {
    position: relative;
    width: 600px;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviews-track .review-card {
    position: absolute;
    width: 460px;
    left: 50%;
    margin-left: -230px;
    backface-visibility: hidden;
    will-change: transform, opacity, filter;
    transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease, border-color 0.6s ease, box-shadow 0.6s ease;
    opacity: 0.05;
    filter: blur(6px) brightness(30%);
    pointer-events: none;
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    overflow: hidden;
}

.reviews-track .review-card.active {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.04);
    opacity: 1;
    filter: blur(0px) brightness(100%);
    pointer-events: auto;
    z-index: 10;
}

.reviews-track .review-card.active:hover {
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(255, 255, 255, 0.08);
}

.reviews-track .review-card.adjacent {
    opacity: 0.5;
    filter: blur(2.5px) brightness(60%);
    pointer-events: auto;
    z-index: 5;
}

/* 3D transforms for cards around the Y-axis */
.reviews-track .review-card:nth-child(1) { transform: rotateY(0deg) translateZ(540px); }
.reviews-track .review-card:nth-child(2) { transform: rotateY(60deg) translateZ(540px); }
.reviews-track .review-card:nth-child(3) { transform: rotateY(120deg) translateZ(540px); }
.reviews-track .review-card:nth-child(4) { transform: rotateY(180deg) translateZ(540px); }
.reviews-track .review-card:nth-child(5) { transform: rotateY(240deg) translateZ(540px); }
.reviews-track .review-card:nth-child(6) { transform: rotateY(300deg) translateZ(540px); }

/* Controls */
.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.reviews-nav-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.reviews-nav-btn:hover {
    background: #fff;
    color: #030303;
    border-color: #fff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.reviews-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.01);
    border-color: rgba(255, 255, 255, 0.03);
}

.reviews-indicator {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    min-width: 60px;
    text-align: center;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    object-fit: cover;
}

.reviews-track .review-card .review-avatar {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    transition: all 0.8s ease;
}

.reviews-track .review-card.active .review-avatar {
    background: #f5f5f5;
    color: #030303;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.review-author {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
    color: #fff;
    letter-spacing: 0.05em;
}

.review-stars {
    color: #ffb800;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
}

.review-platform {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- FAQ SECTION --- */
.faq-container {
    width: 100%;
}

.faq-item {
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.4s ease, background 0.4s ease;
    cursor: none;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(20, 20, 20, 0.5);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: #fff;
    user-select: none;
}

.faq-icon {
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #3fbbf0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding: 0 30px 24px 30px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* --- NAVBAR EXTENSIONS --- */
.nav-gift {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.4s ease;
    cursor: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-gift:hover {
    color: #3fbbf0 !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-phone {
    font-family: var(--font-mono);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.4s ease;
    cursor: none;
}

.nav-phone:hover {
    color: #fff;
}

.hover-white:hover {
    color: #fff !important;
}

/* --- SPOTLIGHT GLOW BENTO CARDS --- */
.bento-card {
    background: radial-gradient(circle 200px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(63, 187, 240, 0.08) 0%, rgba(15, 15, 15, 0.4) 100%);
}

.bento-card:hover {
    border-color: rgba(63, 187, 240, 0.25);
    box-shadow: 0 0 30px rgba(63, 187, 240, 0.05);
}

.bento-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle 250px at var(--flare-x, 50%) var(--flare-y, 50%),
        rgba(63, 187, 240, 0.12) 0%,
        rgba(255, 255, 255, 0.04) 30%,
        rgba(0, 0, 0, 0) 80%
    );
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 3;
}

.bento-card:hover::after {
    opacity: 1;
}

/* --- NAV LINKS UNDERLINE SLIDER --- */
.nav-links a {
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 50%;
    width: 0; height: 2px;
    background: #3fbbf0;
    border-radius: 10px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 8px rgba(63, 187, 240, 0.6);
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

.nav-lang {
    transition: border-color 0.4s, color 0.4s;
}
.nav-lang:hover {
    border-color: #3fbbf0 !important;
    color: #3fbbf0 !important;
}

/* --- SUBPAGES & FORMS STYLING --- */
body.subpage {
    overflow-y: auto;
}

.booking-step {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    text-align: left;
}

.step-heading {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
}

.game-select-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    cursor: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.game-select-card:hover {
    transform: translateY(-5px);
    border-color: rgba(63, 187, 240, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.game-select-card.active {
    border-color: #3fbbf0;
    box-shadow: 0 0 20px rgba(63, 187, 240, 0.2);
}

.game-select-image {
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: center;
}

.game-select-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.game-select-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.game-select-price {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: #3fbbf0;
}

/* Premium Inputs */
.premium-input {
    box-sizing: border-box;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s;
    outline: none;
    cursor: none;
}

.premium-input:focus {
    border-color: #3fbbf0;
    background: rgba(63, 187, 240, 0.02);
    box-shadow: 0 0 15px rgba(63, 187, 240, 0.15);
}

.premium-textarea {
    min-height: 100px;
}

/* Premium Slider */
.premium-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: background 0.3s;
}

.premium-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3fbbf0;
    cursor: none;
    box-shadow: 0 0 10px rgba(63, 187, 240, 0.8);
    transition: transform 0.2s;
}

.premium-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Calendar styling */
.calendar-date {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 8px;
    padding: 12px 0;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    cursor: none;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.calendar-date:hover:not(.disabled) {
    background: rgba(63, 187, 240, 0.1);
    border-color: rgba(63, 187, 240, 0.4);
    color: #3fbbf0;
}

.calendar-date.active {
    background: #3fbbf0 !important;
    border-color: #3fbbf0 !important;
    color: #030303 !important;
    font-weight: 600;
}

.calendar-date.disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

/* Time slots */
.time-slot-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    border-radius: 12px;
    padding: 15px 0;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    cursor: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.time-slot-btn:hover {
    background: rgba(63, 187, 240, 0.05);
    border-color: rgba(63, 187, 240, 0.4);
    transform: translateY(-2px);
}

.time-slot-btn.active {
    background: #3fbbf0 !important;
    border-color: #3fbbf0 !important;
    color: #030303 !important;
}

.slot-seats {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    opacity: 0.7;
}

.time-slot-btn.active .slot-seats {
    color: #030303;
    font-weight: 500;
}

/* Gift Amount Presets */
.amount-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px 0;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    cursor: none;
    transition: all 0.3s;
}

.amount-card:hover {
    background: rgba(63, 187, 240, 0.05);
    border-color: rgba(63, 187, 240, 0.4);
    color: #3fbbf0;
    transform: translateY(-3px);
}

.amount-card.active {
    background: #3fbbf0 !important;
    border-color: #3fbbf0 !important;
    color: #030303 !important;
}

/* Player Count Selectors */
.player-count-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px 0;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer !important;
    transition: all 0.3s ease;
    text-align: center;
    outline: none;
}

.player-count-btn:hover {
    background: rgba(63, 187, 240, 0.05);
    border-color: rgba(63, 187, 240, 0.4);
    color: #3fbbf0;
    transform: translateY(-2px);
}

.player-count-btn.active {
    background: #3fbbf0 !important;
    border-color: #3fbbf0 !important;
    color: #030303 !important;
}

/* --- KINETIC MASK TEXT REVEAL --- */
.kinetic-header {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
    letter-spacing: -0.05em;
    transition: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 3.5rem; }
    .reviews-carousel-container {
        height: 440px;
        margin-top: 40px;
        overflow: visible;
    }
    .reviews-track {
        width: 320px;
    }
    .reviews-track .review-card {
        width: 320px;
        margin-left: -160px;
        padding: 30px 24px;
    }
    .review-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .review-author {
        font-size: 1.1rem;
    }
    /* 3D transforms for tablet/mobile */
    .reviews-track .review-card:nth-child(1) { transform: rotateY(0deg) translateZ(260px); }
    .reviews-track .review-card:nth-child(2) { transform: rotateY(60deg) translateZ(260px); }
    .reviews-track .review-card:nth-child(3) { transform: rotateY(120deg) translateZ(260px); }
    .reviews-track .review-card:nth-child(4) { transform: rotateY(180deg) translateZ(260px); }
    .reviews-track .review-card:nth-child(5) { transform: rotateY(240deg) translateZ(260px); }
    .reviews-track .review-card:nth-child(6) { transform: rotateY(300deg) translateZ(260px); }

    .games-carousel-container {
        height: 480px;
        margin-top: 90px;
        overflow: visible;
    }
    .games-track {
        width: 320px;
    }
    .games-track .game-card {
        width: 320px;
        height: 420px;
        margin-left: -160px;
        padding: 20px;
    }
    /* 3D transforms for games on tablet/mobile */
    .games-track .game-card:nth-child(1) { transform: rotateY(0deg) translateZ(350px); }
    .games-track .game-card:nth-child(2) { transform: rotateY(60deg) translateZ(350px); }
    .games-track .game-card:nth-child(3) { transform: rotateY(120deg) translateZ(350px); }
    .games-track .game-card:nth-child(4) { transform: rotateY(180deg) translateZ(350px); }
    .games-track .game-card:nth-child(5) { transform: rotateY(240deg) translateZ(350px); }
    .games-track .game-card:nth-child(6) { transform: rotateY(300deg) translateZ(350px); }

    .event-cards-grid { grid-template-columns: 1fr; }
    #contacto .booking-card { grid-template-columns: 1fr; gap: 40px; }
    .game-select-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .reviews-carousel-container {
        height: 420px;
    }
    .reviews-track {
        width: 280px;
    }
    .reviews-track .review-card {
        width: 280px;
        margin-left: -140px;
        padding: 25px 20px;
        gap: 15px;
    }
    .review-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    .reviews-track .review-card:nth-child(1) { transform: rotateY(0deg) translateZ(220px); }
    .reviews-track .review-card:nth-child(2) { transform: rotateY(60deg) translateZ(220px); }
    .reviews-track .review-card:nth-child(3) { transform: rotateY(120deg) translateZ(220px); }
    .reviews-track .review-card:nth-child(4) { transform: rotateY(180deg) translateZ(220px); }
    .reviews-track .review-card:nth-child(5) { transform: rotateY(240deg) translateZ(220px); }
    .reviews-track .review-card:nth-child(6) { transform: rotateY(300deg) translateZ(220px); }

    .games-carousel-container {
        height: 430px;
        margin-top: 70px;
    }
    .games-track {
        width: 280px;
    }
    .games-track .game-card {
        width: 280px;
        height: 380px;
        margin-left: -140px;
        padding: 15px;
    }
    .games-track .game-card:nth-child(1) { transform: rotateY(0deg) translateZ(300px); }
    .games-track .game-card:nth-child(2) { transform: rotateY(60deg) translateZ(300px); }
    .games-track .game-card:nth-child(3) { transform: rotateY(120deg) translateZ(300px); }
    .games-track .game-card:nth-child(4) { transform: rotateY(180deg) translateZ(300px); }
    .games-track .game-card:nth-child(5) { transform: rotateY(240deg) translateZ(300px); }
    .games-track .game-card:nth-child(6) { transform: rotateY(300deg) translateZ(300px); }
}

@media (max-width: 768px) {
    .navbar { width: 95%; justify-content: space-between; padding: 8px 16px; top: 15px;}
    .nav-links { display: none; }
    .nav-actions { gap: 15px; }
    .nav-phone { display: none; }
    .hero { justify-content: center; padding-bottom: 0; }
    .gift-banner { padding: 40px 30px; }
}

/* Global cursor overrides to restore default browser cursor */
.cursor-dot, .cursor-ring {
    display: none !important;
}
body, html {
    cursor: default !important;
}
a, button, .action-box, .bento-card, .faq-item, .review-card, .amount-card, .time-slot-btn, .calendar-date, .game-select-card, .calendar-nav-btn {
    cursor: pointer !important;
}
.premium-input, .premium-textarea {
    cursor: text !important;
}
.premium-slider {
    cursor: pointer !important;
}

/* ==========================================
   CONVERSION & WOW-FACTOR PREMIUM ADDITIONS
   ========================================== */

/* Game Specifications Dashboard */
.game-specs {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}
.game-spec {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(63, 187, 240, 0.95);
    background: rgba(63, 187, 240, 0.08);
    border: 1px solid rgba(63, 187, 240, 0.15);
    padding: 6px 12px;
    border-radius: 6px;
    letter-spacing: 0.02em;
}

/* Cinematic Video Modal */
.glass-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: rgba(3, 3, 3, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    padding: 40px 10px;
    box-sizing: border-box;
}
.glass-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.glass-modal-overlay {
    position: absolute;
    width: 100%; height: 100%;
    cursor: pointer;
}
.glass-modal-container {
    position: relative;
    width: 90%;
    max-width: 960px;
    aspect-ratio: 16/9;
    background: rgba(15, 15, 15, 0.6);
    border: 1.5px solid rgba(63, 187, 240, 0.3);
    border-radius: 24px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    animation: modalCyberGlow 3s infinite alternate ease-in-out;
    margin: auto;
}

@keyframes modalCyberGlow {
    0% {
        box-shadow: 0 30px 100px rgba(0, 0, 0, 0.9), 0 0 15px rgba(63, 187, 240, 0.08);
        border-color: rgba(63, 187, 240, 0.25);
    }
    100% {
        box-shadow: 0 30px 100px rgba(0, 0, 0, 0.9), 0 0 35px rgba(63, 187, 240, 0.25);
        border-color: rgba(63, 187, 240, 0.45);
    }
}

/* HUD Brackets */
.hud-corner {
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid #3fbbf0;
    z-index: 5;
    pointer-events: none;
    opacity: 0.65;
}
.hud-corner.top-left { top: 15px; left: 15px; border-right: none; border-bottom: none; }
.hud-corner.top-right { top: 15px; right: 15px; border-left: none; border-bottom: none; }
.hud-corner.bottom-left { bottom: 15px; left: 15px; border-right: none; border-top: none; }
.hud-corner.bottom-right { bottom: 15px; right: 15px; border-left: none; border-top: none; }

/* HUD Status Line */
.modal-hud-status {
    position: absolute;
    top: 17px;
    left: 45px;
    font-family: 'Outfit', 'Inter', monospace;
    font-size: 9px;
    font-weight: 600;
    color: rgba(63, 187, 240, 0.85);
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 5;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 6px;
}
.modal-hud-status .hud-dot {
    width: 5px;
    height: 5px;
    background-color: #3fbbf0;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #3fbbf0;
    animation: hudDotBlink 1.2s infinite alternate ease-in-out;
}

@keyframes hudDotBlink {
    0% { opacity: 0.15; }
    100% { opacity: 1; }
}

.glass-modal.active .glass-modal-container {
    transform: scale(1);
}
.glass-modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}
.glass-modal-close:hover {
    background: #fff;
    color: #030303;
    transform: rotate(90deg);
}
.glass-modal-video-wrapper {
    width: 100%; height: 100%;
    position: relative;
}

/* Laser Scanline Sweeper */
.glass-modal-video-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, rgba(63, 187, 240, 0) 0%, rgba(63, 187, 240, 0.35) 50%, rgba(63, 187, 240, 0) 100%);
    animation: laserSweep 4.5s linear infinite;
    pointer-events: none;
    z-index: 4;
}

@keyframes laserSweep {
    0% { top: 0%; }
    100% { top: 100%; }
}

.glass-modal-video-wrapper iframe,
.glass-modal-video-wrapper video {
    width: 100%; height: 100%;
    border: none;
    background: #000;
    object-fit: contain;
}

/* Sci-Fi Gamified High-Tech confirmation ticket screen */
.scifi-ticket-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(3, 3, 3, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 10050;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
}
.scifi-ticket-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.scifi-ticket-box {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(5, 5, 5, 0.95) 100%);
    border: 1px dashed rgba(63, 187, 240, 0.4);
    box-shadow: 0 0 50px rgba(63, 187, 240, 0.15);
    border-radius: 24px;
    width: 100%;
    max-width: 520px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.scifi-ticket-overlay.active .scifi-ticket-box {
    transform: translateY(0) scale(1);
}
.scifi-ticket-glow {
    position: absolute;
    width: 120px; height: 120px;
    background: rgba(63, 187, 240, 0.25);
    filter: blur(60px);
    border-radius: 50%;
    top: -40px; left: -40px;
}
.ticket-qr-mock {
    width: 120px; height: 120px;
    margin: 25px auto;
    background: rgba(63, 187, 240, 0.04);
    border: 1px solid rgba(63, 187, 240, 0.35);
    padding: 10px;
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-content: space-between;
    justify-content: space-between;
    box-shadow: 0 0 20px rgba(63, 187, 240, 0.08);
}
.ticket-qr-block {
    width: 16px; height: 16px;
    background: rgba(63, 187, 240, 0.85);
    border-radius: 2px;
}
.ticket-qr-corner {
    width: 28px; height: 28px;
    border: 4px solid #3fbbf0;
    border-radius: 4px;
}
.ticket-detail-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.ticket-detail-row span:first-child {
    color: rgba(255, 255, 255, 0.5);
}
.ticket-detail-row span:last-child {
    color: #fff;
    font-weight: 500;
}
.ticket-barcode {
    height: 40px;
    margin: 25px auto 10px auto;
    width: 80%;
    background-image: repeating-linear-gradient(90deg, #3fbbf0 0px, #3fbbf0 2px, transparent 2px, transparent 6px, #3fbbf0 6px, #3fbbf0 10px);
    opacity: 0.7;
    animation: barcodePulse 2s infinite ease-in-out;
}
@keyframes barcodePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.95; }
}
.ticket-countdown {
    font-family: var(--font-mono);
    color: #3fbbf0;
    font-size: 0.75rem;
    margin-top: 15px;
    letter-spacing: 0.05em;
    display: inline-block;
    padding: 4px 10px;
    background: rgba(63, 187, 240, 0.05);
    border: 1px solid rgba(63, 187, 240, 0.2);
    border-radius: 4px;
}

/* ==========================================================================
   CONVERSION & WOW-FACTOR UPGRADES: DRAWER, QUIZ MATCHMAKER & SCARCITY TICKERS
   ========================================================================== */

/* --- EXPERIENCE SLIDE-OUT DRAWER --- */
.drawer-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(3, 3, 3, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.experience-drawer {
    position: fixed;
    top: 0; right: 0;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 9950;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.6);
}
.experience-drawer.active {
    transform: translateX(0);
}
.drawer-close {
    position: absolute;
    top: 20px; left: 20px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}
.drawer-close:hover {
    background: #fff;
    color: #030303;
    transform: rotate(90deg);
}
.drawer-header-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.drawer-header-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 80px;
    background: linear-gradient(180deg, transparent, rgba(15,15,15,0.95));
}
.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.drawer-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
}
.drawer-grid-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.drawer-spec-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.drawer-spec-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}
.drawer-spec-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
}
.drawer-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}
.drawer-footer {
    padding: 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15,15,15,0.95);
}

/* --- CYBERNETIC VR MATCHMAKER QUIZ --- */
.quiz-widget-trigger {
    position: fixed;
    bottom: 30px; right: 30px;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255,255,255,0.02);
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    cursor: pointer;
    z-index: 9800;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.quiz-widget-trigger:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255,255,255,0.06);
    transform: translateY(-2px);
}
.quiz-pulse-dot {
    width: 8px; height: 8px;
    background: #3fbbf0;
    border-radius: 50%;
    animation: quizPulse 1.5s infinite;
}
@keyframes quizPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(63, 187, 240, 0.7); }
    70% { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(63, 187, 240, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(63, 187, 240, 0); }
}

.matchmaker-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(3, 3, 3, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 9850;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.matchmaker-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.matchmaker-box {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
    border-radius: 32px;
    width: 90%;
    max-width: 550px;
    padding: 50px;
    text-align: center;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.matchmaker-overlay.active .matchmaker-box {
    transform: scale(1);
}
.quiz-close {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.quiz-close:hover {
    background: #fff;
    color: #030303;
    transform: rotate(90deg);
}
.quiz-step {
    display: none;
    flex-direction: column;
    gap: 30px;
}
.quiz-step.active {
    display: flex;
    animation: quizFadeIn 0.5s ease forwards;
}
@keyframes quizFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
.quiz-question {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: #fff;
    line-height: 1.2;
}
.quiz-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}
.quiz-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 24px;
    border-radius: 16px;
    color: rgba(255,255,255,0.8);
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}
.quiz-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.quiz-option.selected {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}
.quiz-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    margin-top: 40px;
    overflow: hidden;
    position: relative;
}
.quiz-progress-fill {
    height: 100%;
    width: 33.3%;
    background: #fff;
    border-radius: 2px;
    transition: width 0.4s ease;
}

/* --- CONVERSION SCARCITY BADGE & TICKER --- */
.scarcity-ticker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 25px;
}
.scarcity-pulse {
    width: 6px; height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: redPulse 1.2s infinite;
}
@keyframes redPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1.2); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.experience-card-hover-trigger {
    cursor: pointer !important;
}

/* Drawer & Quiz Responsive Refinements */
@media (max-width: 768px) {
    .experience-drawer {
        max-width: 100%;
    }
    .drawer-body {
        padding: 20px;
    }
    .matchmaker-box {
        padding: 30px 20px;
    }
    .quiz-question {
        font-size: 1.5rem;
    }
}

/* ==========================================
   MOBILE HAMBURGER & RESPONSIVE GRID OVERRIDES
   ========================================== */

/* Hamburger Button */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001; /* Must be above mobile nav overlay */
}

.nav-hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, background-color 0.4s;
}

/* Hamburger active transformation */
.nav-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background-color: #3fbbf0;
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background-color: #3fbbf0;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 3, 3, 0.96);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 70px;
    padding-bottom: 20px;
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 0 20px;
}

.mobile-nav-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.4s ease, transform 0.4s ease;
    text-align: center;
}

.mobile-nav-links a:hover {
    color: #3fbbf0;
    transform: scale(1.05);
}

.mobile-nav-book-btn {
    border: none !important;
    background: linear-gradient(135deg, #ff0055 0%, #ff3b30 100%) !important;
    color: #fff !important;
    padding: 14px 44px;
    border-radius: 100px;
    margin-top: 15px;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.4);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.mobile-nav-book-btn:hover {
    background: linear-gradient(135deg, #ff1a6c 0%, #ff5247 100%) !important;
    box-shadow: 0 0 25px rgba(255, 0, 85, 0.75);
    color: #fff !important;
    transform: scale(1.05);
}

/* Responsive Grid & Text Sizing Overrides */
@media (max-width: 1024px) {
    /* Overrides for inline product card spans */
    .product-grid > .bento-card {
        grid-column: span 1 !important;
    }
    
    /* Overrides for inline styled grid layouts */
    .event-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    #contacto .booking-card {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 0 !important;
    }

    #contacto .booking-card > div {
        padding: 30px 20px !important;
        border-radius: 24px !important;
    }

    .game-select-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

@media (max-width: 768px) {
    /* Mobile navigation elements toggle visibility */
    .nav-hamburger {
        display: flex;
    }
    
    .nav-links,
    .nav-phone,
    .nav-btn {
        display: none !important;
    }
    
    .navbar {
        width: 92% !important;
        top: 15px !important;
        padding: 10px 20px !important;
        z-index: 10001 !important;
    }

    .mobile-nav-book-btn {
        display: block !important;
    }

    .mobile-nav-phone {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
        padding: 12px 18px !important;
        background: rgba(255, 0, 85, 0.1) !important;
        border: 1px solid rgba(255, 0, 85, 0.4) !important;
        border-radius: 16px !important;
        color: #ff0055 !important;
        font-family: var(--font-display);
        font-size: 1.05rem !important;
        font-weight: 600;
        text-decoration: none;
        letter-spacing: 1px;
    }
    .mobile-nav-phone svg {
        stroke: #ff0055 !important;
        width: 20px;
        height: 20px;
    }

    .cyber-wheel-trigger {
        padding: 10px 18px !important;
        bottom: 85px !important;
        right: 20px !important;
        font-size: 0.7rem !important;
        gap: 8px !important;
    }
    .cyber-wheel-trigger svg {
        width: 18px !important;
        height: 18px !important;
    }

    /* Forms container scaling */
    #bookingForm, #giftForm {
        padding: 30px 20px !important;
        border-radius: 24px !important;
        gap: 25px !important;
    }

    .booking-container {
        grid-template-columns: 1fr !important;
    }
    
    .event-select-grid {
        grid-template-columns: 1fr !important;
    }

    .booking-summary {
        flex-direction: column;
        align-items: stretch !important;
        gap: 20px;
        text-align: center;
    }

    .booking-summary .action-box {
        justify-content: center;
    }

    /* Form two column grids stacking */
    .two-col-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* Subpage padding */
    .content {
        padding-top: 110px !important;
    }

    /* Grid time slots columns */
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    /* Trust badges responsive layout */
    .trust-guarantee-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px !important;
    }

    /* Custom layout padding overrides */
    .screen {
        padding: 60px 15px !important;
    }

    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
        line-height: 1.25 !important;
    }

    .bento-title {
        font-size: 1.45rem !important;
    }

    .gift-banner {
        padding: 30px 20px !important;
        border-radius: 24px !important;
        text-align: center !important;
    }

    .gift-banner .bento-desc,
    .gift-banner h2 {
        text-align: center !important;
    }
    .gift-banner .gift-content-left,
    .gift-banner .gift-content-right {
        text-align: center !important;
        min-width: 100% !important;
        flex: 1 1 100% !important;
    }

    /* Experience details slide-out drawer on mobile */
    .experience-drawer {
        max-width: 100% !important;
    }

    .drawer-body {
        padding: 20px !important;
    }

    .drawer-title {
        font-size: 1.8rem !important;
    }

    .matchmaker-box {
        padding: 30px 15px !important;
    }

    .quiz-question {
        font-size: 1.4rem !important;
    }
}

@media (max-width: 580px) {
    .game-select-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .player-select-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 8px !important;
    }
}

@media (max-width: 480px) {
    /* Navbar compact sizing on very narrow screens */
    .navbar {
        padding: 8px 12px !important;
    }

    .nav-logo {
        font-size: 0.95rem !important;
    }

    .logo-icon {
        width: 32px !important;
    }

    .nav-btn {
        padding: 6px 12px !important;
        font-size: 0.7rem !important;
    }

    .nav-actions {
        gap: 10px !important;
    }

    /* Calendar elements fitting */
    .calendar-days-grid {
        gap: 4px !important;
    }

    .calendar-date {
        padding: 8px 0 !important;
        font-size: 0.8rem !important;
    }

    .calendar-month {
        font-size: 1.05rem !important;
    }

    /* Gift card presets columns */
    .amount-select-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    /* Scientific Ticket overlay styles */
    .scifi-ticket-box {
        padding: 25px 15px !important;
        border-radius: 16px !important;
    }

    .ticket-qr-mock {
        width: 80px !important;
        height: 80px !important;
        margin: 15px auto !important;
    }

    .ticket-detail-row {
        font-size: 0.75rem !important;
        padding: 8px 0 !important;
    }

    .ticket-barcode {
        height: 30px !important;
        margin: 15px auto 10px auto !important;
    }
}

/* ==========================================
   USER AUTH & PROFILE PREMIUM STYLING
   ========================================== */

/* Minimalist Noir Login Modal styling */
.login-modal-container {
    max-width: 580px !important;
    width: 90% !important;
    padding: 45px 50px !important;
    border-radius: 24px !important;
    background: rgba(10, 10, 10, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 0, 85, 0.06) !important;
    animation: none !important;
    aspect-ratio: auto !important;
    height: auto !important;
    overflow: visible !important;
}

/* Minimalist Noir Profile Modal styling */
.profile-modal-container {
    max-width: 820px !important;
    width: 90% !important;
    padding: 45px 50px !important;
    border-radius: 24px !important;
    background: rgba(10, 10, 10, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 215, 0, 0.06) !important;
    aspect-ratio: auto !important;
    height: auto !important;
    overflow: visible !important;
}

@media screen and (max-width: 768px) {
    .profile-modal-container {
        padding: 30px 25px !important;
    }
    .profile-modal-container .profile-layout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

@media screen and (max-width: 480px) {
    .login-modal-container {
        padding: 30px 20px !important;
        border-radius: 16px !important;
    }
    .login-modal-container .modal-tabs {
        margin-bottom: 15px !important;
    }
    .login-modal-container .avatar-select-grid {
        gap: 6px !important;
    }
    .login-modal-container .action-box {
        padding: 12px !important;
        font-size: 0.9rem !important;
    }
    .profile-modal-container {
        padding: 25px 15px !important;
        border-radius: 16px !important;
    }
}

/* Neon Tabs styling */
.modal-tab, .profile-section-tab {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
}

.modal-tab::after, .profile-section-tab::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff0055;
    box-shadow: 0 0 8px #ff0055;
    transition: all 0.3s ease;
}

.profile-section-tab::after {
    background: #3fbbf0 !important;
    box-shadow: 0 0 8px #3fbbf0 !important;
}

.modal-tab.active::after, .profile-section-tab.active::after {
    width: 100%;
}

.modal-tab:not(.active), .profile-section-tab:not(.active) {
    color: rgba(255, 255, 255, 0.45) !important;
}

.modal-tab:hover, .profile-section-tab:hover {
    color: #fff !important;
}

/* Cyberpunk Avatar option styling */
.avatar-option {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.avatar-option:hover {
    border-color: rgba(255, 215, 0, 0.5) !important;
    opacity: 0.85 !important;
    transform: scale(1.08);
}

.avatar-option.selected {
    border-color: gold !important;
    opacity: 1 !important;
    transform: scale(1.12);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4) !important;
}

/* Profile Account History Card */
.history-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.history-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.history-card-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.history-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.status-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
}

.status-badge.confirmed {
    color: #00ff66;
    background: rgba(0, 255, 102, 0.08);
    border: 1px solid rgba(0, 255, 102, 0.15);
}

.status-badge.pending {
    color: #3fbbf0;
    background: rgba(63, 187, 240, 0.08);
    border: 1px solid rgba(63, 187, 240, 0.15);
}

/* Custom Scrollbar for profile lists */
.profile-tab-panel::-webkit-scrollbar {
    width: 4px;
}

.profile-tab-panel::-webkit-scrollbar-track {
    background: transparent;
}

.profile-tab-panel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.profile-tab-panel::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 580px) {
    .profile-layout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* ==========================================
   14. SYSTEM BOOKING & CYBER WHEEL STYLES
   ========================================== */

/* Custom Time Slot States */
.time-slot-btn.matchmaking {
    border-color: #a13bf0 !important;
    color: #fff !important;
    box-shadow: 0 0 10px rgba(161, 59, 240, 0.3), inset 0 0 10px rgba(161, 59, 240, 0.1) !important;
    background: rgba(161, 59, 240, 0.05) !important;
    animation: slotMatchmakingPulse 2s infinite ease-in-out;
}
.time-slot-btn.matchmaking:hover {
    background: rgba(161, 59, 240, 0.15) !important;
    box-shadow: 0 0 20px rgba(161, 59, 240, 0.5), inset 0 0 15px rgba(161, 59, 240, 0.2) !important;
}

@keyframes slotMatchmakingPulse {
    0% { border-color: rgba(161, 59, 240, 0.4); box-shadow: 0 0 10px rgba(161, 59, 240, 0.2); }
    50% { border-color: rgba(161, 59, 240, 1); box-shadow: 0 0 20px rgba(161, 59, 240, 0.6); }
    100% { border-color: rgba(161, 59, 240, 0.4); box-shadow: 0 0 10px rgba(161, 59, 240, 0.2); }
}

.time-slot-btn.full {
    border-color: rgba(255, 51, 51, 0.2) !important;
    color: rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 51, 51, 0.02) !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    box-shadow: none !important;
}

.time-slot-btn.blocked {
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.15) !important;
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.4) 10px,
        rgba(255, 255, 255, 0.02) 10px,
        rgba(255, 255, 255, 0.02) 20px
    ) !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    box-shadow: none !important;
}

/* Matchmaker Board Row */
.matchmaker-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.matchmaker-row:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(161, 59, 240, 0.3);
    transform: translateY(-2px);
}

@keyframes matchmakingPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(161, 59, 240, 0.7); }
    70% { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(161, 59, 240, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(161, 59, 240, 0); }
}

/* Floating VR Reward Button Trigger */
.cyber-wheel-trigger {
    position: fixed;
    bottom: 95px; right: 30px;
    background: rgba(15, 5, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 0, 85, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 0, 85, 0.2);
    padding: 14px 28px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ff0055;
    text-shadow: 0 0 8px rgba(255, 0, 85, 0.4);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 9800;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: premiumTriggerGlowRed 4s infinite ease-in-out;
}
.cyber-wheel-trigger:hover {
    border-color: rgba(255, 0, 85, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 0, 85, 0.6);
    transform: translateY(-2px) scale(1.02);
    color: #fff;
}
.cyber-wheel-dot {
    width: 8px; height: 8px;
    background: #3fbbf0;
    border-radius: 50%;
    animation: premiumTriggerDot 2s infinite;
}
@keyframes premiumTriggerGlow {
    0% { border-color: rgba(63, 187, 240, 0.3); }
    50% { border-color: rgba(63, 187, 240, 0.8); }
    100% { border-color: rgba(63, 187, 240, 0.3); }
}
@keyframes premiumTriggerDot {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(63, 187, 240, 0.8); }
    70% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(63, 187, 240, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(63, 187, 240, 0); }
}

/* Fullscreen Premium VR Wheel Modal Overlay */
.cyber-wheel-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(5, 7, 12, 0.92);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 9950;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: var(--font-body);
}
.cyber-wheel-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cyber-wheel-modal-container {
    width: 700px;
    background: linear-gradient(145deg, rgba(16, 22, 35, 0.8), rgba(8, 12, 20, 0.9));
    border: 1px solid rgba(63, 187, 240, 0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 40px rgba(63, 187, 240, 0.15), inset 0 0 20px rgba(63, 187, 240, 0.05);
    border-radius: 30px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Premium Wheel Canvas & Disc */
.cyber-wheel-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.cyber-wheel-wrapper {
    width: 300px; height: 300px;
    position: relative;
    margin-bottom: 20px;
}
.cyber-wheel-disc-svg {
    width: 100%; height: 100%;
    transform: rotate(0deg);
    transition: transform 6s cubic-bezier(0.05, 0.9, 0.1, 1);
    filter: drop-shadow(0 0 20px rgba(63, 187, 240, 0.25));
}
.cyber-wheel-indicator {
    position: absolute;
    top: -15px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 26px solid #fff;
    z-index: 5;
    filter: drop-shadow(0 0 8px #3fbbf0);
}
.cyber-wheel-center-cap {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #111, #222);
    border: 3px solid #3fbbf0;
    box-shadow: 0 0 15px rgba(63, 187, 240, 0.6), inset 0 0 10px rgba(0,0,0,0.8);
    border-radius: 50%;
    z-index: 4;
}

/* Right Console Side */
.cyber-wheel-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cyber-terminal-monitor {
    background: rgba(10, 15, 25, 0.5);
    border: 1px solid rgba(63, 187, 240, 0.25);
    border-radius: 16px;
    padding: 24px;
    height: 180px;
    overflow-y: auto;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #fff;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}
.cyber-terminal-monitor::-webkit-scrollbar {
    width: 4px;
}
.cyber-terminal-monitor::-webkit-scrollbar-thumb {
    background: rgba(63, 187, 240, 0.5);
    border-radius: 4px;
}

.cyber-terminal-line {
    margin-bottom: 8px;
    border-left: 3px solid #3fbbf0;
    padding-left: 10px;
    white-space: pre-wrap;
    letter-spacing: 0.2px;
}

.cyber-wheel-spin-btn {
    background: linear-gradient(135deg, rgba(63, 187, 240, 0.1), rgba(63, 187, 240, 0.2));
    border: 1px solid #3fbbf0;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 30px;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(63, 187, 240, 0.15);
}
.cyber-wheel-spin-btn:hover {
    background: #3fbbf0;
    color: #000;
    box-shadow: 0 8px 25px rgba(63, 187, 240, 0.4);
    transform: translateY(-2px);
}
.cyber-wheel-spin-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
    border-color: #555;
    background: rgba(255,255,255,0.05);
    color: #888;
    box-shadow: none;
}

/* Responsive Wheel Modal */
@media (max-width: 820px) {
    .cyber-wheel-modal-container {
        width: 90%;
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 20px;
    }
    .cyber-wheel-wrapper {
        width: 240px; height: 240px;
    }
}

/* Event Type Selection Cards */
.event-select-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.event-select-card:hover {
    border-color: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.04) !important;
}
.event-select-card.active {
    border-color: #3fbbf0 !important;
    box-shadow: 0 0 15px rgba(63, 187, 240, 0.25), inset 0 0 10px rgba(63, 187, 240, 0.05) !important;
    background: rgba(63, 187, 240, 0.06) !important;
}



/* --- MINI MAP GALLERY INSIDE CARDS --- */
.game-maps-gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-top: 15px;
    scrollbar-width: thin;
    scrollbar-color: rgba(63, 187, 240, 0.4) transparent;
}

.game-maps-gallery::-webkit-scrollbar {
    height: 4px;
}

.game-maps-gallery::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
}

.game-maps-gallery::-webkit-scrollbar-thumb {
    background: rgba(63, 187, 240, 0.4);
    border-radius: 4px;
}

.map-thumbnail {
    flex: 0 0 auto;
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.map-thumbnail:hover {
    transform: translateY(-2px);
}

.map-thumbnail-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-thumbnail-title {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    line-height: 1.1;
    word-break: break-word;
}

/* FOMO Widget Toast */
#fomo-toast-container {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.fomo-toast {
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px 20px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    pointer-events: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 350px;
}

.fomo-toast .fomo-icon-box {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ========================================= */
/* MOBILE PERFORMANCE & OPTIMIZATIONS      */
/* ========================================= */
@media (max-width: 768px), (pointer: coarse), (hover: none) {
    /* Disable heavy backdrop-filters on mobile to prevent GPU lag.
       Containers get a solid fallback background so text stays readable. */
    .bento-card,
    .nav-container,
    .navbar,
    .cyber-wheel-trigger,
    .cyber-wheel-modal-container,
    .cyber-wheel-overlay,
    .fomo-toast,
    .booking-card,
    .game-select-card,
    .glass-modal,
    .experience-drawer,
    .quiz-widget-trigger,
    .matchmaker-overlay,
    .login-modal-container,
    .profile-modal-container,
    .faq-item {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(12, 12, 15, 0.98) !important;
    }
    /* Carousels and dimming overlays: drop the expensive blur, keep own background */
    .games-track .game-card,
    .reviews-track .review-card,
    .bento-badge,
    .drawer-overlay,
    .scifi-ticket-overlay,
    .mobile-nav-overlay {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    /* FOMO widget position change to top */
    #fomo-toast-container {
        top: 85px;
        bottom: auto;
        left: 20px;
        right: 20px;
        gap: 10px;
    }
    .fomo-toast {
        max-width: 100%;
        transform: translateY(-20px);
        padding: 12px 16px;
    }
    
    /* Adjust cyber wheel modal layout for mobile */
    .cyber-wheel-modal-container {
        flex-direction: column;
        padding: 20px;
        max-width: 95%;
        border-radius: 20px;
        gap: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }
    .cyber-wheel-left {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    .cyber-wheel-disc-svg {
        max-width: 250px;
        max-height: 250px;
    }
    
    /* Adjust text sizes in Hero */
    .hero-title {
        font-size: 2.8rem !important;
    }
    .hero-subtitle {
        font-size: 1.05rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    
    /* Optimize Bento Cards layout */
    .bento-card {
        padding: 25px 20px !important;
    }
    
    /* Game selector responsive */
    .game-select-card {
        padding: 15px;
    }
}

/* ============================================================
   LEGAL / STATIC PAGES (Aviso legal, Privacidad, Cookies, etc.)
   ============================================================ */
.legal-topbar {
    position: sticky; top: 0; z-index: 50;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 6vw;
    background: rgba(3, 3, 3, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.legal-topbar a.legal-brand {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
    color: var(--text-primary); text-decoration: none; letter-spacing: 1px;
}
.legal-topbar a.legal-home {
    font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-cyan);
    text-decoration: none; border: 1px solid rgba(63, 187, 240, 0.4);
    padding: 8px 16px; border-radius: 8px; transition: background 0.2s;
}
.legal-topbar a.legal-home:hover { background: rgba(63, 187, 240, 0.12); }
.legal-topbar .legal-nav-right { display: flex; align-items: center; gap: 10px; }
#legalLangToggle {
    font-family: var(--font-mono); font-size: 0.8rem; color: #fff;
    background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 8px 14px; border-radius: 8px; cursor: pointer; transition: background 0.2s;
}
#legalLangToggle:hover { background: rgba(255, 255, 255, 0.12); }

@media (max-width: 600px) {
    .legal-topbar { padding: 14px 5vw; }
    .legal-topbar a.legal-brand { font-size: 0.95rem; }
    .legal-topbar a.legal-home { padding: 7px 12px; font-size: 0.72rem; }
    #legalLangToggle { padding: 7px 11px; font-size: 0.72rem; }
    .legal-wrap { padding: 40px 6vw 80px; }
    .legal-wrap table.legal-table,
    .legal-wrap table.legal-table tbody,
    .legal-wrap table.legal-table tr,
    .legal-wrap table.legal-table td,
    .legal-wrap table.legal-table th { display: block; width: 100%; }
    .legal-wrap table.legal-table tr {
        margin-bottom: 14px; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; overflow: hidden;
    }
    .legal-wrap table.legal-table td,
    .legal-wrap table.legal-table th { border: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

.legal-wrap {
    max-width: 820px; margin: 0 auto; padding: 60px 6vw 100px;
}
.legal-wrap h1 {
    font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem);
    color: #fff; margin-bottom: 8px;
}
.legal-wrap .legal-updated {
    font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted);
    margin-bottom: 40px; display: block;
}
.legal-wrap h2 {
    font-family: var(--font-display); font-size: 1.4rem; color: var(--text-cyan);
    margin: 38px 0 14px;
}
.legal-wrap h3 {
    font-family: var(--font-body); font-size: 1.05rem; color: #fff;
    margin: 24px 0 8px; font-weight: 600;
}
.legal-wrap p, .legal-wrap li {
    font-family: var(--font-body); font-size: 0.98rem; line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}
.legal-wrap ul { padding-left: 22px; margin: 10px 0; }
.legal-wrap li { margin-bottom: 7px; }
.legal-wrap a { color: var(--text-cyan); }
.legal-wrap .legal-fill {
    color: #ffd166; font-family: var(--font-mono); font-size: 0.92em;
    background: rgba(255, 209, 102, 0.08); padding: 1px 6px; border-radius: 4px;
}
.legal-wrap table.legal-table {
    width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.9rem;
}
.legal-wrap table.legal-table th,
.legal-wrap table.legal-table td {
    border: 1px solid rgba(255, 255, 255, 0.12); padding: 10px 12px; text-align: left;
    color: rgba(255, 255, 255, 0.78); font-family: var(--font-body);
}
.legal-wrap table.legal-table th {
    background: rgba(255, 255, 255, 0.04); color: #fff; font-weight: 600;
}

/* Cookie consent banner */
#cookieConsent {
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9999;
    max-width: 880px; margin: 0 auto;
    background: rgba(10, 12, 16, 0.97);
    border: 1px solid rgba(63, 187, 240, 0.25);
    border-radius: 16px; padding: 22px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    display: none; flex-wrap: wrap; align-items: center; gap: 16px;
}
#cookieConsent.show { display: flex; }
#cookieConsent .cc-text {
    flex: 1 1 360px; font-family: var(--font-body); font-size: 0.88rem;
    line-height: 1.55; color: rgba(255, 255, 255, 0.8);
}
#cookieConsent .cc-text a { color: var(--text-cyan); }
#cookieConsent .cc-actions { display: flex; gap: 10px; flex-wrap: wrap; }
#cookieConsent button {
    font-family: var(--font-mono); font-size: 0.8rem; cursor: pointer;
    padding: 11px 20px; border-radius: 9px; border: none; transition: opacity 0.2s;
}
#cookieConsent button:hover { opacity: 0.85; }
.cc-accept { background: var(--text-cyan); color: #02121b; font-weight: 600; }
.cc-reject { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.2) !important; }

/* ============================================================
   ACCESSIBILITY / PERFORMANCE — respect "reduce motion"
   Users who enable "reduce motion" in their OS get a calmer,
   lighter experience. Invisible to everyone else.
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
