/* src/styles/SoccerPongPage.css */ .game-area { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; max-width: 800px; /* Match GAME_WIDTH */ margin: 0 auto; position: relative; } canvas { display: block; background-color: #1a202c; /* Dark background for the game */ } .score-board { color: #cbd5e0; /* Light gray text */ margin-bottom: 10px; } .game-over-message, .start-game-message { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: rgba(0, 0, 0, 0.7); padding: 20px; border-radius: 10px; z-index: 10; color: white; text-align: center; } .game-over-message button, .start-game-message button { margin-top: 15px; cursor: pointer; } .goal-animation { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 4rem; font-weight: bold; animation: goalFlash 1s ease-out forwards; z-index: 10; text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); } .goal-animation.player-goal { color: #ff4500; /* OrangeRed */ } .goal-animation.ai-goal { color: #4b0082; /* Indigo */ } @keyframes goalFlash { 0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); } 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.5); } }