/* Pong Game Specific Styles */

.game-title {
    color: #ffffff;
}

.game-wrapper {
    border-color: #ffffff;
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.3),
        inset 0 0 50px rgba(0, 0, 0, 0.3);
}

#gameCanvas {
    background: #000;
}

.overlay-content h2 {
    color: #ffffff;
}

.pong-controls {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
}

.control-btn.tall {
    height: 80px;
    width: 80px;
}

.control-btn:active {
    background: linear-gradient(180deg, #ffffff, #888888);
    border-color: #ffffff;
}

.pong-stats {
    display: flex;
    justify-content: space-around;
}

.player-score {
    color: var(--neon-cyan) !important;
}

.cpu-score {
    color: var(--neon-red) !important;
}

@media (max-width: 480px) {
    .pong-controls {
        flex-direction: row;
    }
    
    .control-btn.tall {
        height: 65px;
        width: 80px;
    }
}

