/* Observatory Voiceover Overlay */

.voiceover-overlay {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    padding: 20px 32px;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 9999;
    pointer-events: none;
}

.voiceover-overlay.show {
    opacity: 1;
}

.voiceover-text {
    color: #fff;
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.3px;
}