/* VR UI Components for BelowJS */

.vr-ui-panel {
    position: fixed;
    background: var(--below-glass, rgba(0, 20, 40, 0.95));
    border: 1px solid var(--below-glass-border, rgba(0, 150, 255, 0.3));
    backdrop-filter: blur(10px);
    border-radius: 8px;
    color: var(--below-text, #ffffff);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    z-index: 1000;
}

.vr-comfort-glyph {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--below-primary, #00ccff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--below-dark, #001122);
    opacity: 0.8;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.vr-comfort-glyph:hover {
    opacity: 1;
}

.vr-button {
    background: rgba(0, 150, 255, 0.2);
    border: 1px solid var(--below-primary, #00ccff);
    color: var(--below-text, #ffffff);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.vr-button:hover {
    background: rgba(0, 150, 255, 0.4);
}

.vr-button.active {
    background: var(--below-primary, #00ccff);
    color: var(--below-dark, #001122);
}

/* VR Mode Indicators */
.vr-mode-indicator {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--below-glass, rgba(0, 20, 40, 0.95));
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.2em;
    z-index: 2000;
    border: 2px solid var(--below-primary, #00ccff);
}