/* ============================================================
   Breakout — Game Styles
   ============================================================ */

.hint-text {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: var(--space-sm);
    text-align: center;
}

#gameCanvas {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-surface-2);
    max-width: 95vw;
    max-height: calc(100dvh - 160px);
    touch-action: none;
    cursor: none;
}
