body {
    font-family: 'Dosis', sans-serif;
    background-color: #4a4a4a;
    color: white;
    padding: 0;
    margin: 0;
    min-height: 100vh;
    overflow: hidden;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    body {
        overflow: auto !important;
    }
    
    #landingPage {
        position: relative !important;
        height: auto !important;
        overflow: visible !important;
        padding: 0;
        min-height: 100vh;
    }
    
    .landing-content {
        flex-direction: column !important;
        height: auto !important;
        min-height: 100vh;
        overflow: visible !important;
    }
    
    canvas {
        touch-action: pan-x pan-y;
    }
    
    * {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    #container canvas {
        touch-action: manipulation;
    }
    
    .location-btn {
        min-height: 50px !important;
        padding: 12px 8px !important;
        font-size: 13px !important;
        touch-action: manipulation !important;
        -webkit-touch-callout: none;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        position: relative;
        z-index: 100;
        transition: all 0.1s ease;
    }
    
    .location-btn:active {
        transform: scale(0.95) !important;
        background: rgba(235, 173, 6, 0.9) !important;
    }
    
    .locations-grid {
        touch-action: manipulation;
        pointer-events: auto;
    }
    
    .location-number,
    .location-text {
        pointer-events: none;
        touch-action: none;
    }
    
    .start-tour-btn {
        min-height: 50px !important;
        padding: 15px 30px !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        position: relative;
        z-index: 100;
        transition: all 0.1s ease;
    }
    
    .start-tour-btn:active {
        transform: scale(0.95) !important;
    }
}

a {
    color: inherit;
}

.alert {
    padding: 15px;
    background-color: black;
    border-radius: 5px;
    margin: 30px;
    color: white;
    font-weight: bold;
    position: fixed;
    left: 0;
    bottom: 0;
}

.satopbar {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: black;
    color: white;
    display: table;
    width: 100%;
}

.satopbar div {
    padding: 12px;
    display: table-cell;
    vertical-align: middle;
}

.satopbar a {
    text-decoration: none;
}

.sabody {
    padding: 50px;
}

#leftdrawer {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    color: black;
    background-color: white;
    padding-top: 40px;
    overflow: auto;
    min-width: 128px;
}

#leftdrawer div {
    padding: 5px;
    padding-left: 12px;
    border-bottom: 1px solid gray;
    cursor: pointer;
    transition: background-color .3s;
}

#leftdrawer div:hover {
    background-color: black;
    color: white;
}

#leftdrawer a {
    text-decoration: none;
}

#dimmer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    background-color: rgba(0, 0, 0, .5);
}

table {
    border-collapse: collapse;
    width: 100%;
}

table,
th,
td {
    border: 1px solid black;
    font-size: 14px;
}

th {
    text-align: center;
    font-weight: bold;
    background-color: white;
    color: black;
}

th,
td {
    padding: 10px;
}

tr {
    transition: background-color .3s;
}

tr:hover {
    background-color: #545454;
    color: white;
}

.mainwrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: table;
    width: 100%;
    height: 100%;

    background: url(loginbg.jpg) no-repeat fixed center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.lbwrapper {
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 20px;
}

.loginblock {
    padding: 50px;
    background-color: white;
    width: 100%;
    max-width: 400px;
    color: black;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}

.loginbutton {
    background-color: #f11602;
    color: white;
    font-weight: bold;
    border: none;
    outline: none;
    cursor: pointer;
}

input {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 4px;
    border: 1px solid #c0c0c0;
}

.mediaclosebutton {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    color: red;
    font-size: 20px;
    z-index: 10;
    transition: all 500ms;
}

.mediaclosebutton:hover {
    color: white;
}


::-webkit-scrollbar {
    width: 0.25em;
    height: 0.25em;
}

::-webkit-scrollbar-track {
    background: #2c3643;
}

::-webkit-scrollbar-thumb {
    background: #0d9e59;
    transition: background 0.5s;
}

::-webkit-scrollbar-thumb:hover {
    background: #00e075;
}

#container {
    width: 100vw;
    height: 100vh;
    display: block;
}

#overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top: 3px solid #00d4ff;
    border-radius: 50%;
    animation: spin 1s linear infinite, spinnerPulse 2s ease-in-out infinite, spinnerBlink 3s ease-in-out infinite;
}

.loading-text {
    font-size: 18px;
    font-weight: 300;
    font-family: "Arial", sans-serif;
    text-align: center;
    opacity: 0.9;
}

.loading-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 10px;
}

.loading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.9;
    }

    50% {
        opacity: 0.5;
    }
}

.loading-text.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spinnerPulse {

    0%,
    100% {
        transform: scale(1);
        border-top-color: #00d4ff;
    }

    50% {
        transform: scale(1.1);
        border-top-color: #00ff88;
    }
}

@keyframes audioPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
    }
}

@keyframes audioBlink {

    0%,
    85% {
        opacity: 1;
    }

    90%,
    95% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

@keyframes spinnerBlink {

    0%,
    80% {
        opacity: 1;
    }

    85%,
    90% {
        opacity: 0.4;
    }

    95% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .loading-spinner {
        width: 50px;
        height: 50px;
    }

    .loading-text {
        font-size: 16px;
    }

    .loading-progress {
        width: 150px;
    }

    .map-image {
        max-height: 300px;
        object-fit: contain;
    }
}

#tmp {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 3em;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: none;
    z-index: 21;
}

.audio-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    color: white;
    font-family: Arial, sans-serif;
    min-width: 180px;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.audio-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.audio-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: audioPulse 3s ease-in-out infinite, audioBlink 4s ease-in-out infinite;
    animation-delay: var(--delay, 0s), var(--blink-delay, 0s);
}

.audio-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.audio-btn:active {
    transform: scale(0.95);
}

.audio-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    width: 0%;
    transition: width 0.1s ease;
}

@media (max-width: 768px) {
    .audio-player {
        bottom: 10px;
        right: 10px;
        min-width: 150px;
        padding: 10px;
    }

    .audio-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

#landingPage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    padding: 0;
    box-sizing: border-box;
}

#landingPage.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.landing-content {
    display: flex;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    overflow: hidden;
}

.landing-left {
    flex: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
    background: rgba(0, 0, 0, 0.1);
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: mapFloat 3s ease-in-out infinite;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            rgba(0, 212, 255, 0.08) 0%,
            rgba(0, 153, 204, 0.12) 50%,
            rgba(30, 60, 114, 0.15) 100%);
    pointer-events: none;
}

@keyframes mapFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.landing-right {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 50px 40px 80px 40px;
    color: #EBAD06;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.landing-title {
    font-size: 2.2em;
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    color: #EBAD06;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-align: center;
}

.landing-subtitle {
    font-size: 1.0em;
    font-weight: 700;
    margin-bottom: 25px;
    color: #EBAD06;
    opacity: 0.9;
    line-height: 1.4;
    animation: fadeInUp 0.8s ease 0.4s both;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.locations-container {
    animation: fadeInUp 0.8s ease 0.6s both;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.location-btn {
    background: rgba(235, 173, 6, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(235, 173, 6, 0.3);
    border-radius: 8px;
    padding: 10px 12px;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.location-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.location-btn:hover {
    background: rgba(235, 173, 6, 0.3);
    border-color: rgba(235, 173, 6, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(235, 173, 6, 0.4);
}

.location-btn:hover::before {
    left: 100%;
}

.location-btn:active {
    transform: translateY(0);
}

.location-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    background: rgba(235, 173, 6, 0.4);
    border-radius: 50%;
    font-size: 11px;
    margin-right: 10px;
    font-weight: 900;
    flex-shrink: 0;
    color: #FFFFFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.location-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 700;
}

.start-tour-btn {
    background: linear-gradient(135deg, #EBAD06, #D4A105);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    color: #000;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(235, 173, 6, 0.5);
    margin: 0 auto;
    display: block;
    animation: fadeInUp 0.8s ease 0.8s both;
    text-shadow: none;
}

.start-tour-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(235, 173, 6, 0.7);
    background: linear-gradient(135deg, #F2BE0A, #EBAD06);
}

.start-tour-btn:active {
    transform: translateY(-1px);
}

.developer-info {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(235, 173, 6, 0.2);
    animation: fadeInUp 0.8s ease 1s both;
}

.developer-title {
    font-size: 15px;
    font-weight: 600;
    color: #EBAD06;
    margin-bottom: 10px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.developer-list {
    font-size: 13px;
    color: rgba(235, 173, 6, 0.9);
    line-height: 1.5;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-weight: 700;
}

@media (max-width: 768px) {
    #landingPage {
        padding: 0;
        height: auto;
        min-height: 100vh;
    }

    .landing-content {
        flex-direction: column;
        width: 100vw;
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .landing-right {
        flex: 1;
        padding: 20px;
        order: 1;
    }

    .landing-left {
        flex: 0 0 auto;
        padding: 20px;
        height: auto;
        min-height: 40vh;
        order: 2;
        margin-bottom: 20px;
    }

    .map-container {
        max-width: 100%;
        width: 100%;
    }

    .map-image {
        max-height: 300px;
        object-fit: contain;
    }

    .landing-title {
        font-size: 1.9em;
        margin-bottom: 15px;
    }

    .landing-subtitle {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 15px;
    }

    .location-btn {
        font-size: 13px;
        padding: 12px 15px;
        min-height: 42px;
    }

    .location-number {
        min-width: 24px;
        height: 24px;
        font-size: 11px;
        margin-right: 12px;
    }

    .start-tour-btn {
        font-size: 15px;
        padding: 14px 30px;
    }

    .developer-info {
        margin-top: 15px;
        padding: 12px;
        margin-bottom: 20px;
    }

    .developer-title {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .developer-list {
        font-size: 11px;
        line-height: 1.3;
    }

    .map-image {
        max-height: 300px;
        object-fit: contain;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#landingPage:not(.hidden)~* .audio-player {
    display: none;
}

.home-button {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(235, 173, 6, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(235, 173, 6, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(235, 173, 6, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    animation: homeButtonPulse 2s ease-in-out infinite;
}

.home-button.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.home-button:hover {
    background: rgba(235, 173, 6, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(235, 173, 6, 0.6);
}

.home-button:active {
    transform: scale(0.95);
}

.home-button i {
    font-size: 20px;
    color: #000;
    text-shadow: none;
}

@keyframes homeButtonPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(235, 173, 6, 0.4);
    }

    50% {
        box-shadow: 0 4px 15px rgba(235, 173, 6, 0.8), 0 0 0 10px rgba(235, 173, 6, 0.1);
    }
}

#landingPage:not(.hidden)~.home-button {
    display: none;
}

@media (max-width: 768px) {
    .home-button {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .home-button i {
        font-size: 18px;
    }
}

.hamburger-button {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(235, 173, 6, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(235, 173, 6, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(235, 173, 6, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    animation: hamburgerPulse 2s ease-in-out infinite;
}

.hamburger-button.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hamburger-button:hover {
    background: rgba(235, 173, 6, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(235, 173, 6, 0.6);
}

.hamburger-button:active {
    transform: scale(0.95);
}

.hamburger-button i {
    font-size: 20px;
    color: #000;
    text-shadow: none;
}

@keyframes hamburgerPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(235, 173, 6, 0.4);
    }

    50% {
        box-shadow: 0 4px 15px rgba(235, 173, 6, 0.8), 0 0 0 10px rgba(235, 173, 6, 0.1);
    }
}

#panolist {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.95) 0%, rgba(42, 82, 152, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-right: 2px solid rgba(235, 173, 6, 0.3);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.25);
    will-change: transform;
}

#panolist.open {
    left: 0;
}

.panolist-header {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, rgba(235, 173, 6, 0.9) 0%, rgba(212, 161, 5, 0.9) 100%);
    padding: 20px;
    border-bottom: 2px solid rgba(235, 173, 6, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1001;
    text-align: right;
}

.panolist-title {
    font-size: 18px;
    font-weight: 900;
    color: #000;
    margin: 0 0 10px 0;
    text-shadow: none;
    text-align: right;
}

.panolist-close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-align: right;
}

.panolist-close:hover {
    transform: translateX(-5px);
}

.panolist-close i {
    margin-right: 8px;
    font-size: 18px;
}

.panolist-content {
    padding: 20px 0;
}

.pano-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    border-bottom: 1px solid rgba(235, 173, 6, 0.1);
    margin: 0 10px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.pano-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(235, 173, 6, 0.2), transparent);
    transition: left 0.4s ease;
}

.pano-item:hover {
    background: rgba(235, 173, 6, 0.15);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(235, 173, 6, 0.25);
}

.pano-item:hover::before {
    left: 100%;
}

.pano-item:active {
    transform: translateX(4px);
}

.pano-thumbnail {
    width: 60px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(235, 173, 6, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.pano-item:hover .pano-thumbnail {
    border-color: rgba(235, 173, 6, 0.8);
    transform: scale(1.1);
}

.pano-info {
    margin-left: 15px;
    flex: 1;
}

.pano-name {
    font-size: 14px;
    font-weight: 700;
    color: #EBAD06;
    margin: 0 0 5px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.pano-number {
    font-size: 12px;
    color: rgba(235, 173, 6, 0.7);
    font-weight: 500;
}

.pano-arrow {
    font-size: 16px;
    color: rgba(235, 173, 6, 0.6);
    transition: all 0.3s ease;
}

.pano-item:hover .pano-arrow {
    color: #EBAD06;
    transform: translateX(5px);
}

#landingPage:not(.hidden)~.hamburger-button {
    display: none;
}

@media (max-width: 768px) {
    .hamburger-button {
        top: 15px;
        left: 15px;
        width: 45px;
        height: 45px;
    }

    .hamburger-button i {
        font-size: 18px;
    }

    #panolist {
        width: 280px;
        left: -280px;
    }

    .panolist-title {
        font-size: 16px;
    }

    .pano-name {
        font-size: 13px;
    }

    .pano-thumbnail {
        width: 50px;
        height: 35px;
    }
}

.panolist-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.panolist-overlay.active {
    opacity: 1;
    visibility: visible;
}