body {
    margin: 0;
    overflow: hidden;
    background-color: #000;
    font-family: 'Arial', sans-serif;
}

#ui {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #dcbd85;
    pointer-events: none;
    z-index: 10;
}

h1 {
    margin: 0;
    font-size: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(220, 189, 133, 0.5);
}

p {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #aaa;
}

#info-panel {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    background: rgba(0, 20, 30, 0.8);
    padding: 15px;
    border-left: 3px solid #dcbd85;
    display: none;
    max-width: 300px;
    pointer-events: none;
}

#info-title {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #dcbd85;
}

#info-desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #ddd;
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #dcbd85;
    font-size: 20px;
}