#snake-canvas {
    background-color: #000;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    width: 100%;
    height: 100%;
    object-fit: contain; /* Stellt sicher, dass das Canvas im Container bleibt */
}

#snake-game-container {
    font-family: 'VT323', monospace;
    color: var(--accent-color);
}

#snake-game-over {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ef4444; /* red-500 */
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px #000;
    display: none; /* Initially hidden */
    pointer-events: none; /* Make sure it doesn't block clicks on canvas */
}