* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #1a0f00;
    overflow: hidden;
    font-family: 'Georgia', serif;
    color: #f5deb3;
}

canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* --- MENU --- */
#menu {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #1a0f00 0%, #3d2200 50%, #1a0f00 100%);
    z-index: 10;
}

#menu h1 {
    font-size: 52px;
    text-align: center;
    color: #ffd700;
    text-shadow: 3px 3px 6px #000, 0 0 20px #b8860b;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

#menu .subtitle {
    font-size: 36px;
    color: #f5deb3;
    text-shadow: 2px 2px 4px #000;
}

.level-select {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.level-select h2 {
    font-size: 22px;
    color: #cd853f;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.level-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #4a2800, #6b3a00);
    border: 2px solid #cd853f;
    border-radius: 10px;
    padding: 12px 25px;
    color: #f5deb3;
    font-family: 'Georgia', serif;
    font-size: 16px;
    cursor: pointer;
    width: 320px;
    transition: all 0.2s;
    text-align: left;
}

.level-btn:hover {
    background: linear-gradient(135deg, #6b3a00, #8b4c00);
    border-color: #ffd700;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.level-num {
    font-size: 28px;
    font-weight: bold;
    color: #ffd700;
    min-width: 35px;
    text-align: center;
}

.level-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.level-info strong {
    font-size: 18px;
    color: #ffd700;
}

.level-info em {
    font-size: 13px;
    color: #cd853f;
}

/* --- HUD --- */
#hud {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    font-size: 20px;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px #000;
    z-index: 5;
    pointer-events: none;
}

/* --- GAME OVER --- */
#gameOver {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10;
}

#gameOver h1 {
    font-size: 56px;
    color: #ff4444;
    text-shadow: 3px 3px 6px #000, 0 0 20px #8b0000;
    margin-bottom: 10px;
}

#gameOver p {
    font-size: 20px;
    margin-bottom: 8px;
}

#finalDistance {
    font-size: 26px;
    color: #ffd700;
    margin-bottom: 25px;
}

#gameOver .level-btn {
    width: 240px;
    justify-content: center;
}
