/* style.css */
body {
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

#interface {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

#game-container {
    width: 800px;
    height: 600px;
    background-color: #2c2c2c;
    border: 2px solid #4a4a4a;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

#help-text {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    max-width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s;
}

#help-text.hidden {
    opacity: 0;
    pointer-events: none;
}