﻿/* Cyberpunk Theme - Virtual Dawn Games */
/* Performance: Image Loading Optimization */
/* Content-visibility helps with rendering performance for off-screen images */
img {
    content-visibility: auto;
    contain-intrinsic-size: 300px;
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    content-visibility: auto;
}

img[loading="eager"] {
    content-visibility: visible;
}

/* Image loading states */
img.image-loading {
    opacity: 0.5;
    background: linear-gradient(90deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 50%, rgba(255, 0, 255, 0.1) 100%);
    background-size: 200% 100%;
    animation: imageLoading 1.5s ease-in-out infinite;
}

img.image-loaded {
    opacity: 1;
    animation: imageFadeIn 0.4s ease-out;
}

img.image-error {
    opacity: 0;
}

@keyframes imageLoading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes imageFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Smooth scrolling & SEO Base */
html {
    scroll-behavior: smooth;
    font-size: 100%; /* Ensure base font size is 16px */
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape on iOS */
}

/* Respect user's motion preferences */
@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;
    }
    
    .scanlines {
        animation: none !important;
    }
}

:root {
    --neon-pink: #FF00FF;        /* Vibrant magenta from logo */
    --neon-pink-light: #FF33FF;  /* Bright magenta */
    --neon-pink-dark: #CC00CC;   /* Dark magenta */
    --neon-violet: #6A0DAD;      /* Deep purple from logo */
    --neon-violet-light: #8A2BE2; /* Light violet */
    --neon-blue: #007FFF;        /* Medium blue from logo */
    --neon-cyan: #00FFFF;        /* Bright cyan from logo */
    --neon-orange: #E6512F;      /* Orange-red background from logo */
    --neon-green: #00ff41;       /* Matrix green */
    --dark-bg: #0a0a0a;
    --darker-bg: #030303;
    --text-primary: #ffffff;     /* Pure white for maximum contrast */
    --text-secondary: #e0e0e0;   /* Brighter gray for better readability */
    --text-tertiary: #b0b0b0;    /* Softer gray for less important text */
    --shadow-color: rgba(255, 0, 255, 0.4);
    --border-color: rgba(255, 0, 255, 0.6);
    --glow-color: rgba(255, 0, 255, 0.8);
    --accent-orange: rgba(230, 81, 47, 0.1);
    /* Improved background colors for text readability */
    --text-bg-dark: rgba(0, 0, 0, 0.85);      /* Dark background for text */
    --text-bg-medium: rgba(0, 0, 0, 0.7);     /* Medium dark background */
    --text-bg-light: rgba(0, 0, 0, 0.5);      /* Light dark background */
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: 
        linear-gradient(135deg, #1a0a1a 0%, #0d0a2a 20%, rgba(0, 127, 255, 0.15) 40%, rgba(0, 255, 255, 0.12) 60%, rgba(255, 0, 255, 0.08) 80%, #1a0a2a 100%),
        radial-gradient(ellipse at center top, rgba(0, 127, 255, 0.20) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(255, 0, 255, 0.12) 0%, transparent 45%);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    transition: background 0.8s ease;
    /* Performance optimizations */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Virtual Dawn Scroll Effect - Brighter Colors */
body.scroll-dawn {
    background: 
        linear-gradient(135deg, #1a0a1a 0%, #0d0a2a 15%, rgba(0, 127, 255, 0.25) 35%, rgba(0, 255, 255, 0.20) 55%, rgba(255, 0, 255, 0.15) 75%, #1a0a2a 100%),
        radial-gradient(ellipse at center top, rgba(0, 127, 255, 0.30) 0%, transparent 70%),
        radial-gradient(ellipse at 30% 20%, rgba(0, 255, 255, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(255, 0, 255, 0.20) 0%, transparent 55%);
}

body.scroll-dawn .grid-overlay {
    opacity: 0.95;
    background-image:
        linear-gradient(rgba(0, 127, 255, 0.20) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.18) 1px, transparent 1px),
        linear-gradient(rgba(0, 127, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.10) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px, 10px 10px, 10px 10px;
}

/* Subtle Scanlines - Reduced Effect - Optimized */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        transparent 50%,
        rgba(0, 150, 255, 0.02) 50%
    );
    background-size: 100% 3px;
    pointer-events: none;
    z-index: 1;
    /* animation: scanlines 0.2s linear infinite; REMOVED - too fast/distracting */
    will-change: background-position;
    transform: translateZ(0); /* Force GPU acceleration */
}

@keyframes scanlines {
    0% { background-position: 0 0; }
    100% { background-position: 0 2px; }
}

/* Cyberpunk Static Grid - 1980s Retro Tron/Blade Runner Style */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 0, 128, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: 0 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    will-change: transform;
    transform: perspective(500px) rotateX(60deg) translateY(-50%);
    transform-origin: center top;
    animation: none; /* Completely static - no movement */
}

/* Optional subtle pulse for ambiance */
@keyframes gridPulse {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.45; }
}

/* Removed endlessGrid animation - using static grid */

/* Static Bottom Grid - No Animation */
.retro-grid-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background-image:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 120px 120px, 120px 120px;
    background-position: 0 0, 0 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

/* Removed retroGridBreathe animation - using static grid */

/* YouTube Facade - Performance Optimization */
.video-facade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    background: #000;
}

.video-facade:hover {
    transform: scale(1.02);
}

.video-facade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.video-facade:hover img {
    opacity: 1;
}

.play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 255, 0.9);
    border-radius: 50%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    border: 3px solid var(--neon-cyan);
    box-shadow: 0 0 20px var(--neon-pink), 0 0 40px var(--neon-pink);
    animation: pulse 2s ease-in-out infinite;
}

.play-button::before {
    content: '';
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #fff;
    margin-left: 4px;
}

.video-facade:hover .play-button {
    background: var(--neon-cyan);
    transform: scale(1.15);
    box-shadow: 0 0 30px var(--neon-cyan), 0 0 60px var(--neon-cyan);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px var(--neon-pink), 0 0 40px var(--neon-pink); }
    50% { box-shadow: 0 0 30px var(--neon-pink), 0 0 60px var(--neon-pink), 0 0 80px rgba(255, 0, 255, 0.5); }
}

/* Alternative: Matrix-style background image option */
.grid-overlay.matrix-style {
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,127,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'),
        linear-gradient(45deg, rgba(0, 127, 255, 0.05) 0%, rgba(0, 255, 255, 0.03) 50%, rgba(255, 0, 255, 0.02) 100%);
    background-size: 100px 100px, 100% 100%;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.85; }
    50% { opacity: 0.95; }
}

/* Background Image Options */
.background-image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/backgrounds/cyberpunk-grid.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
}

.background-image-overlay.matrix-style {
    background-image: url('assets/backgrounds/matrix-grid.png');
    opacity: 0.15;
}

.background-image-overlay.neon-city {
    background-image: url('assets/backgrounds/neon-city-skyline.jpg');
    opacity: 0.08;
    background-position: bottom;
}

.background-image-overlay.circuit-board {
    background-image: url('assets/backgrounds/circuit-board-pattern.jpg');
    opacity: 0.12;
    background-size: 200px 200px;
    background-repeat: repeat;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-pink);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--neon-pink);
    text-shadow: 0 0 6px var(--neon-pink), 0 0 12px rgba(255, 0, 255, 0.5);
    letter-spacing: 2px;
}

.logo-subtext {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--neon-cyan);
    text-shadow: 0 0 6px var(--neon-cyan), 0 0 12px rgba(0, 255, 255, 0.5);
    letter-spacing: 3px;
    margin-top: -0.2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-text-fallback {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Special styling for VIRTUAL TWILIGHT navigation link */
.nav-link[href*="comparison.html"] {
    color: var(--neon-orange) !important;
    background: rgba(230, 81, 47, 0.1);
    border: 1px solid var(--neon-orange);
    text-shadow: 0 0 6px var(--neon-orange), 0 0 12px rgba(230, 81, 47, 0.4);
    font-weight: 600;
    letter-spacing: 1.5px;
}

.nav-link[href*="comparison.html"]:hover {
    background: rgba(230, 81, 47, 0.2);
    border: 1px solid var(--neon-orange);
    color: var(--neon-orange) !important;
    text-shadow: 0 0 8px var(--neon-orange), 0 0 16px rgba(230, 81, 47, 0.6);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-link:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 6px var(--neon-pink), 0 0 12px rgba(255, 0, 255, 0.4);
    background: rgba(255, 0, 255, 0.15);
    border: 1px solid var(--neon-pink);
}

/* Active nav link - shows current section */
.nav-link.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan), 0 0 16px rgba(0, 255, 255, 0.5);
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid var(--neon-cyan);
}

.nav-link.active::after {
    width: 100%;
    background: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-pink);
    box-shadow: 0 0 5px var(--neon-pink);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* EPIC 1980s CYBERPUNK GAME LOADER */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.9) 0%, rgba(10, 0, 30, 0.95) 50%, rgba(0, 0, 0, 1) 100%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 0, 40, 0.9) 50%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1.2s ease;
}

.page-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.grid-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Epic Cyberpunk Effects */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Neon scan lines */
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 98px,
            rgba(0, 255, 255, 0.1) 100px
        ),
        /* Data streams */
        linear-gradient(
            45deg,
            transparent 30%,
            rgba(255, 0, 255, 0.05) 50%,
            transparent 70%
        ),
        /* Neural network */
        radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
    animation: cyberpunkPulse 3s ease-in-out infinite;
}

.dawn-text {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 4rem;
    animation: logoReveal 2s ease-out;
}

.text-line {
    font-family: 'Orbitron', monospace;
    font-size: 5rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 
        0 0 20px #00ffff,
        0 0 40px #00ffff,
        0 0 60px #00ffff,
        0 0 80px #00ffff;
    letter-spacing: 12px;
    margin-bottom: 1rem;
    animation: epicGlow 2.5s ease-in-out infinite alternate;
    position: relative;
}

.text-line::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, 
        rgba(0, 255, 255, 0.3), 
        rgba(255, 0, 255, 0.3), 
        rgba(0, 255, 255, 0.3));
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite;
    z-index: -1;
    border-radius: 15px;
}

.text-line:last-child {
    color: #ff00ff;
    text-shadow: 
        0 0 20px #ff00ff,
        0 0 40px #ff00ff,
        0 0 60px #ff00ff,
        0 0 80px #ff00ff;
    animation-delay: 0.5s;
}

.loading-indicator {
    position: relative;
    z-index: 10;
    text-align: center;
}

.loading-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00ff00;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    animation: textFlicker 1.5s ease-in-out infinite;
    text-shadow: 0 0 10px #00ff00;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    background: #00ffff;
    border-radius: 50%;
    animation: epicDotPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 15px #00ffff;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.3s;
    background: #ff00ff;
    box-shadow: 0 0 15px #ff00ff;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.6s;
    background: #00ff00;
    box-shadow: 0 0 15px #00ff00;
}

/* Epic Animations */
@keyframes cyberpunkPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.05) rotate(1deg);
    }
}

@keyframes logoReveal {
    0% { 
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes epicGlow {
    0% { 
        text-shadow: 
            0 0 20px currentColor,
            0 0 40px currentColor,
            0 0 60px currentColor,
            0 0 80px currentColor;
    }
    100% { 
        text-shadow: 
            0 0 30px currentColor,
            0 0 60px currentColor,
            0 0 90px currentColor,
            0 0 120px currentColor;
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes textFlicker {
    0%, 100% { 
        opacity: 0.8;
        text-shadow: 0 0 10px #00ff00;
    }
    50% { 
        opacity: 1;
        text-shadow: 0 0 20px #00ff00;
    }
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(106, 13, 173, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse at 20% 80%, rgba(0, 127, 255, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(5, 5, 15, 0.98) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(0deg, transparent 0px, transparent 99px, rgba(0, 255, 255, 0.03) 100px),
        repeating-linear-gradient(90deg, transparent 0px, transparent 99px, rgba(255, 0, 255, 0.03) 100px);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

/* Hero Background Video */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Animated Hero Background */
.hero-animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--neon-violet) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
    top: 50%;
    right: -150px;
    animation-delay: -7s;
    animation-duration: 25s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
    bottom: -100px;
    left: 30%;
    animation-delay: -14s;
    animation-duration: 22s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 50px) scale(0.95);
    }
    75% {
        transform: translate(-50px, -20px) scale(1.05);
    }
}

/* Keep video background CSS for when MP4 is available */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    min-width: 100%;
    height: auto;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-background iframe,
.hero-video-background #hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77vh; /* 16:9 aspect ratio width */
    min-width: 100%;
    height: 100vh;
    min-height: 56.25vw; /* 16:9 aspect ratio height */
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: 0;
}

.hero-video-background .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.5) 40%,
        rgba(10, 10, 10, 0.7) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* On mobile, use static background instead of video for performance */
@media (max-width: 768px) {
    .hero-video-background iframe,
    .hero-video-background #hero-bg-video {
        display: none;
    }
    
    .hero-video-background {
        background: linear-gradient(
            135deg,
            rgba(106, 13, 173, 0.3) 0%,
            rgba(10, 10, 10, 0.95) 50%,
            rgba(0, 127, 255, 0.2) 100%
        );
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 0, 255, 0.15);
    border: 1px solid var(--neon-pink);
    border-radius: 30px;
    color: var(--neon-pink);
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(255, 0, 255, 0.4),
        0 0 30px rgba(0, 255, 255, 0.2);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    min-width: 120px;
    transition: all 0.3s ease;
}

.hero-stat:hover {
    border-color: var(--neon-pink);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 0, 255, 0.2);
}

.hero-stat .stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.hero-stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid;
    display: inline-block;
    min-width: 180px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-violet));
    border-color: var(--neon-pink);
    color: var(--dark-bg);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.4);
}

.btn-hero-primary:hover {
    background: linear-gradient(45deg, var(--neon-violet), var(--neon-blue));
    box-shadow: 0 0 35px rgba(255, 0, 255, 0.6);
    transform: translateY(-3px);
}

.btn-hero-secondary {
    background: transparent;
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.btn-hero-secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
    transform: translateY(-3px);
}

.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

.hero-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: 
        radial-gradient(circle, rgba(255, 0, 255, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 30% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    border-radius: 50%;
    animation: heroPulse 4s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(106, 13, 173, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 6s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2) rotate(180deg);
        opacity: 0.4;
    }
}

/* EPIC CYBERPUNK GAME HUB */
.game-hub-section {
    padding: 6rem 0;
    min-height: auto;
    background:
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7) 0%, rgba(10, 0, 30, 0.8) 50%, rgba(0, 0, 0, 0.9) 100%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 0, 40, 0.7) 50%, rgba(0, 0, 0, 0.8) 100%);
    position: relative;
    opacity: 1;
}

.game-hub-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Epic scan lines */
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 98px,
            rgba(0, 255, 255, 0.08) 100px
        ),
        /* Data streams */
        linear-gradient(
            45deg,
            transparent 30%,
            rgba(255, 0, 255, 0.03) 50%,
            transparent 70%
        ),
        /* Neural particles */
        radial-gradient(circle at 25% 25%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
    animation: cyberpunkAmbient 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Section Titles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon-pink);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 0 12px var(--neon-pink),
        0 0 24px rgba(255, 0, 255, 0.6);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 0, 20, 0.9) 100%),
        radial-gradient(circle at center, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
    padding: 1.5rem 3rem;
    border-radius: 20px;
    border: 3px solid var(--neon-pink);
    backdrop-filter: blur(15px);
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    animation: sectionGlow 4s ease-in-out infinite alternate;
    letter-spacing: 3px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

@keyframes sectionGlow {
    0% { 
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.9),
            0 0 12px var(--neon-pink),
            0 0 24px rgba(255, 0, 255, 0.6);
        border-color: var(--neon-pink);
    }
    100% { 
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.9),
            0 0 15px var(--neon-cyan),
            0 0 30px rgba(0, 255, 255, 0.5);
        border-color: var(--neon-cyan);
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

/* Games Section */
.games-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 0, 128, 0.02) 50%, transparent 100%);
}

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

.game-card {
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 255, 0.4);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(8px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: gameCardReveal 1s ease-out forwards;
}

.game-card:nth-child(1) { animation-delay: 1s; }
.game-card:nth-child(2) { animation-delay: 1.2s; }
.game-card:nth-child(3) { animation-delay: 1.4s; }
.game-card:nth-child(4) { animation-delay: 1.6s; }

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 0, 255, 0.1) 0%, 
        rgba(0, 255, 255, 0.1) 50%, 
        rgba(255, 0, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

/* Holographic border effect */
.game-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ff00ff);
    border-radius: 15px;
    opacity: 0;
    z-index: -1;
    filter: blur(8px);
    transition: opacity 0.5s ease;
    animation: holographicShift 3s linear infinite;
}

@keyframes holographicShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.game-card:hover::after {
    opacity: 0.6;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 255, 0.8);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(255, 0, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Touch-friendly active state */
.game-card:active,
.game-card.touch-active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

.btn-card:active,
.btn-card.touch-active,
.btn-hero:active,
.btn-hero.touch-active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.nav-link:active,
.nav-link.touch-active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.game-card:hover::before {
    opacity: 1;
}

.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

/* Old placeholder styles removed */

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 0, 128, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-text {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.game-info {
    padding: 1.5rem;
}

.game-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-pink);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--neon-pink);
}

.game-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(255, 0, 128, 0.2);
    color: var(--neon-pink);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* ============================================
   NEW CONTENT SECTIONS - Creators, VRChat, Mayhem
   ============================================ */

/* Shared Section Base Styles */
.creators-section,
.vrchat-section,
.mayhem-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Creators Section - Purple Theme */
.creators-section {
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.15) 0%, rgba(10, 10, 10, 0.95) 50%, rgba(138, 43, 226, 0.1) 100%);
    border-top: 2px solid var(--neon-violet);
    border-bottom: 1px solid rgba(106, 13, 173, 0.3);
}

.creators-section .section-title {
    color: var(--neon-violet-light);
    text-shadow: 0 0 20px var(--neon-violet);
}

.creators-section .section-subtitle {
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* VRChat Section - Cyan Theme */
.vrchat-section {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(10, 10, 10, 0.95) 50%, rgba(0, 127, 255, 0.1) 100%);
    border-top: 2px solid var(--neon-cyan);
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.vrchat-section .section-title {
    color: #ffffff;
    text-shadow: 0 0 20px var(--neon-cyan), 0 2px 4px rgba(0, 0, 0, 0.9);
    -webkit-text-stroke: 1px var(--neon-cyan);
}

.vrchat-section .section-subtitle {
    color: var(--text-primary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 10px;
}

/* Mayhem Section - Orange/Red Theme */
.mayhem-section {
    background: linear-gradient(135deg, rgba(230, 81, 47, 0.15) 0%, rgba(10, 10, 10, 0.95) 50%, rgba(255, 100, 50, 0.1) 100%);
    border-top: 2px solid var(--neon-orange);
    border-bottom: 1px solid rgba(230, 81, 47, 0.3);
}

.mayhem-section .section-title {
    color: var(--neon-orange);
    text-shadow: 0 0 20px var(--neon-orange);
}

.mayhem-section .section-subtitle {
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.mayhem-section .origin-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--neon-orange);
    text-align: center;
    margin: 3rem 0 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(230, 81, 47, 0.5);
}

/* Video Grid for New Sections */
.creators-videos,
.origin-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.creators-videos iframe,
.origin-videos iframe,
.vrchat-section iframe,
.mayhem-section > .container > iframe,
.adventure-videos iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.creators-videos iframe:hover,
.origin-videos iframe:hover,
.vrchat-section iframe:hover,
.mayhem-section iframe:hover,
.adventure-videos iframe:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.creators-section iframe {
    border-color: rgba(106, 13, 173, 0.4);
}

.vrchat-section iframe {
    border-color: rgba(0, 255, 255, 0.4);
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

.mayhem-section iframe,
.adventure-videos iframe,
.origin-videos iframe {
    border-color: rgba(230, 81, 47, 0.4);
}

/* Adventure Videos Grid */
.adventure-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .creators-section,
    .vrchat-section,
    .mayhem-section {
        padding: 3rem 0;
    }
    
    .creators-videos,
    .adventure-videos,
    .origin-videos {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .creators-section .section-subtitle,
    .vrchat-section .section-subtitle,
    .mayhem-section .section-subtitle {
        padding: 0 1rem;
        font-size: 1rem;
    }
    
    .mayhem-section .origin-title {
        font-size: 1.2rem;
        margin-top: 2rem;
    }
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */
.community-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.08) 0%, rgba(10, 10, 10, 0.95) 50%, rgba(0, 255, 255, 0.08) 100%);
    border-top: 2px solid var(--neon-green);
}

.community-section .section-title {
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green);
}

.community-section .section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.community-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-card:hover {
    transform: translateY(-10px);
}

.fans-card {
    border-color: rgba(0, 255, 65, 0.4);
}

.fans-card:hover {
    box-shadow: 0 20px 40px rgba(0, 255, 65, 0.2);
}

.creators-card {
    border-color: rgba(106, 13, 173, 0.4);
}

.creators-card:hover {
    box-shadow: 0 20px 40px rgba(106, 13, 173, 0.2);
}

.twilight-card {
    border-color: rgba(255, 0, 255, 0.4);
}

.twilight-card:hover {
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.2);
}

.community-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.community-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.community-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-community {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0.3rem;
    transition: all 0.3s ease;
}

.btn-fans {
    background: var(--neon-green);
    color: var(--dark-bg);
}

.btn-fans:hover {
    box-shadow: 0 0 20px var(--neon-green);
    transform: scale(1.05);
}

.btn-creators {
    background: var(--neon-violet);
    color: var(--text-primary);
}

.btn-creators:hover {
    box-shadow: 0 0 20px var(--neon-violet);
    transform: scale(1.05);
}

.btn-crowdfund {
    background: var(--neon-orange);
    color: var(--dark-bg);
}

.btn-crowdfund:hover {
    box-shadow: 0 0 20px var(--neon-orange);
    transform: scale(1.05);
}

.btn-twilight {
    background: transparent;
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
}

.btn-twilight:hover {
    background: var(--neon-pink);
    color: var(--dark-bg);
    box-shadow: 0 0 20px var(--neon-pink);
}

/* ============================================
   BEHIND THE SCENES SECTION
   ============================================ */
.behind-scenes-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.05) 0%, rgba(10, 10, 10, 0.98) 50%, rgba(106, 13, 173, 0.05) 100%);
    border-top: 2px solid var(--neon-pink);
}

.behind-scenes-section .section-title {
    color: var(--neon-pink);
    text-shadow: 0 0 20px var(--neon-pink);
}

.behind-scenes-section .section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.behind-scenes-section .subsection-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: var(--neon-cyan);
    text-align: center;
    margin: 3rem 0 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.behind-scenes-section .section-description {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Team Highlights */
.team-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-member {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 0, 255, 0.2);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--neon-pink);
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid var(--neon-pink);
}

.team-member h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Achievements Gallery */
.achievements-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.achievement-item {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: scale(1.02);
    border-color: gold;
}

.achievement-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.achievement-item p {
    padding: 1rem;
    text-align: center;
    color: gold;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
}

/* Text-based achievement items */
.highlight-achievement {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 0, 255, 0.1));
}

.achievement-text-item {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Featured Videos Section */
.featured-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-item {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 0, 255, 0.4);
    box-shadow: 0 8px 20px rgba(255, 0, 255, 0.2);
}

.video-item h4 {
    padding: 1rem;
    text-align: center;
    color: var(--neon-pink);
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    margin: 0;
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(255, 0, 255, 0.3);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

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

/* Team Adventure Gallery */
.team-adventure-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.team-adventure-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-adventure-gallery img:hover {
    transform: scale(1.05);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

/* Team Names Section */
.team-names-section {
    margin-bottom: 3rem;
}

.team-names-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.team-name-item {
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--neon-pink);
    color: #ddd;
    font-size: 0.95rem;
}

.team-name-item strong {
    color: var(--neon-cyan);
}

/* VREW Education Links */
.vrew-links-section {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.vrew-title {
    font-family: 'Orbitron', monospace;
    color: var(--neon-cyan);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.vrew-subtitle {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.vrew-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.vrew-link {
    display: block;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.vrew-link:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    border-color: var(--neon-cyan);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

/* TAIKA AI Showcase */
.taika-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.taika-hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.taika-info h3 {
    font-family: 'Orbitron', monospace;
    color: var(--neon-cyan);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.taika-info p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-radius: 10px;
}

.taika-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.taika-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.4);
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.taika-features .feature-icon {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .taika-showcase {
        grid-template-columns: 1fr;
    }
}

/* Virtual Twilight Showcase */
.virtual-twilight-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    border: 2px solid rgba(138, 43, 226, 0.6);
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.3);
}

.vt-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.vt-images-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    transition: transform 0.3s ease;
}

.vt-images-grid img:first-child {
    grid-column: span 2;
    height: 200px;
}

.vt-images-grid img:hover {
    transform: scale(1.02);
    border-color: rgba(138, 43, 226, 0.8);
}

.vt-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}

.vt-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #9b59b6;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.8), 0 2px 8px rgba(0, 0, 0, 0.9);
}

.vt-subtitle {
    color: var(--neon-cyan);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 2px 6px rgba(0, 0, 0, 0.9);
}

.vt-description {
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-radius: 10px;
}

.vt-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.vt-feature {
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(138, 43, 226, 0.5);
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.2);
}

.vt-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .virtual-twilight-showcase {
        grid-template-columns: 1fr;
    }
    
    .vt-title {
        font-size: 1.5rem;
    }
}

/* Events Gallery */
.events-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.events-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.events-gallery img:hover {
    transform: scale(1.05);
    border-color: var(--neon-cyan);
}

/* Behind Scenes Videos */
.behind-scenes-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.behind-scenes-videos .video-wrapper {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.behind-scenes-videos video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.behind-scenes-videos p {
    padding: 1rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Education Gallery */
.education-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.edu-item {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 127, 255, 0.3);
    transition: transform 0.3s ease;
}

.edu-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
}

.edu-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.edu-item p {
    padding: 1rem;
    text-align: center;
    color: var(--text-secondary);
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .community-section,
    .behind-scenes-section {
        padding: 3rem 0;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
    }
    
    .team-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
    }
    
    .achievements-gallery {
        grid-template-columns: 1fr;
    }
    
    .events-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .behind-scenes-videos {
        grid-template-columns: 1fr;
    }
}

/* About Section - Muted Blue Theme */
.about-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.08), rgba(0, 100, 200, 0.04));
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 2;
    border-top: 2px solid rgba(0, 150, 255, 0.6);
    border-bottom: 2px solid rgba(0, 150, 255, 0.6);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.about-text-main {
    background: rgba(0, 0, 0, 0.85);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 150, 255, 0.5);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 800px;
}

/* Video Decoration - smaller, background element */
.about-video-decoration {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 0, 255, 0.3);
    box-shadow: 0 8px 20px rgba(255, 0, 255, 0.2);
    opacity: 0.8;
}

.decoration-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Logo Section */
.about-logo-section {
    margin: 2rem 0;
    text-align: center;
}

.about-logo-img {
    max-width: 800px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid rgba(255, 0, 255, 0.5);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3);
}

/* Event Gallery - Compact */
.about-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.about-gallery-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.about-gallery-img:hover {
    transform: scale(1.05);
    border-color: var(--neon-cyan);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.4);
}

.about-description {
    color: var(--text-secondary);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.75);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 150, 255, 0.3);
}

.progress-item {
    margin-bottom: 2rem;
}

.progress-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 0, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-violet), var(--neon-blue), var(--neon-cyan));
    border-radius: 4px;
    transition: width 1s ease-in-out;
    box-shadow: 0 0 10px var(--glow-color);
}

.progress-percent {
    display: block;
    text-align: right;
    color: var(--neon-pink);
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.25rem;
    text-shadow: 0 0 5px var(--neon-pink);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-pink);
    text-shadow: 0 0 15px var(--neon-pink);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Contact Section */
/* Contact & Footer Combined Section - Compact Layout */
.contact-section {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.08), rgba(0, 100, 200, 0.04));
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 2;
    border-top: 2px solid rgba(0, 150, 255, 0.6);
}

.contact-hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    text-align: center;
    margin: 1rem 0 2rem;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(0, 150, 255, 0.5);
    letter-spacing: 2px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Contact Info Full Width */
.contact-info-full {
    background: rgba(0, 0, 0, 0.85);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 150, 255, 0.5);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 100%;
}

.contact-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-primary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-method {
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 150, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(0, 150, 255, 0.1);
    border-color: rgba(0, 150, 255, 0.6);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-form {
    background: rgba(0, 0, 0, 0.85);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 150, 255, 0.5);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, rgba(0, 50, 100, 0.4), rgba(0, 80, 150, 0.2));
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    border-top: 2px solid rgba(0, 150, 255, 0.6);
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.footer-logo {
    text-align: center;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-shrink: 0;
}

.footer-social .social-link {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 150, 255, 0.6);
    backdrop-filter: blur(5px);
    padding: 0.8rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social .social-link:hover {
    background: rgba(0, 150, 255, 0.8);
    color: var(--dark-bg);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.5);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 150, 255, 0.3);
    margin-top: 1.5rem;
}

.footer-bottom p {
    color: var(--text-primary);
    margin: 0.3rem 0;
    font-size: 0.9rem;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.1);
}

.privacy-link {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-link:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

/* Creators Join Image */
.creators-join-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 255, 0.4);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.2);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 0, 40, 0.95));
    border: 2px solid var(--neon-cyan);
    border-radius: 15px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.cookie-content h3 {
    font-family: 'Orbitron', monospace;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.cookie-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cookie-privacy-link {
    color: var(--neon-pink);
    text-decoration: underline;
}

.cookie-privacy-link:hover {
    color: var(--neon-pink-light);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cookie-buttons .btn-primary,
.cookie-buttons .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-links {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-link {
    color: var(--neon-pink);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    text-shadow: 0 0 10px var(--neon-pink);
}

/* Form Styles */
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px var(--shadow-color);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--neon-pink);
    border: none;
    border-radius: 4px;
    color: var(--dark-bg);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--neon-pink-light);
    box-shadow: 0 0 15px var(--neon-pink);
}

/* Screen Reader Only - Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Form Status Messages */
.form-status {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 20px;
}

.form-status.success {
    background: rgba(0, 255, 65, 0.2);
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
}

.form-status.error {
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid #ff0000;
    color: #ff0000;
}

.form-status.sending {
    background: rgba(0, 127, 255, 0.2);
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: rgba(10, 10, 10, 0.9);
    border-top: 1px solid var(--border-color);
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--neon-pink);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 0, 255, 0.1);
    box-shadow: 0 0 10px var(--neon-pink);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    border-top: 2px solid var(--neon-pink);
    padding: 1rem 0;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

    .mobile-menu .nav-link {
        display: block;
        padding: 1.2rem 2rem;
        margin: 0;
        border-bottom: 1px solid rgba(255, 0, 255, 0.2);
        text-align: center;
        font-size: 1.1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.mobile-menu .nav-link:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 0 1rem;
        position: relative;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        padding: 0.8rem;
        font-size: 1.8rem;
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 20, 0.98);
        backdrop-filter: blur(20px);
        padding: 1rem;
        display: none;
        flex-direction: column;
        gap: 0;
        border-bottom: 2px solid var(--neon-pink);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
        z-index: 999;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .mobile-menu .nav-link {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1.2rem;
        color: var(--text-primary);
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 0, 255, 0.2);
        transition: all 0.2s ease;
    }
    
    .mobile-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .mobile-menu .nav-link:hover,
    .mobile-menu .nav-link:focus {
        background: rgba(255, 0, 255, 0.1);
        color: var(--neon-pink);
        padding-left: 2rem;
    }

    .nav-social {
        gap: 0.5rem;
    }

    .nav-social .social-link {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        min-width: 44px;
        min-height: 44px;
    }

    /* Typography */
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        padding: 0.8rem 1.5rem;
        margin-bottom: 2rem;
    }

    .subsection-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    /* Layout */
    .container {
        padding: 0 1rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .in-progress-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Game Cards */
    .game-card {
        margin-bottom: 1rem;
        /* Optimize hover effects for mobile */
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .game-card:active {
        transform: scale(0.98);
    }

    .game-card-content {
        padding: 1rem;
    }

    .game-card-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .game-card-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .game-card-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-card {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        text-align: center;
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .community-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .community-card {
        padding: 1.5rem;
    }

    .community-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Hero Section Mobile */
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .hero-stat {
        min-width: 100px;
        padding: 1rem;
    }

    .hero-stat .stat-number {
        font-size: 1.4rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-hero {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .hero-visual {
        display: none;
    }

    /* Game Hub Section - Fix excessive padding on mobile */
    .game-hub-section {
        padding: 3rem 0;
    }

    /* Contact Section */
    .contact-info-full {
        padding: 1.5rem;
    }

    .contact-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-method {
        padding: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .contact-section {
        padding: 3rem 0 1.5rem;
    }

    /* Game Detail Pages */
    .game-header-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .game-title-large {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .game-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .game-meta {
        justify-content: center;
        gap: 0.8rem;
    }

    .meta-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .description-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title-small {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .description-paragraph {
        font-size: 1rem;
        line-height: 1.6;
    }

    .features-list {
        gap: 0.8rem;
    }

    .feature-item {
        padding: 0.8rem 0;
        font-size: 0.9rem;
    }

    .feature-icon {
        font-size: 1.2rem;
        min-width: 1.5rem;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .tech-item {
        padding: 1rem;
    }

    .tech-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .tech-name {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .tech-desc {
        font-size: 0.8rem;
    }

    .cta-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .cta-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Game Detail Page Styles */
.game-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(5, 5, 5, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.game-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 0, 128, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.game-header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.game-title-large {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--neon-pink);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--neon-pink);
    line-height: 1.1;
}

.game-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.game-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.meta-item {
    background: rgba(255, 0, 128, 0.2);
    color: var(--neon-pink);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.game-screenshot {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
}

.screenshot-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(0, 255, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
    overflow: hidden;
}

.neural-network-bg,
.cyber-runner-bg,
.matrix-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 0, 128, 0.1) 10px,
        rgba(255, 0, 128, 0.1) 20px
    );
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% { transform: translateX(-50px); }
    100% { transform: translateX(50px); }
}

.game-description {
    padding: 6rem 0;
}

.description-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.section-title-small {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-pink);
    margin-bottom: 2rem;
    text-shadow: 0 0 15px var(--neon-pink);
}

.description-paragraph {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

.features-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.features-list {
    list-style: none;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 0, 128, 0.2);
}

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

.feature-icon {
    font-size: 1.5rem;
    min-width: 2rem;
}

.screenshots-section {
    padding: 6rem 0;
    background: rgba(255, 0, 128, 0.02);
}

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

.screenshot-item {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.screenshot-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.screenshot-placeholder {
    width: 100%;
    height: 200px;
    position: relative;
}

.screenshot-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.8);
    color: var(--neon-pink);
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.tech-section {
    padding: 6rem 0;
}

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

.tech-item {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-pink);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.tech-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon-pink);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--neon-pink);
}

.tech-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.05) 0%, rgba(0, 255, 255, 0.05) 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-pink);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--neon-pink);
}

.cta-text {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-violet), var(--neon-blue));
    border: none;
    border-radius: 4px;
    color: var(--dark-bg);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 0 20px var(--neon-pink);
}

.cta-button-large:hover {
    background: var(--neon-pink-light);
    box-shadow: 0 0 30px var(--neon-pink);
    transform: translateY(-2px);
}

/* Enhanced Navigation Styles */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    flex: 0 0 auto;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-social {
    flex: 0 0 auto;
    display: flex;
    gap: 1rem;
}

.logo-image {
    height: 40px;
    width: auto;
    margin-right: 1rem;
}

.logo-text-fallback {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 128, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--neon-pink);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    min-width: 44px;
    min-height: 44px;
}

.social-link:hover {
    background: var(--neon-pink);
    color: var(--dark-bg);
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--neon-pink);
}

/* Touch-friendly active state */
.social-link:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.social-link img {
    width: 20px;
    height: 20px;
}

/* Enhanced Games Section Styles */
.games-intro {
    font-size: 1.4rem;
    color: var(--neon-cyan);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan);
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    letter-spacing: 2px;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 20, 40, 0.5) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    animation: introPulse 3s ease-in-out infinite alternate;
}

@keyframes introPulse {
    0% { 
        text-shadow: 
            0 0 10px var(--neon-cyan),
            0 0 20px var(--neon-cyan);
        border-color: rgba(0, 255, 255, 0.3);
    }
    100% { 
        text-shadow: 
            0 0 20px var(--neon-cyan),
            0 0 40px var(--neon-cyan);
        border-color: rgba(0, 255, 255, 0.6);
    }
}

.game-showcase {
    margin-bottom: 6rem;
    padding: 4rem 0;
    border: 2px solid var(--neon-pink);
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.2),
        inset 0 0 20px rgba(0, 127, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.game-showcase:hover {
    border-color: var(--neon-cyan);
    box-shadow: 
        0 0 40px rgba(0, 255, 255, 0.3),
        inset 0 0 25px rgba(0, 127, 255, 0.15);
    transform: translateY(-5px);
}

.game-showcase::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue), var(--neon-cyan), var(--neon-pink));
    border-radius: 15px;
    z-index: -1;
    opacity: 0.3;
    animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Game Hub Section - padding handled by main rule above */

.released-section, .in-development-section {
    margin-bottom: 4rem;
}

.subsection-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 0 10px var(--neon-cyan);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
}

/* Games Grid Layout */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

/* Interactive Game Card */
.game-card {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 0, 20, 0.6) 100%),
        radial-gradient(circle at 50% 0%, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
    border: 2px solid var(--neon-pink);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(15px);
    transform-style: preserve-3d;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.2),
        inset 0 0 20px rgba(0, 255, 255, 0.05);
    will-change: transform, box-shadow;
    transform: translateZ(0); /* Force GPU acceleration */
}

.game-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 
        0 20px 40px rgba(0, 255, 255, 0.4),
        0 0 60px rgba(255, 0, 255, 0.2);
}

.game-card:focus {
    outline: 2px solid var(--neon-pink);
    outline-offset: 4px;
}

.game-card:focus:not(:focus-visible) {
    outline: none;
}


/* Special Virtual Twilight Card */
.special-card {
    border: 3px solid var(--neon-violet);
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.2), rgba(0, 0, 0, 0.6));
    position: relative;
    overflow: visible;
}

.special-card:hover {
    border-color: var(--neon-pink);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(255, 0, 255, 0.5),
        0 0 100px rgba(106, 13, 173, 0.3);
}

.special-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-violet));
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 10;
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
    }
}

.game-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    will-change: transform;
    transform: translateZ(0); /* Force GPU acceleration */
}

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

/* Hover Overlay */
.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(255, 0, 255, 0.3));
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.game-card:hover .hover-overlay {
    opacity: 1;
}

.hover-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.game-card:hover .hover-content {
    transform: translateY(0);
}

.hover-content h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.hover-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.hover-btn {
    background: rgba(255, 0, 255, 0.2);
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 0 5px var(--neon-pink);
    animation: hoverBtnPulse 2s ease-in-out infinite;
}

@keyframes hoverBtnPulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
    }
    50% { 
        box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
    }
}

/* Placeholder styles removed - using real images instead */

.game-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--neon-green);
    color: var(--dark-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

/* Status badge variations */
.status-released {
    background: var(--neon-green);
    color: var(--dark-bg);
}

.status-demo {
    background: var(--neon-cyan);
    color: var(--dark-bg);
}

.status-coming-soon {
    background: var(--neon-purple);
    color: #fff;
}

.status-tba {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.status-seeking-investment {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.status-early-access {
    background: var(--neon-pink);
    color: #fff;
}

/* Development Progress Bar */
.dev-progress {
    margin-top: 1rem;
    width: 100%;
}

.dev-progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dev-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.dev-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    border-radius: 10px;
    transition: width 0.6s ease-out;
    position: relative;
}

.dev-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShimmer 2s infinite;
}

@keyframes progressShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Progress percentage colors */
.dev-progress-fill[data-progress="0-25"] {
    background: linear-gradient(90deg, #ef4444, #f59e0b);
}

.dev-progress-fill[data-progress="26-50"] {
    background: linear-gradient(90deg, #f59e0b, #eab308);
}

.dev-progress-fill[data-progress="51-75"] {
    background: linear-gradient(90deg, #eab308, var(--neon-cyan));
}

.dev-progress-fill[data-progress="76-99"] {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-green));
}

.dev-progress-fill[data-progress="100"] {
    background: linear-gradient(90deg, var(--neon-green), #10b981);
}

.game-card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.game-card-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-pink);
    margin-bottom: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9), 0 0 8px var(--neon-pink);
}

.game-card-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.game-card-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.btn-card {
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 3px var(--neon-pink);
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-card:hover {
    background: var(--neon-pink);
    color: var(--dark-bg);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
    text-shadow: none;
}

.btn-card:focus,
.btn-hero:focus,
.nav-link:focus {
    outline: 2px solid var(--neon-pink);
    outline-offset: 2px;
}

.btn-card:focus:not(:focus-visible),
.btn-hero:focus:not(:focus-visible),
.nav-link:focus:not(:focus-visible) {
    outline: none;
}

/* Touch-friendly active state */
.btn-card:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Game Card Details (Expandable) */
.game-card-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: rgba(0, 0, 0, 0.6);
    border-top: 1px solid var(--neon-pink);
}

.game-card-details.active {
    max-height: 1000px;
}

.game-card-details .game-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
}

.game-card-details .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.game-card-details .feature-icon {
    font-size: 1.2rem;
}

.game-card-details .game-media {
    padding: 1.5rem;
}

.game-card-details .game-video {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    border: 1px solid var(--neon-pink);
}

.game-card-details .game-actions {
    padding: 1.5rem;
    text-align: center;
}

/* Game Overlay System */
.game-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.game-overlay.active {
    opacity: 1;
    visibility: visible;
}

.game-overlay.active .overlay-content {
    animation: overlaySlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes overlaySlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.overlay-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(106, 13, 173, 0.3));
    border: 2px solid var(--neon-pink);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.game-overlay.active .overlay-content {
    transform: translate(-50%, -50%) scale(1);
}

.overlay-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 0, 255, 0.2);
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.overlay-close:hover {
    background: var(--neon-pink);
    color: var(--dark-bg);
    transform: scale(1.1);
}

.overlay-close:focus {
    outline: 2px solid var(--neon-pink);
    outline-offset: 2px;
}

.overlay-close:focus:not(:focus-visible) {
    outline: none;
}

.overlay-body {
    padding: 2rem;
    max-height: 80vh;
    overflow-y: auto;
}

/* YouTube Video Embed */
.overlay-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.overlay-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

/* Game Info Sections */
.overlay-section {
    margin-bottom: 2.5rem;
}

/* Additional Videos Grid in Overlay */
.additional-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.additional-video-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.additional-video-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2);
}

.video-wrapper-small {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

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

.additional-video-title {
    padding: 0.8rem 1rem;
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.overlay-section-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--neon-cyan);
    padding-bottom: 0.5rem;
}

.overlay-description p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.overlay-features {
    list-style: none;
    padding: 0;
}

.overlay-features li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.overlay-features li::before {
    content: '▸';
    color: var(--neon-pink);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.overlay-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.platform-badge {
    background: rgba(255, 0, 255, 0.2);
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.overlay-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.genre-tag {
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.overlay-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.overlay-award-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
}

/* Status Badges */
.status-live {
    background: var(--neon-green);
    color: var(--dark-bg);
}

.status-dev {
    background: var(--neon-orange);
    color: var(--dark-bg);
}

.status-early {
    background: var(--neon-cyan);
    color: var(--dark-bg);
}

/* Progress Indicator */
.progress-indicator {
    margin-top: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    border-radius: 4px;
    transition: width 0.5s ease;
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
    }
    50% { 
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    }
}

.progress-text {
    font-size: 0.8rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
}

/* Overlay Content Styles */
.overlay-game-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--neon-pink);
}

.overlay-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-pink);
    text-shadow: 0 0 15px var(--neon-pink);
    margin-bottom: 0.5rem;
}

.overlay-subtitle {
    font-size: 1.2rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
    font-style: italic;
}

.overlay-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 10px;
}

.overlay-features h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
    margin-bottom: 1rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid var(--neon-pink);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 0, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

.feature-item .feature-icon {
    font-size: 1.5rem;
}

.feature-item .feature-text {
    font-weight: 600;
    color: var(--text-primary);
}

.overlay-media {
    margin-bottom: 2rem;
}

.overlay-media-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
    margin-bottom: 1rem;
}

.overlay-video {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    border: 2px solid var(--neon-pink);
}

/* Additional Videos Section */
.overlay-additional-videos {
    margin-bottom: 2rem;
}

.additional-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.additional-video-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.additional-video-item:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
    transform: translateY(-2px);
}

.additional-video-item .video-wrapper {
    margin-bottom: 0.8rem;
}

.video-title {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: var(--neon-pink);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px var(--neon-pink);
}

.video-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
}

/* YouTube Video Embed Styling */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
    border: 1px solid rgba(255, 0, 255, 0.3);
}

.youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Enhanced Text Readability for Bottom Sections */
.about-description,
.contact-description,
.contact-method,
.footer-text {
    color: var(--text-secondary);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-pink);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 0 12px var(--neon-pink);
    margin-bottom: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 150, 255, 0.4);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    color: var(--text-secondary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
}

.contact-icon {
    font-size: 1.5rem;
    color: rgba(0, 150, 255, 0.8);
    min-width: 30px;
}

.contact-whatsapp {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.whatsapp-link {
    color: var(--neon-cyan);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

.contact-person {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.contact-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

.contact-title-alt {
    color: var(--neon-violet-light);
    font-size: 0.85rem;
    margin: 0;
    font-style: italic;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 150, 255, 0.1);
    border: 2px solid rgba(0, 150, 255, 0.6);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 200, 255, 0.8);
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.3);
    background: rgba(0, 150, 255, 0.15);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    background: rgba(255, 0, 0, 0.05);
    animation: errorShake 0.4s ease;
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    border-color: #ff3333;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--neon-cyan);
}

.game-showcase:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.game-showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.game-showcase.reverse .game-showcase-content {
    direction: rtl;
}

.game-showcase.reverse .game-showcase-content > * {
    direction: ltr;
}

.game-showcase-text {
    position: relative;
}

.game-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.status-live {
    background: rgba(0, 255, 65, 0.2);
    color: #00ff41;
    border: 1px solid #00ff41;
}

.status-dev {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid #ffa500;
}

.status-concept {
    background: rgba(255, 0, 128, 0.2);
    color: var(--neon-pink);
    border: 1px solid var(--neon-pink);
}

.game-showcase-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-pink);
    text-shadow: 0 0 8px var(--neon-pink);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.game-showcase-description {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

.game-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(255, 0, 128, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: var(--neon-pink);
    background: rgba(255, 0, 128, 0.05);
}

.feature-icon {
    font-size: 1.5rem;
    min-width: 1.5rem;
}

.game-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 14px 24px; /* SEO: Minimum 48px tap target */
    min-height: 48px;
    min-width: 120px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-primary {
    background: var(--neon-pink);
    color: var(--dark-bg);
    box-shadow: 0 0 15px var(--neon-pink);
}

.btn-primary:hover {
    background: var(--neon-pink-light);
    box-shadow: 0 0 25px var(--neon-pink);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-pink);
    border: 2px solid var(--neon-pink);
}

.btn-secondary:hover {
    background: var(--neon-pink);
    color: var(--dark-bg);
    box-shadow: 0 0 15px var(--neon-pink);
    transform: translateY(-2px);
}

/* Mobile SEO Enhancements */
@media (max-width: 480px) {
    .btn-primary,
    .btn-secondary {
        padding: 16px 28px;
        font-size: 1rem;
        min-height: 52px; /* Extra padding for touch */
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    /* Mobile Overlay - Slide up from bottom */
    .overlay-content {
        top: auto;
        bottom: 0;
        left: 0;
        transform: translateY(100%);
        width: 100%;
        max-width: 100%;
        max-height: 90vh;
        border-radius: 20px 20px 0 0;
        border-bottom: none;
    }
    
    .game-overlay.active .overlay-content {
        transform: translateY(0);
    }
    
    @keyframes overlaySlideIn {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .overlay-body {
        padding: 1.5rem;
        padding-bottom: 2rem;
    }
    
    .overlay-close {
        top: 0.8rem;
        right: 0.8rem;
        width: 44px;
        height: 44px;
    }
    
    .overlay-section-title {
        font-size: 1.1rem;
    }
    
    .overlay-description p {
        font-size: 0.95rem;
    }
    
    /* Better platform/genre badges on mobile */
    .overlay-platforms,
    .overlay-genres {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .platform-badge,
    .genre-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Store links stacked on mobile */
    .overlay-links {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .overlay-links .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* Tablet Optimization */
@media (min-width: 769px) and (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .game-card {
        min-height: 420px;
    }
}

/* ========================================
   NEW SECTIONS: Creators, VRChat, Mayhem
   ======================================== */

/* Creators Section */
.creators-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(10, 10, 30, 0.95), rgba(20, 0, 40, 0.9));
    position: relative;
}

.creators-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
}

.creators-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.creators-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 0, 40, 0.85));
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.creators-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.creators-hero-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 255, 0.4);
    box-shadow: 0 8px 24px rgba(0, 255, 255, 0.2);
}

.creators-description {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
}

.creators-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.creators-videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.video-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    transform: translateY(-5px);
}

.video-card .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

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

.video-card .video-title {
    padding: 1rem;
    margin: 0;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: var(--neon-cyan);
    text-align: center;
}

/* VRChat Section */
.vrchat-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.2), rgba(0, 0, 0, 0.95));
}

.vrchat-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vrchat-video .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--neon-violet);
    box-shadow: 0 10px 40px rgba(106, 13, 173, 0.4);
}

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

.vrchat-info {
    padding-left: 2rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(106, 13, 173, 0.4);
}

.vrchat-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--neon-violet), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.vrchat-description {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Mayhem Section */
.mayhem-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(230, 81, 47, 0.1), rgba(10, 10, 20, 0.98));
    position: relative;
}

.mayhem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-orange), var(--neon-pink), transparent);
}

.mayhem-subtitle {
    text-align: center;
    color: var(--neon-orange);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mayhem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mayhem-video {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--neon-orange);
    transition: all 0.3s ease;
}

.mayhem-video:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
    transform: scale(1.02);
}

.mayhem-video .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

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

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .creators-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .creators-intro {
        padding-right: 0;
        text-align: center;
    }
    
    .creators-cta {
        justify-content: center;
    }
    
    .vrchat-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vrchat-info {
        padding-left: 0;
        text-align: center;
    }
    
    .vrchat-info .btn-primary {
        display: inline-block;
    }
    
    .mayhem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mayhem-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Print Styles for Accessibility */
@media print {
    .scanlines,
    .grid-overlay,
    .retro-grid-bottom {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
