:root {
    --accent-color: #FFB74D;
    --accent-dark: #F57C00;
}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow: hidden;
}

#container {
    width: 100vw;
    height: 100vh;
    position: relative;
}

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

#title {
    position: absolute;
    top: 40px;
    left: 50px;
    z-index: 10;
    pointer-events: none;
}

#title h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 60%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#title p {
    font-size: 1rem;
    font-weight: 300;
    color: #aaaaaa;
    letter-spacing: 1px;
}

#controls-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

#controls-hint p {
    font-size: 0.85rem;
    color: #666666;
    letter-spacing: 0.5px;
}

#autorotate-btn {
    position: absolute;
    top: 40px;
    right: 50px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 183, 77, 0.4);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
                0 0 12px rgba(255, 183, 77, 0.12);
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}

#autorotate-btn:hover {
    background: rgba(255, 183, 77, 0.15);
    border-color: rgba(255, 183, 77, 0.8);
    transform: translateY(-2px);
}

#autorotate-btn:active {
    transform: translateY(0);
}

#info-panel {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    width: 350px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 183, 77, 0.3);
    border-radius: 12px;
    padding: 30px;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(255, 183, 77, 0.1);
}

#info-panel.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(50px);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.6;
    transition: all 0.2s;
}

.close-btn:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: rotate(90deg);
}

#theater-name {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: var(--accent-color);
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 183, 77, 0.3);
}

#theater-location {
    font-size: 0.9rem;
    color: #aaaaaa;
    margin-bottom: 15px;
    font-weight: 300;
}

#theater-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
    font-weight: 300;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 183, 77, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 183, 77, 0.5);
}

@media (max-width: 768px) {
    #title {
        top: 20px;
        left: 20px;
    }

    #title h1 {
        font-size: 1.8rem;
    }

    #info-panel {
        right: 20px;
        left: 20px;
        width: auto;
    }
}
