.game-section {
    padding: 80px 0;
}

.game-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--panel);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.game-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(92, 201, 245, 0.1);
    border-radius: var(--radius-md);
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    color: var(--muted);
    font-size: 0.9em;
    margin-bottom: 5px;
}

.stat-value {
    display: block;
    font-size: 2em;
    font-weight: 700;
    color: var(--primario);
}

.game-area {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    background: rgba(11, 29, 42, 0.5);
    border-radius: var(--radius-md);
    padding: 20px;
}

#game-canvas {
    border-radius: var(--radius-md);
    cursor: crosshair;
    background: linear-gradient(180deg, rgba(92, 201, 245, 0.1) 0%, rgba(11, 29, 42, 0.8) 100%);
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.game-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.game-instructions {
    background: rgba(92, 201, 245, 0.05);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-top: 30px;
}

.game-instructions h3 {
    color: var(--primario);
    margin-bottom: 15px;
}

.game-instructions ul {
    list-style: none;
    margin-top: 15px;
}

.game-instructions li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.game-instructions li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .game-container {
        padding: 20px;
    }
    
    #game-canvas {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 400px;
    }
    
    .game-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .game-area {
        overflow: hidden;
    }
}

