@import url('../assets/fonts/orbitron.css');

body {
    font-family: 'Orbitron', sans-serif;
    touch-action: none; /* Prevent browser zooming/scrolling */
}

#gameCanvas {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    /* Aspect ratio will be handled by JS resizing */
}

.paddle-glow {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.6);
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.powerup {
    animation: pulse 1s infinite;
}
