#ui-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

#ui-overlay > div {
    pointer-events: auto;
}

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 20, 0.7);
    backdrop-filter: blur(5px);
    border-bottom: 2px solid #4040ff;
}

h1 {
    color: #60f0ff;
    text-shadow: 0 0 10px #00a0ff, 0 0 20px #0060ff;
    font-size: 2rem;
}

h2 {
    color: #60f0ff;
    margin-bottom: 1rem;
    text-align: center;
}

#resources {
    font-size: 1.2rem;
    color: #ffcc00;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Menu Button Styles */
#menu-button {
    background: rgba(20, 20, 40, 0.85);
    border: 2px solid #4040ff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(64, 64, 255, 0.5);
    backdrop-filter: blur(5px);
    transition: all 0.2s;
}

#menu-button:hover {
    background: rgba(64, 64, 255, 0.3);
    transform: scale(1.1);
}

#menu-button i {
    color: #60f0ff;
    font-size: 1.5rem;
}