/* === Bubble Pop — Vibrant Neon Style === */
.game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    min-height: calc(100vh - var(--nav-height));
    padding-top: calc(var(--nav-height) + var(--space-6));
}

.game-header {
    text-align: center;
}

.stats-bar {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    justify-content: center;
}

.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    font-family: var(--font-mono);
}

.bubble-board-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 2px solid rgba(236, 72, 153, 0.15);
    background: rgba(0, 0, 0, 0.4);
    box-shadow:
        0 0 50px rgba(236, 72, 153, 0.08),
        0 0 100px rgba(168, 85, 247, 0.04),
        inset 0 0 40px rgba(0, 0, 0, 0.3);
    transition: box-shadow var(--transition-base);
}

.bubble-board-wrapper:hover {
    box-shadow:
        0 0 70px rgba(236, 72, 153, 0.12),
        0 0 120px rgba(168, 85, 247, 0.06),
        inset 0 0 40px rgba(0, 0, 0, 0.3);
}

#bubble-canvas {
    display: block;
    max-width: 100%;
    height: auto;
    cursor: pointer;
}

.controls-hint {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-align: center;
}

@media (max-width: 600px) {
    #bubble-canvas {
        width: 100%;
    }

    .stats-bar {
        gap: var(--space-2);
    }
}