/* ============================================
   Game Section Styles
   ============================================ */

.game-section {
    padding: 0;
    margin: 0;
    width: 100%;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

#gameCanvas {
    width: 100%;
    height: auto;
    display: block;
    background: var(--bg-primary);
    cursor: pointer;
    border-radius: 0;
}

/* Responsive para el juego */
@media (max-width: 768px) {
    #gameCanvas {
        height: 400px;
    }
}

@media (max-width: 480px) {
    #gameCanvas {
        height: 300px;
    }
}

