/* games/미로게임/game.css */
.maze-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--background-color);
    padding: 20px;
    box-sizing: border-box;
}

.controls {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.difficulty-select,
.game-button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.difficulty-select:hover,
.game-button:hover {
    background-color: #3a4c6a;
}

.game-info {
    display: flex;
    gap: 30px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

#mazeCanvas {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    touch-action: none;
    max-width: 100%;
    max-height: 70vh;
}

@media (max-width: 768px) {
    .controls {
        flex-direction: column;
        gap: 10px;
    }

    .game-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}