/* Galactic Defense - Space Shooter Theme */

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

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

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

#game-canvas {
    background: #0d1117;
    border-radius: 0;
    box-shadow: 0 0 40px rgba(0, 200, 255, 0.15);
}

.lg-hud {
    pointer-events: none;
}

.lg-hud-content {
    pointer-events: auto;
}

.lg-hud-item {
    background: rgba(0, 10, 30, 0.7);
    border-color: rgba(0, 200, 255, 0.3);
    backdrop-filter: blur(4px);
}

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

.lg-title {
    background: linear-gradient(135deg, #00e5ff, #7c4dff, #e040fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.lg-menu-content,
.lg-gameover-content {
    background: rgba(10, 15, 30, 0.95);
    border-color: rgba(0, 200, 255, 0.25);
    box-shadow: 0 0 60px rgba(0, 200, 255, 0.1), inset 0 0 60px rgba(0, 200, 255, 0.03);
}

.lg-btn-primary {
    background: linear-gradient(135deg, #00b8d4, #0091ea);
    border-color: #00e5ff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.lg-btn-primary:hover {
    background: linear-gradient(135deg, #0091ea, #00b8d4);
    border-color: #00e5ff;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.lg-gameover-stats {
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.15);
}

.lg-gameover-stats span {
    color: #00e5ff;
}
