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

html,
body
{
    overflow: hidden;
}

.experience
{
    position: fixed;
    width: 100vw;
    height: 100vh;
}

.experience::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    opacity: 1;
    transition: opacity 2s ease-in;
    pointer-events: none;
}

.experience.visible::before
{
    opacity: 0;
}

.credits
{
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.6);
    text-align: right;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.light-theme .credits
{
    color: rgba(0, 0, 0, 0.5);
}

.credits a
{
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

body.light-theme .credits a
{
    color: rgba(0, 0, 0, 0.8);
}

.credits a::after
{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.credits a:hover::after
{
    width: 100%;
}

.credits a:hover
{
    color: #fff;
}

body.light-theme .credits a:hover
{
    color: #000;
}

/* Theme toggle button */
#theme-toggle
{
    position: fixed;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
}

#theme-toggle.visible
{
    opacity: 1;
    visibility: visible;
}

#theme-toggle:hover
{
    transform: scale(1.1);
}

body.light-theme #theme-toggle
{
    background: rgba(30, 30, 30, 0.9);
    color: #fff;
}

/* Free Camera Toggle in Info Panel */
#free-camera-toggle.active
{
    background: rgba(76, 175, 80, 0.9);
    color: #fff;
}

body.light-theme #free-camera-toggle.active
{
    background: rgba(76, 175, 80, 0.9);
    color: #000;
}

/* Info Panel */
.info-panel
{
    position: fixed;
    top: 25%;
    left: 20px;
    z-index: 100;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: none;
    flex-direction: column;
    gap: 4px;
}

.info-panel.visible
{
    display: flex;
}

.info-box
{
    background: #fff;
    color: #000;
    padding: 5px 10px;
    transition: all 0.3s ease;
    width: fit-content;
}

.info-name, .info-role
{
    display: none;
}

.info-name.visible, .info-role.visible
{
    display: block;
}

.info-row
{
    display: none;
    gap: 4px;
}

.info-row.visible
{
    display: flex;
    animation: fadeIn 0.5s ease;
}

.info-cursor
{
    animation: blink 0.5s infinite;
    font-weight: 400;
}

.info-cursor.hidden
{
    display: none;
}

.info-name
{
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.info-role
{
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.info-row
{
    display: flex;
    gap: 4px;
}

.info-time
{
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.info-icon
{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 7px;
}

.info-icon svg
{
    width: 12px;
    height: 12px;
}

body.light-theme .info-box
{
    background: #000;
    color: #fff;
}

/* Click anywhere prompt */
.click-prompt
{
    position: fixed;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    padding: 4px 12px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
    z-index: 99999;
    display: none;
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.click-prompt.visible
{
    display: block;
}

.click-prompt.fade-out
{
    opacity: 0;
}

.cursor-blink
{
    display: inline;
    font-weight: 700;
    animation: blink 0.6s infinite;
}

@keyframes blink
{
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Vignette shadow effect */
.experience::after
{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

/* Loading Screen */
.loading-screen
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 1.5s ease-out, visibility 1.5s ease-out;
    overflow: hidden;
}

/* Layered gradient background */
.loading-screen::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250%;
    height: 200%;
    background: 
        radial-gradient(ellipse 70% 65% at 50% 0%, 
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,0.98) 40%,
            rgba(250,245,240,0.95) 46%,
            rgba(249,115,22,0.85) 52%,
            rgba(234,88,12,0.7) 58%,
            rgba(120,50,10,0.5) 64%,
            rgba(40,20,5,0.4) 70%,
            rgba(0,0,0,0.8) 78%,
            rgba(0,0,0,1) 88%
        );
    pointer-events: none;
}

.loading-screen.hidden
{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 1.5s ease, visibility 1.5s ease;
}

/* Glass overlays - removed for dark theme */
.loading-overlay
{
    display: none;
}

/* Floating glass panels - hidden for dark theme */
.glass-panel
{
    display: none;
}

/* Floating dots - hidden for dark theme */
.floating-dot
{
    display: none;
}

/* Loading content */
.loading-content
{
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.loading-title
{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(48px, 12vw, 120px);
    font-weight: 500;
    letter-spacing: -2px;
    color: #111;
    margin: 0 0 20px 0;
    opacity: 0;
    transform: scale(0.95);
    animation: fadeInScale 1s ease-out 0.5s forwards;
}

@keyframes fadeInScale
{
    to { opacity: 1; transform: scale(1); }
}

.loading-middle
{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.loading-status
{
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: rgba(0,0,0,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.7s forwards;
}

@keyframes fadeIn
{
    to { opacity: 1; }
}

.loading-branding
{
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.9s forwards;
}

.loading-by
{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(0,0,0,0.6);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 8px 0;
}

.loading-author
{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    color: #111;
    letter-spacing: 2px;
    margin: 0;
}

.loading-progress-container
{
    max-width: 350px;
    margin: 0 auto;
    width: 100%;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 1.1s forwards;
}

.loading-bar-bg
{
    position: relative;
    height: 4px;
    background: rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.3);
}

.loading-bar
{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff8c00 0%, #ff6600 50%, #ff8c00 100%);
    box-shadow: 0 0 25px rgba(255,140,0,0.7);
    transition: width 0.1s ease-out;
}

.loading-shine
{
    position: absolute;
    top: 0;
    left: -30%;
    height: 100%;
    width: 40px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.3s ease-out;
}

.loading-percent
{
    margin-top: 15px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 700;
    color: rgba(0,0,0,0.8);
}

.loading-bottom
{
    opacity: 0;
    animation: fadeIn 0.8s ease-out 1.3s forwards;
}

.loading-year
{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 500;
    color: rgba(0,0,0,0.85);
    margin: 0 0 10px 0;
}

.loading-subtitle
{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(0,0,0,0.75);
    margin: 0 0 30px 0;
}

.loading-btn-container
{
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-start-btn
{
    display: none;
    padding: 16px 60px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #fff;
    background: #111;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.loading-start-btn.visible
{
    display: block;
    animation: scaleIn 0.5s ease-out;
}

.loading-start-btn:hover
{
    transform: scale(1.1);
    background: #222;
}

@keyframes scaleIn
{
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/*# sourceMappingURL=main.css.map*/