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

:root {
    --primary-color: #ff00ff;
    --secondary-color: #00ffff;
    --accent-color: #ffff00;
    --dark-bg: #0a0a0a;
    --darker-bg: #000000;
    --light-text: #ffffff;
    --neon-green: #39ff14;
    --neon-pink: #ff10f0;
    --neon-blue: #00d4ff;
}

body {
    font-family: 'Orbitron', monospace;
    background: var(--dark-bg);
    color: var(--light-text);
    overflow-x: hidden;
    position: relative;
}

/* Animated background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: transparent;
    z-index: 1;
}

.stars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 40px 70px, white, transparent),
        radial-gradient(1px 1px at 50px 50px, white, transparent),
        radial-gradient(1px 1px at 80px 10px, white, transparent),
        radial-gradient(2px 2px at 130px 80px, white, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: stars 120s linear infinite;
}

@keyframes stars {
    from { transform: translateY(0); }
    to { transform: translateY(-200px); }
}

/* Twinkling stars */
.twinkling-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { 
        opacity: 0;
        transform: scale(0.5);
    }
    50% { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Scanlines effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(
        transparent 50%,
        rgba(0, 255, 255, 0.03) 50%
    );
    background-size: 100% 4px;
    animation: scanlines 8s linear infinite;
    z-index: 10;
}

@keyframes scanlines {
    from { background-position: 0 0; }
    to { background-position: 0 10px; }
}



#mountainCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.mountain-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Grid lines - horizontal */
        linear-gradient(90deg, transparent 49.5%, rgba(255, 0, 255, 0.1) 50%, transparent 50.5%),
        linear-gradient(90deg, transparent 49.5%, rgba(0, 255, 255, 0.1) 50%, transparent 50.5%),
        /* Grid lines - vertical */
        linear-gradient(0deg, transparent 49.5%, rgba(255, 0, 255, 0.1) 50%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(0, 255, 255, 0.1) 50%, transparent 50.5%);
    background-size: 100px 100px, 50px 50px, 100px 100px, 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    from { transform: translate(0, 0); }
    to { transform: translate(100px, 100px); }
}

/* Additional grid overlay for depth */
.mountain-grid .grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 49px,
            rgba(255, 255, 255, 0.03) 49px,
            rgba(255, 255, 255, 0.03) 51px,
            transparent 51px,
            transparent 100px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 49px,
            rgba(255, 255, 255, 0.03) 49px,
            rgba(255, 255, 255, 0.03) 51px,
            transparent 51px,
            transparent 100px
        );
    animation: gridPulse 4s ease-in-out infinite;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}

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

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

.logo {
    height: 50px;
    filter: drop-shadow(0 0 10px var(--primary-color));
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px var(--primary-color));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    background: transparent;
    position: relative;
    z-index: 5;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: absolute;
    top: calc(15% + 100px + 100px - 50px);
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Leaderboard Container */
.leaderboard-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Leaderboard Signs - Match game card styling */
.leaderboard-sign {
    position: absolute;
    pointer-events: auto;
    transition: all 0.3s ease;
}

/* Removed hover movement - no transform on hover */

.sign-frame {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Removed shimmer effect */

.sign-frame:hover {
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    border-color: var(--primary-color);
}

/* Center Leaderboard - Top 3 (Just Under TOMOCKO) */
.leaderboard-center {
    top: calc(15% + 100px + 100px + 80px + 80px + 100px - 50px - 50px - 20px - 10px) !important;
    left: 50% !important;
    transform: translate(-50%, 0) !important;
    width: 260px;
}

.leaderboard-center .sign-frame {
    border-color: var(--primary-color);
    padding: 1.2rem;
}

.leaderboard-center .sign-frame:hover {
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3);
    border-color: var(--secondary-color);
}

/* Left Leaderboard - Yearly */
.leaderboard-left {
    top: 20%;
    left: 5%;
    width: 240px;
    height: 701px;
}

.leaderboard-left .sign-frame {
    border-color: var(--secondary-color);
    height: 100%;
    text-align: left;
    padding: 1.2rem;
}

.leaderboard-left .sign-frame:hover {
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    border-color: var(--primary-color);
}

/* Right Leaderboard - Monthly */
.leaderboard-right {
    top: 20%;
    right: 5%;
    width: 240px;
    height: 701px;
}

.leaderboard-right .sign-frame {
    border-color: var(--secondary-color);
    height: 100%;
    text-align: left;
    padding: 1.2rem;
}

.leaderboard-right .sign-frame:hover {
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    border-color: var(--primary-color);
}

/* Sign Headers - Match game card styling */
.sign-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--secondary-color);
}

.sign-header h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    margin-bottom: 0;
    color: var(--accent-color);
    text-shadow: 0 0 8px currentColor;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.year-badge {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: bold;
    font-family: 'Press Start 2P', cursive;
    border: none;
    box-shadow: 0 3px 10px rgba(255, 0, 255, 0.3);
}

/* Filter Controls - Match game button styling */
.filter-controls,
.month-controls {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.game-filter {
    background: rgba(64, 64, 64, 0.8);
    border: 2px solid var(--secondary-color);
    color: var(--light-text);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.6rem;
    font-family: 'Orbitron', monospace;
    transition: all 0.3s ease;
}

.game-filter:hover {
    border-color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(255, 0, 255, 0.3);
}

.month-nav {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--light-text);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 0, 255, 0.3);
}

.month-nav:hover {
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.5);
}

.current-month {
    font-size: 0.6rem;
    font-weight: bold;
    color: var(--light-text);
    min-width: 60px;
    text-align: center;
    font-family: 'Press Start 2P', cursive;
    text-shadow: 0 0 8px currentColor;
}

/* Leaderboard Content */
.leaderboard-content {
    font-family: 'Orbitron', monospace;
}

.leaderboard-scroll {
    height: calc(100% - 60px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.leaderboard-scroll::-webkit-scrollbar {
    width: 6px;
}

.leaderboard-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.leaderboard-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.leaderboard-entry {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.6rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.player-info {
    flex: 1;
    margin: 0 0.6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Removed shimmer effect from entries */

.leaderboard-entry:hover {
    box-shadow: 0 3px 15px rgba(0, 255, 255, 0.3);
    border-color: var(--primary-color);
}

.rank {
    font-weight: bold;
    color: var(--neon-green);
    min-width: 20px;
    text-align: center;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    text-shadow: 0 0 8px currentColor;
}

.player-name {
    color: var(--light-text);
    font-size: 0.7rem;
    text-align: left;
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.2rem;
}

.score {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 0.6rem;
    text-align: left;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 8px currentColor;
}

/* Top 3 special styling - Match game card hover effects */
.leaderboard-center .leaderboard-entry:nth-child(1) {
    border-color: gold;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 0, 0.05));
    box-shadow: 0 3px 15px rgba(255, 215, 0, 0.3);
}

.leaderboard-center .leaderboard-entry:nth-child(1):hover {
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
    border-color: var(--primary-color);
}

.leaderboard-center .leaderboard-entry:nth-child(2) {
    border-color: silver;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(169, 169, 169, 0.05));
    box-shadow: 0 3px 15px rgba(192, 192, 192, 0.3);
}

.leaderboard-center .leaderboard-entry:nth-child(2):hover {
    box-shadow: 0 5px 20px rgba(192, 192, 192, 0.5);
    border-color: var(--primary-color);
}

.leaderboard-center .leaderboard-entry:nth-child(3) {
    border-color: #cd7f32;
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), rgba(184, 115, 51, 0.05));
    box-shadow: 0 3px 15px rgba(205, 127, 50, 0.3);
}

.leaderboard-center .leaderboard-entry:nth-child(3):hover {
    box-shadow: 0 5px 20px rgba(205, 127, 50, 0.5);
    border-color: var(--primary-color);
}

/* Responsive Design for Leaderboards */
@media (max-width: 1200px) {
    .leaderboard-left,
    .leaderboard-right {
        width: 220px;
        height: 300px;
        top: 40%;
    }
    
    .leaderboard-center {
        width: 240px;
    }
    
    .sign-header h3 {
        font-size: 0.6rem;
    }
    
    .player-name,
    .score {
        font-size: 0.6rem;
    }
    
    .rank {
        font-size: 0.6rem;
    }
}

@media (max-width: 768px) {
    .leaderboard-container {
        position: relative;
        margin-top: 1rem;
        padding: 0 1rem;
        top: auto !important;
    }
    
    .leaderboard-sign {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 320px;
        margin: 0 auto 1rem auto;
        height: auto !important;
    }
    
    .leaderboard-left,
    .leaderboard-right {
        height: 280px;
    }
    
    .leaderboard-center {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .leaderboard-scroll {
        height: 220px;
    }
    
    .sign-frame {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .leaderboard-sign {
        max-width: 100%;
        padding: 0.3rem;
    }
    
    .sign-frame {
        padding: 0.8rem;
    }
    
    .sign-header h3 {
        font-size: 0.5rem;
    }
    
    .player-name,
    .score {
        font-size: 0.5rem;
    }
    
    .rank {
        font-size: 0.5rem;
        min-width: 15px;
    }
    
    .leaderboard-entry {
        padding: 0.4rem;
        margin-bottom: 0.3rem;
    }
    
    .game-filter,
    .current-month {
        font-size: 0.5rem;
    }
    
    .month-nav {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    .year-badge {
        font-size: 0.5rem;
        padding: 0.15rem 0.4rem;
    }
}
    
    .leaderboard-center {
        width: 280px;
        top: 8%;
    }
    
    .sign-header h3 {
        font-size: 0.6rem;
    }
    
    .player-name,
    .score {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .leaderboard-container {
        position: relative;
        margin-top: 1rem;
        padding: 0 1rem;
        top: auto !important;
    }
    
    .leaderboard-sign {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 400px;
        margin: 0 auto 1rem auto;
        height: auto !important;
    }
    
    .leaderboard-left,
    .leaderboard-right {
        height: 300px;
    }
    
    .leaderboard-center {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .leaderboard-scroll {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .leaderboard-sign {
        max-width: 100%;
        padding: 0.5rem;
    }
    
    .sign-frame {
        padding: 0.8rem;
    }
    
    .sign-header h3 {
        font-size: 0.5rem;
    }
    
    .player-name,
    .score {
        font-size: 0.6rem;
    }
    
    .leaderboard-entry {
        padding: 0.4rem;
    }
    
    .game-filter,
    .current-month {
        font-size: 0.5rem;
    }
    
    .month-nav {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
}

.hero-title {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(2rem, 8vw, 5rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.glitch {
    position: relative;
    color: var(--primary-color);
    text-shadow: 
        0 0 10px var(--primary-color),
        0 0 20px var(--primary-color),
        0 0 30px var(--primary-color);
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: var(--secondary-color);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: var(--accent-color);
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color); }
    25% { text-shadow: -2px 0 var(--secondary-color), 2px 0 var(--accent-color); }
    50% { text-shadow: 2px 0 var(--secondary-color), -2px 0 var(--accent-color); }
    75% { text-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--primary-color); }
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(20% 0 30% 0); transform: translate(-2px, 2px); }
    40% { clip-path: inset(50% 0 20% 0); transform: translate(2px, -2px); }
    60% { clip-path: inset(10% 0 60% 0); transform: translate(-2px, 0); }
    80% { clip-path: inset(80% 0 5% 0); transform: translate(1px, 0); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(60% 0 10% 0); transform: translate(2px, -1px); }
    40% { clip-path: inset(20% 0 50% 0); transform: translate(-2px, 1px); }
    60% { clip-path: inset(30% 0 40% 0); transform: translate(1px, -1px); }
    80% { clip-path: inset(5% 0 80% 0); transform: translate(-1px, 2px); }
}

.hero-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    box-shadow: 0 0 20px var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
}



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

/* Games Section */
.games {
    padding: 5rem 0;
    background: transparent;
    position: relative;
    z-index: 10;
    border-top: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
    background-image: linear-gradient(
        transparent 50%,
        rgba(0, 255, 255, 0.03) 50%
    );
    background-size: 100% 4px;
    background-attachment: fixed;
}

.section-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-shadow: 0 0 30px var(--primary-color), 0 0 50px var(--primary-color);
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem 2rem;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

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

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}



.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    border-color: var(--primary-color);
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.game-card h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.game-card p {
    margin-bottom: 1.5rem;
    color: #ccc;
}

.btn-game {
    background: linear-gradient(45deg, var(--neon-green), var(--neon-pink));
    color: var(--dark-bg);
    font-weight: bold;
}

.btn-game:hover {
    box-shadow: 0 5px 20px var(--neon-green);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: transparent;
    position: relative;
    z-index: 10;
    border-top: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    background-image: linear-gradient(
        transparent 50%,
        rgba(0, 255, 255, 0.03) 50%
    );
    background-size: 100% 4px;
    background-attachment: fixed;
}

.about-content {
    text-align: center;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ddd;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Press Start 2P', cursive;
    font-size: 2rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: transparent;
    position: relative;
    z-index: 10;
    border-top: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
    background-image: linear-gradient(
        transparent 50%,
        rgba(0, 255, 255, 0.03) 50%
    );
    background-size: 100% 4px;
    background-attachment: fixed;
}

.contact-content {
    text-align: center;
}

.contact-instruction {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color);
}

.contact-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.form-input {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--secondary-color);
    color: var(--light-text);
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    border-radius: 5px;
    min-width: 300px;
}

.form-input::placeholder {
    color: #aaa;
}

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



/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid var(--primary-color);
}

.footer p {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-graphics {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats {
        gap: 2rem;
    }
    
    .contact-form {
        flex-direction: column;
        align-items: center;
    }
    
    .form-input {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}