@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

        body {
            font-family: 'VT323', monospace;
            background-color: #1a202c; /* Dark background */
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            overflow: hidden;
            color: #e2e8f0;
        }

        .game-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding: 2rem;
            background-color: #2d3748; /* Darker card */
            border-radius: 1rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
        }

        #gameCanvas {
            border: 4px solid #4a5568;
            border-radius: 0.5rem;
            background-color: #0f172a; /* Deep blue/black for canvas */
            cursor: pointer;
        }

        .info-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
            font-size: 1.5rem;
            color: #48bb78; /* Green for text */
        }

        .controls-hint {
            font-size: 0.9rem;
            color: #a0aec0;
            text-align: center;
        }

        /* Modal Styles */
        .modal {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10;
        }

        .modal-content {
            background-color: #2d3748;
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
            min-width: 300px;
        }

        .modal-content h2 {
            font-size: 3rem;
            color: #f6ad55; /* Orange/Yellow for headers */
            margin-bottom: 0.5rem;
        }

        .modal-content p {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            color: #cbd5e0;
        }

        .modal-button {
            padding: 0.75rem 1.5rem;
            font-size: 1.25rem;
            font-weight: bold;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.2s;
            background-color: #48bb78; /* Green button */
            color: #1a202c;
            border: none;
            box-shadow: 0 4px #38a169;
        }

        .modal-button:hover {
            background-color: #38a169;
            transform: translateY(-2px);
            box-shadow: 0 6px #2f855a;
        }
        
        /* Removed loading-overlay style as it's no longer used */