/**
 * Breakout - LaterGamer
 * Dark neon theme styling
 */

html, body {
    margin: 0;
    padding: 0;
    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: none;
    cursor: none;
}

/* Override HUD for breakout neon style */
.lg-hud {
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.95) 0%, rgba(13, 17, 23, 0) 100%);
    pointer-events: auto;
}

.lg-hud-item {
    background: rgba(111, 66, 193, 0.15);
    border-color: rgba(111, 66, 193, 0.4);
    box-shadow: 0 0 10px rgba(111, 66, 193, 0.2);
}

.lg-hud-value {
    color: #a78bfa;
    text-shadow: 0 0 8px rgba(167, 139, 250, 0.6);
}

/* Menu customization */
.lg-menu-content {
    background: rgba(13, 17, 23, 0.95);
    border-color: rgba(111, 66, 193, 0.5);
    box-shadow: 0 0 40px rgba(111, 66, 193, 0.3), 0 10px 25px rgba(0, 0, 0, 0.5);
}

.lg-title {
    text-shadow: 0 0 20px rgba(111, 66, 193, 0.5);
}

/* Game over customization */
.lg-gameover-content {
    background: rgba(13, 17, 23, 0.95);
    border-color: rgba(111, 66, 193, 0.5);
    box-shadow: 0 0 40px rgba(111, 66, 193, 0.3), 0 10px 25px rgba(0, 0, 0, 0.5);
}

.lg-gameover-stats {
    background: rgba(111, 66, 193, 0.1);
    border: 1px solid rgba(111, 66, 193, 0.3);
}

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

.lg-btn-primary:hover {
    box-shadow: 0 0 25px rgba(111, 66, 193, 0.6);
}

/* Pause overlay */
.pause-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 17, 23, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 75;
    pointer-events: none;
}

.pause-text {
    font-size: 3rem;
    font-weight: 700;
    color: #a78bfa;
    text-shadow: 0 0 30px rgba(111, 66, 193, 0.8);
    animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.7; text-shadow: 0 0 20px rgba(111, 66, 193, 0.5); }
    50% { opacity: 1; text-shadow: 0 0 40px rgba(111, 66, 193, 1); }
}

/* Touch-friendly adjustments */
@media (pointer: coarse) {
    #game-canvas {
        cursor: default;
    }
}
