/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    overflow: hidden;
}

/* Game container */
#game-container {
    position: relative;
    width: 480px;
    height: 480px;
}

/* Screen styles */
.screen {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.screen.hidden {
    display: none;
}

/* Title screen styles */
#title-screen h1 {
    font-size: 36px;
    color: #34495e;
    margin-bottom: 40px;
    font-weight: bold;
}

#new-game-btn {
    padding: 15px 30px;
    font-size: 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

#new-game-btn:hover {
    background-color: #45a049;
}

/* Game screen styles */
#game-screen {
    background-color: #f0f0f0;
}

#status-bar {
    display: flex;
    justify-content: space-between;
    width: 480px;
    padding: 5px 0;
    margin-bottom: 4px;
}

#timer,
#fog-indicator {
    color: #34495e;
    font-size: 14px;
    font-family: monospace;
}

/* Congratulations banner styles */
.banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 20;
}

.banner.hidden {
    display: none;
}

/* Responsive design */
@media (max-width: 480px) {
    body {
        height: 100vh;
        width: 100vw;
    }

    #game-container {
        width: 100%;
        height: 100%;
    }

    #maze-canvas {
        width: 100%;
        height: 100%;
    }

    #timer {
        top: 5px;
        right: 5px;
        font-size: 12px;
        padding: 3px 8px;
    }

    #title-screen h1 {
        font-size: 28px;
    }

    #new-game-btn {
        padding: 12px 25px;
        font-size: 18px;
    }

    .banner {
        font-size: 20px;
        padding: 15px;
    }
}