/*!*******************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./titan/titan.css ***!
  \*******************************************************************/
/* --- Global Reset & Base --- */
html, body {
    margin: 0;
    padding: 0;
    overflow: hidden; /* Keep it locked for 3D */
    font-family: "Manrope", sans-serif;
    background-color: #0B1120; /* Deep Navy */
    color: #fff;
}

/* --- Navigation --- */
.site-nav.transparent {
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    border: none;
    position: fixed;
    top: 0; width: 100%; z-index: 1000;
}

.brand-text { color: #fff; font-weight: 700; font-family: "Sora", sans-serif; }
.nav-links a { color: rgba(255,255,255,0.8); font-weight: 600; text-decoration: none; }
.nav-links a:hover { color: #fff; }

/* --- Canvas --- */
#container {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
}

/* --- Loading Screen --- */
#loading-screen {
    position: fixed; inset: 0;
    background-color: #0B1120;
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
}
#loading-screen.fade-out { opacity: 0; pointer-events: none; }

.loader-content { text-align: center; }
.loader-content p { margin-top: 1rem; color: #94A3B8; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; }

.spinner {
    width: 50px; height: 50px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: #0F766E; /* VBG Teal */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- HUD Panel (The Magic) --- */
.hud-panel {
    position: fixed;
    bottom: 3rem; /* Moved up slightly */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 700px; /* Wider to fit larger text */
    background: rgba(15, 23, 42, 0.9); /* Darker, more solid backing for readability */
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 2.5rem;
    z-index: 100;
    color: #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hud-header {
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.hud-label { 
    font-size: 1.1rem; /* Increased from 0.8rem */
    text-transform: uppercase; 
    color: #94A3B8; 
    letter-spacing: 0.1em; 
    font-weight: 700; 
}

.hud-step { 
    font-family: "Sora", sans-serif; 
    font-weight: 700; 
    color: #0F766E; 
    font-size: 1.6rem; /* Increased for visibility */
}

.hud-content h2 {
    font-family: "Sora", sans-serif;
    font-size: 3rem; /* Increased from 1.8rem */
    margin: 0 0 1rem 0;
    color: #fff;
    line-height: 1.1;
}

.hud-content p {
    font-size: 1.6rem; /* Increased from 1rem */
    line-height: 1.6;
    color: #CBD5E1;
    margin: 0 0 2rem 0;
    max-width: 600px;
}

/* Controls Row */
.hud-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-icon {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 50px; height: 50px; /* Larger touch targets */
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.btn-icon:hover { background: #0F766E; border-color: #0F766E; transform: scale(1.1); }
.btn-icon .material-icons { font-size: 24px; }

.scroll-hint {
    display: flex; align-items: center; gap: 0.8rem;
    color: #64748B; font-size: 1rem; font-weight: 600; text-transform: uppercase;
}
.scroll-hint .material-icons { font-size: 1.4rem; animation: bounce 2s infinite; }

@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }

/* --- Static Content (End Screen) --- */
#static-content {
    position: fixed; inset: 0;
    background: #0B1120;
    z-index: 2000;
    overflow-y: auto;
    padding: 6rem 2rem;
}

.static-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.static-header { text-align: center; margin-bottom: 4rem; }
.static-header h1 { font-family: "Sora"; font-size: 3rem; margin-bottom: 1rem; }
.static-header p { color: #94A3B8; font-size: 1.4rem; max-width: 600px; margin: 0 auto 2rem; }

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.summary-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.2s;
}
.summary-card:hover { transform: translateY(-5px); border-color: #0F766E; }
.summary-card img { width: 100%; border-radius: 8px; margin-bottom: 1rem; }
.summary-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: #fff; }
.summary-card p { font-size: 0.9rem; color: #94A3B8; line-height: 1.4; }

@media (max-width: 600px) {
    .hud-panel { padding: 1.5rem; bottom: 1rem; }
    .hud-content h2 { font-size: 2rem; }
    .hud-content p { font-size: 1.3rem; }
    .scroll-hint { display: none; }
}
