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

:root {
    --neon-blue: #00e5ff;
    --mystic-magenta: #e040fb;
    --cyber-green: #69f0ae;
    --shadow-black: #0d0d0d;
    --pixel-white: #f1f1f1;
    --glass-bg: rgba(13, 13, 13, 0.8);
    --glow-shadow: 0 0 20px currentColor;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--shadow-black);
    color: var(--pixel-white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--shadow-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--neon-blue);
    margin-bottom: 30px;
    animation: glitch 0.5s infinite alternate;
}

.loader-bar {
    width: 300px;
    height: 4px;
    background: rgba(0, 229, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-blue), var(--mystic-magenta));
    width: 0%;
    animation: loadProgress 2s ease-in-out forwards;
}

@keyframes loadProgress {
    to { width: 100%; }
}

/* Glitch Effect */
.glitch-text {
    position: relative;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    text-transform: uppercase;
    animation: glitch 0.5s infinite alternate;
}

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

.glitch-text::before {
    animation: glitch-1 0.5s infinite alternate;
    color: var(--neon-blue);
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 0.5s infinite alternate;
    color: var(--mystic-magenta);
    z-index: -2;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes glitch-1 {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes glitch-2 {
    0% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
    100% { transform: translate(0); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neon-blue);
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-size: 1.5rem;
    color: var(--neon-blue);
    text-shadow: var(--glow-shadow);
}

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

.nav-link {
    color: var(--pixel-white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-blue);
    background: rgba(0, 229, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
    animation: sparkle 0.5s ease;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--neon-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--mystic-magenta), var(--neon-blue));
    opacity: 0.8;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(105, 240, 174, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(224, 64, 251, 0.1) 0%, transparent 50%),
        linear-gradient(90deg, transparent 0%, rgba(0, 229, 255, 0.05) 50%, transparent 100%);
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--cyber-green);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
.particle:nth-child(3) { top: 80%; left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { top: 40%; left: 70%; animation-delay: 3s; }
.particle:nth-child(5) { top: 10%; left: 90%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

.magic-glyphs {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.glyph {
    position: absolute;
    font-size: 2rem;
    color: var(--mystic-magenta);
    opacity: 0.3;
    animation: rotate 10s infinite linear;
}

.glyph:nth-child(1) { top: 15%; left: 15%; animation-delay: 0s; }
.glyph:nth-child(2) { top: 25%; right: 20%; animation-delay: 2s; }
.glyph:nth-child(3) { bottom: 30%; left: 25%; animation-delay: 4s; }
.glyph:nth-child(4) { bottom: 20%; right: 15%; animation-delay: 6s; }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    color: var(--pixel-white);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--cyber-green);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--neon-blue), var(--cyber-green));
    color: var(--shadow-black);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--pixel-white);
    border: 2px solid var(--mystic-magenta);
    box-shadow: 0 0 20px rgba(224, 64, 251, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0, 229, 255, 0.8);
}

.glitch-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.glitch-btn:hover::before {
    left: 100%;
}

.portal-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(224, 64, 251, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.portal-btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Sections */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--neon-blue);
    text-shadow: var(--glow-shadow);
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(13, 13, 13, 0.95);
}

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

.about-text {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--cyber-green);
    line-height: 1.8;
}

.circuit-lines {
    position: relative;
    height: 100px;
    margin-top: 50px;
}

.circuit-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    animation: circuit-flow 3s infinite ease-in-out;
}

.circuit-line:nth-child(1) {
    top: 20px;
    left: 0;
    width: 100%;
    animation-delay: 0s;
}

.circuit-line:nth-child(2) {
    top: 50px;
    left: 20%;
    width: 60%;
    animation-delay: 1s;
}

.circuit-line:nth-child(3) {
    top: 80px;
    left: 10%;
    width: 80%;
    animation-delay: 2s;
}

@keyframes circuit-flow {
    0%, 100% { opacity: 0.3; transform: scaleX(0.5); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* Games Section */
.games {
    padding: 100px 0;
    background: var(--shadow-black);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.game-card {
    background: var(--glass-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 229, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 229, 255, 0.3);
    border-color: var(--neon-blue);
}

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

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 229, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 229, 255, 0.03) 2px,
        rgba(0, 229, 255, 0.03) 4px
    );
    animation: scan 2s linear infinite;
}

@keyframes scan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.game-info {
    padding: 25px;
}

.game-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: var(--neon-blue);
    margin-bottom: 10px;
}

.game-info p {
    color: var(--pixel-white);
    margin-bottom: 20px;
    opacity: 0.9;
}

.game-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(45deg, var(--mystic-magenta), var(--neon-blue));
    color: var(--shadow-black);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.game-btn:hover::before {
    left: 100%;
}

.game-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(224, 64, 251, 0.5);
}

/* Community Section */
.community {
    padding: 100px 0;
    background: rgba(13, 13, 13, 0.95);
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 50px;
}

.community-card {
    background: var(--glass-bg);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--cyber-green);
    position: relative;
}

.badge {
    background: linear-gradient(45deg, var(--cyber-green), var(--neon-blue));
    color: var(--shadow-black);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.player-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--neon-blue);
    margin-bottom: 10px;
}

.player-score {
    font-size: 1.2rem;
    color: var(--cyber-green);
    font-weight: 600;
}

.leaderboard {
    background: var(--glass-bg);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--mystic-magenta);
}

.leaderboard h3 {
    font-family: 'Orbitron', monospace;
    color: var(--mystic-magenta);
    margin-bottom: 25px;
    text-align: center;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(224, 64, 251, 0.2);
    position: relative;
}

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

.rank {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--neon-blue);
    margin-right: 20px;
    font-size: 1.2rem;
}

.name {
    flex: 1;
    color: var(--pixel-white);
}

.scan-bar {
    width: 100px;
    height: 4px;
    background: rgba(224, 64, 251, 0.3);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.scan-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: var(--mystic-magenta);
    animation: scan-bar 2s infinite ease-in-out;
}

@keyframes scan-bar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}

/* Events Section */
.events {
    padding: 100px 0;
    background: var(--shadow-black);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.event-card {
    background: var(--glass-bg);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--cyber-green);
    position: relative;
}

.event-icon {
    font-size: 3rem;
    color: var(--cyber-green);
    margin-bottom: 20px;
    animation: glow-pulse 2s infinite ease-in-out;
}

@keyframes glow-pulse {
    0%, 100% { 
        opacity: 0.7; 
        text-shadow: 0 0 10px var(--cyber-green);
    }
    50% { 
        opacity: 1; 
        text-shadow: 0 0 20px var(--cyber-green), 0 0 30px var(--cyber-green);
    }
}

.event-card h3 {
    font-family: 'Orbitron', monospace;
    color: var(--neon-blue);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-value {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--mystic-magenta);
    text-shadow: var(--glow-shadow);
}

.time-label {
    font-size: 0.9rem;
    color: var(--pixel-white);
    opacity: 0.7;
    margin-top: 5px;
}

/* Disclaimer */
.disclaimer {
    padding: 60px 0;
    background: rgba(224, 64, 251, 0.1);
    text-align: center;
}

.disclaimer-content h3 {
    font-family: 'Orbitron', monospace;
    color: var(--mystic-magenta);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.disclaimer-content p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--shadow-black);
    padding: 60px 0 0;
    position: relative;
    border-top: 1px solid var(--neon-blue);
}

.circuit-grid {
    
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(0, 229, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(0, 229, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    animation: grid-flow 10s infinite linear;
}

@keyframes grid-flow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: var(--neon-blue);
    text-shadow: var(--glow-shadow);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

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

.social-link:hover {
    background: var(--neon-blue);
    color: var(--shadow-black);
    box-shadow: 0 0 20px var(--neon-blue);
}

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

.footer-links a {
    color: var(--pixel-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--cyber-green);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 229, 255, 0.3);
    padding: 20px 0;
    overflow: hidden;
}

.scroll-text {
    display: flex;
    white-space: nowrap;
    animation: scroll-text 20s linear infinite;
}

.scroll-text span {
    margin-right: 100px;
    color: var(--cyber-green);
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    opacity: 0.7;
}

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

/* Game Page Styles */
.game-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.game-container {
    background: var(--glass-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
}

.game-header {
    text-align: center;
    margin-bottom: 40px;
}

.game-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin-bottom: 15px;
}

.game-tagline {
    font-size: 1.2rem;
    color: var(--cyber-green);
    margin-bottom: 30px;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.game-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.invite-btn {
    background: linear-gradient(45deg, var(--cyber-green), var(--neon-blue));
    color: var(--shadow-black);
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.invite-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(105, 240, 174, 0.5);
}

.invite-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.invite-btn:hover::before {
    width: 200px;
    height: 200px;
}

/* Contact Page */
.contact-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass-bg);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid var(--mystic-magenta);
}

.contact-form {
    display: grid;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--neon-blue);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background: rgba(13, 13, 13, 0.8);
    border: 2px solid rgba(0, 229, 255, 0.3);
    border-radius: 8px;
    padding: 15px;
    color: var(--pixel-white);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

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

.submit-btn {
    background: linear-gradient(45deg, var(--mystic-magenta), var(--neon-blue));
    color: var(--shadow-black);
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(224, 64, 251, 0.5);
}

.cyberbot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--cyber-green), var(--neon-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--shadow-black);
    box-shadow: 0 0 20px rgba(105, 240, 174, 0.5);
    transition: all 0.3s ease;
    animation: bot-pulse 2s infinite ease-in-out;
}

@keyframes bot-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cyberbot:hover {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(105, 240, 174, 0.8);
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--glass-bg);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid var(--mystic-magenta);
}

.legal-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: var(--mystic-magenta);
    text-align: center;
    margin-bottom: 40px;
}

.legal-content {
    line-height: 1.8;
    color: var(--pixel-white);
}

.legal-content h3 {
    font-family: 'Orbitron', monospace;
    color: var(--neon-blue);
    margin: 30px 0 15px;
    font-size: 1.3rem;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content li {
    margin: 8px 0;
    color: var(--cyber-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .game-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-container,
    .legal-container {
        margin: 0 20px;
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .game-card {
        margin: 0 10px;
    }
    
    .game-iframe {
        height: 400px;
    }
    
    .time-value {
        font-size: 1.5rem;
    }
}

/* Utility Classes */
.hidden {
    opacity: 0;
    pointer-events: none;
}

.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

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

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.3), transparent);
    animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}