/**
 * Snake-Spiel Styles
 */

.game-container {
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
}

.game-info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

#gameCanvas {
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    background: var(--dark-bg);
    display: block;
    margin: 0 auto;
}

.game-controls {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.game-controls button {
    padding: 0.5rem 1.5rem;
}

.instructions {
    margin-top: 1rem;
    color: var(--text-muted);
}

