body {
    background-color: #0f172a;
    color: #f8fafc;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Segoe UI', system-ui, sans-serif;
    overflow: hidden;
}

.game-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.game-header h1 {
    margin: 0;
    letter-spacing: 6px;
    text-shadow: 0 0 15px #38bdf8;
}

.game-header span { color: #38bdf8; }

.stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fbbf24;
}

#breakout {
    background: #020617;
    border: 4px solid #1e293b;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
    cursor: none;
}

.footer {
    color: #64748b;
    font-size: 0.9rem;
}