:root {
    --bg-color: #000c0a; /* Dark Forest Green */
    --text-color: #f0fff4; /* Soft Mint / White */
    --accent-color: #f0fff4;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    height: 100%;
    -webkit-font-smoothing: antialiased;
}

/* HIDE DEFAULT SCROLLBAR */
::-webkit-scrollbar {
    display: none;
}
html {
    scrollbar-width: none; /* Firefox */
}

/* CUSTOM PROGRESS BAR */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 2000;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: #f0fff4;
    box-shadow: 0 0 15px #f0fff4;
}

/* LOADING SCREEN */
.loader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

.loader-bar {
    width: 260px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.loader-fill {
    height: 100%;
    width: 0%;
    background: #fff;
    box-shadow: 0 0 15px #fff;
    transition: width 0.3s ease-out;
}

.loader-status {
    font-family: monospace;
    font-size: 10px;
    letter-spacing: 0.8em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

/* BACKGROUND STYLES */
.fixed-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    background: #000;
    will-change: transform;
}

.vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 80%, #000 100%);
    z-index: 10;
    pointer-events: none;
}

#scrolly-canvas {
    width: 100%;
    height: 100%;
    opacity: 1.0;
    display: block;
}

#fx-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5; /* On top of the sequence, below text */
}

#warp-canvas {
    position: absolute;
    inset: 0;
    z-index: 5;
    opacity: 0.4;
    pointer-events: none;
}

/* CONTENT STYLES */
main {
    position: relative;
    z-index: 20;
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 18vw;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    line-height: 0.8;
    color: #fff;
    text-align: center;
    pointer-events: auto;
    text-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
}

.scroll-spacer {
    height: 600vh;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 14vw;
        letter-spacing: -0.02em;
    }
    .scroll-spacer {
        height: 400vh; /* Slightly shorter scroll for mobile */
    }
}
