/* Neon Racer - Dark Synthwave Theme */

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #0d1117;
    overflow: hidden;
}

.lg-game-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d1117;
}

#game-canvas {
    image-rendering: auto;
    border-radius: 0;
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.3), 0 0 80px rgba(0, 255, 255, 0.1);
}

/* Menu title glow */
.lg-title {
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.6), 0 0 40px rgba(0, 255, 255, 0.3);
}

/* HUD neon styling */
.lg-hud {
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.95) 0%, rgba(13, 17, 23, 0) 100%);
}

.lg-hud-item {
    background: rgba(138, 43, 226, 0.15);
    border-color: rgba(138, 43, 226, 0.4);
    box-shadow: 0 0 8px rgba(138, 43, 226, 0.2);
}

.lg-hud-value {
    color: #00ffff;
    text-shadow: 0 0 6px rgba(0, 255, 255, 0.5);
}

/* Game over neon */
.lg-gameover-content {
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.3), 0 0 60px rgba(0, 255, 255, 0.1);
}

.lg-gameover-stats span {
    color: #00ffff;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

/* Button glow effects */
.lg-btn-primary {
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
}

.lg-btn-primary:hover {
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.6);
}

/* Menu overlay */
.lg-ui {
    background: rgba(13, 17, 23, 0.95);
}

.lg-menu-content {
    border-color: rgba(138, 43, 226, 0.4);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.2);
}
