/* ================================================
   METATERAPI - Uyku Terapisi
   Sakinleştirici gece temalı tasarım
   ================================================ */

:root {
    /* Gece renk paleti */
    --night-dark: #0a0e1a;
    --night-blue: #1a1f3a;
    --night-purple: #2d2b55;
    --moon-glow: #f4f1de;
    --star-white: #ffffff;
    --lavender: #9b8bb4;
    --soft-blue: #6b7fd7;
    --warm-orange: #e8a87c;
    --sunset-pink: #c38d9e;
    --calm-teal: #41b3a3;
    --text-primary: #f4f1de;
    --text-secondary: #a0a0b0;

    /* Gradients */
    --gradient-night: linear-gradient(180deg, #0a0e1a 0%, #1a1f3a 50%, #2d2b55 100%);
    --gradient-sunset: linear-gradient(180deg, #e8a87c 0%, #c38d9e 50%, #6b7fd7 100%);
    --gradient-moon: radial-gradient(circle, #f4f1de 0%, #d4d0b8 100%);
    --gradient-sleep: linear-gradient(180deg, #1a1f3a 0%, #0a0e1a 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--night-dark);
    color: var(--text-primary);
    overflow: hidden;
}

/* ================================================
   YÜKLEME EKRANI
   ================================================ */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-night);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.loading-content {
    text-align: center;
}

/* Ay yükleme animasyonu */
.moon-loader {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.moon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: var(--gradient-moon);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 40px rgba(244, 241, 222, 0.4);
    animation: moonPulse 3s ease-in-out infinite;
}

.moon::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 8px;
    width: 12px;
    height: 12px;
    background: rgba(0,0,0,0.1);
    border-radius: 50%;
}

.moon::after {
    content: '';
    position: absolute;
    top: 25px;
    right: 15px;
    width: 8px;
    height: 8px;
    background: rgba(0,0,0,0.08);
    border-radius: 50%;
}

@keyframes moonPulse {
    0%, 100% { box-shadow: 0 0 40px rgba(244, 241, 222, 0.4); }
    50% { box-shadow: 0 0 60px rgba(244, 241, 222, 0.6); }
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stars span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: twinkle 2s ease-in-out infinite;
}

.stars span:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.stars span:nth-child(2) { top: 20%; right: 15%; animation-delay: 0.5s; }
.stars span:nth-child(3) { top: 60%; left: 10%; animation-delay: 1s; }
.stars span:nth-child(4) { bottom: 20%; right: 20%; animation-delay: 1.5s; }
.stars span:nth-child(5) { bottom: 30%; left: 30%; animation-delay: 0.3s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

#loading-screen h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--moon-glow);
    margin-bottom: 0.5rem;
}

#loading-screen .subtitle {
    font-size: 1.1rem;
    color: var(--lavender);
    margin-bottom: 2rem;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto 1rem;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--lavender), var(--soft-blue));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.loading-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ================================================
   GİRİŞ EKRANI
   ================================================ */
#intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    overflow-y: auto;
}

.intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-night);
}

/* Yıldız arka planı */
.intro-overlay::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, white, transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 160px 120px, white, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: starsMove 100s linear infinite;
}

@keyframes starsMove {
    from { transform: translateY(0); }
    to { transform: translateY(-200px); }
}

.intro-content {
    position: relative;
    text-align: center;
    max-width: 600px;
    padding: 3rem;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.intro-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.intro-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--moon-glow);
    margin-bottom: 0.25rem;
}

.intro-subtitle {
    font-size: 1.2rem;
    color: var(--lavender);
    margin-bottom: 2rem;
}

.intro-description {
    margin-bottom: 2.5rem;
}

.intro-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.intro-note {
    font-size: 0.95rem !important;
    color: var(--calm-teal) !important;
    font-style: italic;
}

/* Uyku Sorunu Seçici */
.sleep-issue-selector {
    margin-bottom: 2.5rem;
}

.selector-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.issue-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.issue-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    min-width: 140px;
}

.issue-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.issue-btn.selected {
    background: rgba(155, 139, 180, 0.3);
    border-color: var(--lavender);
}

.issue-icon {
    font-size: 2rem;
}

.issue-text {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Başla Butonları */
.intro-buttons {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.start-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--lavender) 0%, var(--soft-blue) 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.start-btn:not(:disabled) {
    opacity: 1;
}

.start-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(155, 139, 180, 0.4);
}

.vr-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--night-purple) 0%, var(--soft-blue) 100%);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vr-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 127, 215, 0.4);
}

.vr-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.vr-status-text {
    font-size: 0.75rem;
    opacity: 0.8;
}

.intro-controls {
    display: flex;
    gap: 2rem;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
}

.controls-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 12px;
}

.controls-title {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

/* ================================================
   3D CANVAS
   ================================================ */
#therapy-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* ================================================
   DİYALOG PANELİ
   ================================================ */
#dialog-panel {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    max-width: 700px;
    width: 90%;
    z-index: 100;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateX(-50%) translateY(30px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.dialog-avatar {
    position: relative;
    flex-shrink: 0;
}

.avatar-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--night-purple), var(--soft-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.avatar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--lavender);
    transform: translate(-50%, -50%);
    animation: avatarPulse 2s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

.avatar-pulse.speaking {
    animation: speakingPulse 0.5s ease-in-out infinite;
    border-color: var(--calm-teal);
}

@keyframes speakingPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.7; }
}

.dialog-content {
    flex: 1;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dialog-name {
    font-size: 0.85rem;
    color: var(--lavender);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.dialog-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.dialog-choices {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.choice-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.choice-btn:hover {
    background: rgba(155, 139, 180, 0.2);
    border-color: var(--lavender);
    transform: translateY(-2px);
}

/* Devam butonu artık kullanılmıyor - otomatik ilerleme */
.dialog-continue {
    display: none !important;
}

/* ================================================
   NEFES EGZERSİZİ
   ================================================ */
#breath-exercise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 26, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
}

.breath-container {
    text-align: center;
}

.breath-visual {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 2rem;
}

.breath-main-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--lavender), var(--soft-blue));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 4s ease-in-out;
    box-shadow: 0 0 60px rgba(155, 139, 180, 0.4);
}

.breath-main-circle.inhale {
    transform: translate(-50%, -50%) scale(1.4);
}

.breath-main-circle.hold {
    transform: translate(-50%, -50%) scale(1.4);
}

.breath-main-circle.exhale {
    transform: translate(-50%, -50%) scale(1);
}

.breath-instruction {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.breath-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(155, 139, 180, 0.3);
    transform: translate(-50%, -50%);
}

.ring-1 { width: 180px; height: 180px; }
.ring-2 { width: 210px; height: 210px; }
.ring-3 { width: 240px; height: 240px; }

.breath-timer {
    font-size: 3rem;
    font-weight: 700;
    color: var(--lavender);
    margin-bottom: 1rem;
}

.breath-info {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.breath-skip {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.breath-skip:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

/* ================================================
   PROGRESİF KAS GEVŞETME
   ================================================ */
#relaxation-exercise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 26, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
}

.relaxation-container {
    text-align: center;
}

.body-visual {
    width: 150px;
    height: 300px;
    margin: 0 auto 2rem;
    position: relative;
}

.body-outline {
    width: 100%;
    height: 100%;
    position: relative;
}

.body-part {
    position: absolute;
    background: rgba(155, 139, 180, 0.2);
    border-radius: 10px;
    transition: all 0.5s ease;
}

.body-part.active {
    background: var(--lavender);
    box-shadow: 0 0 30px rgba(155, 139, 180, 0.6);
}

.body-part.relaxed {
    background: var(--calm-teal);
    box-shadow: 0 0 20px rgba(65, 179, 163, 0.4);
}

.body-part.feet { width: 80px; height: 25px; bottom: 0; left: 50%; transform: translateX(-50%); }
.body-part.legs { width: 60px; height: 80px; bottom: 30px; left: 50%; transform: translateX(-50%); }
.body-part.stomach { width: 70px; height: 50px; bottom: 115px; left: 50%; transform: translateX(-50%); }
.body-part.chest { width: 80px; height: 50px; bottom: 170px; left: 50%; transform: translateX(-50%); }
.body-part.arms { width: 120px; height: 30px; bottom: 190px; left: 50%; transform: translateX(-50%); border-radius: 15px; }
.body-part.shoulders { width: 100px; height: 25px; bottom: 225px; left: 50%; transform: translateX(-50%); }
.body-part.head { width: 50px; height: 50px; bottom: 255px; left: 50%; transform: translateX(-50%); border-radius: 50%; }

.relaxation-instruction {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--moon-glow);
    margin-bottom: 0.5rem;
}

.relaxation-action {
    font-size: 1.1rem;
    color: var(--lavender);
    margin-bottom: 2rem;
}

.relaxation-skip {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    cursor: pointer;
}

/* ================================================
   İLERLEME GÖSTERGESİ
   ================================================ */
#progress-indicator {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.progress-steps {
    display: flex;
    align-items: center;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.step.active, .step.completed {
    opacity: 1;
}

.step.completed .step-dot {
    background: var(--calm-teal);
}

.step-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.step.active .step-dot {
    background: var(--lavender);
    box-shadow: 0 0 10px rgba(155, 139, 180, 0.5);
}

.step span {
    font-size: 0.8rem;
    font-weight: 500;
}

.step-line {
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 0.5rem;
}

/* ================================================
   GÜVENLİ ÇIKIŞ
   ================================================ */
#safe-exit {
    position: fixed;
    top: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
}

#safe-exit:hover {
    background: rgba(155, 139, 180, 0.2);
    border-color: var(--lavender);
}

/* ================================================
   KONTROL İPUÇLARI
   ================================================ */
#controls-hint {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 100;
}

.hint-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.key {
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* ================================================
   CROSSHAIR
   ================================================ */
#crosshair {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 50;
}

.crosshair-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.crosshair-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

#crosshair.interactive .crosshair-ring {
    width: 30px;
    height: 30px;
    border-color: var(--lavender);
}

/* ================================================
   BİLDİRİM
   ================================================ */
#message-notification {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    z-index: 150;
    animation: notificationIn 0.5s ease;
}

@keyframes notificationIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.notif-icon {
    font-size: 1.2rem;
}

/* ================================================
   BAŞARI EKRANI
   ================================================ */
#success-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-night);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 500;
    overflow-y: auto;
}

.success-content {
    text-align: center;
    max-width: 500px;
    padding: 2rem;
    animation: fadeInUp 0.8s ease;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.success-content h1 {
    font-size: 3rem;
    color: var(--moon-glow);
    margin-bottom: 0.5rem;
}

.success-message {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.success-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lavender);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.sleep-tips {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.sleep-tips h3 {
    font-size: 1rem;
    color: var(--lavender);
    margin-bottom: 1rem;
}

.sleep-tips ul {
    list-style: none;
}

.sleep-tips li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.sleep-tips li::before {
    content: '🌙';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.success-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-replay, .btn-exit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-replay {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-exit {
    background: var(--lavender);
    border: none;
    color: white;
}

.btn-replay:hover, .btn-exit:hover {
    transform: translateY(-2px);
}

/* ================================================
   VR STATUS
   ================================================ */
#vr-status {
    position: fixed;
    top: 30px;
    left: 30px;
    padding: 0.5rem 1rem;
    background: rgba(107, 127, 215, 0.3);
    border: 1px solid var(--soft-blue);
    border-radius: 8px;
    font-size: 0.85rem;
    z-index: 100;
}

/* ================================================
   UTILITY
   ================================================ */
.hidden {
    display: none !important;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
    .intro-title {
        font-size: 2.5rem;
    }

    .issue-options {
        flex-direction: column;
    }

    .issue-btn {
        flex-direction: row;
        justify-content: center;
    }

    #dialog-panel {
        flex-direction: column;
        align-items: stretch;
    }

    .progress-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .step-line {
        display: none;
    }
}
