:root {
    --bg-deep: #0f1b3d;
    --bg-warm: #162040;
    --bg-ink: #0a0f1e;
    --accent-coral: #ff6b6b;
    --accent-amber: #c4956a;
    --text-cream: #f0e6d3;
    --pop-red: #d4382c;
    --pop-blue: #1a3a8f;
    --pop-yellow: #f5c842;
    --font-display: 'Space Grotesk', sans-serif;
    --font-mono: 'DM Mono', monospace;
}

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

html {
    scroll-behavior: auto;
}

body {
    font-family: var(--font-display);
    background-color: var(--bg-deep);
    color: var(--text-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Section Numbers */
.section-number {
    font-family: var(--font-mono);
    font-size: clamp(0.7rem, 1vw, 0.85rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-coral);
    position: absolute;
    top: 2rem;
    left: -1rem;
    opacity: 0.6;
}

/* Halftone Patterns */
.halftone-subtle {
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 8px 8px;
}

.halftone-bold {
    background-image: radial-gradient(circle, rgba(245,200,66,0.25) 3px, transparent 3px);
    background-size: 12px 12px;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Section 01 — The Curtain
   ======================================== */
.curtain {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.curtain-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 0.95;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px var(--text-cream);
    text-align: center;
    position: relative;
    z-index: 2;
}

.curtain-dot {
    color: var(--accent-coral);
    -webkit-text-stroke: 2px var(--accent-coral);
}

.neon-line {
    position: absolute;
    bottom: 33.33%;
    left: -20vw;
    width: 20vw;
    height: 2px;
    background: var(--accent-coral);
    box-shadow: 0 0 8px var(--accent-coral), 0 0 20px rgba(255,107,107,0.3);
    animation: neon-scan 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes neon-scan {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 20vw)); }
}

/* ========================================
   Section 02 — The Story
   ======================================== */
.story {
    position: relative;
    min-height: 80vh;
    background-color: var(--bg-warm);
    padding: 12vh 0 12vh 10vw;
}

.story-content {
    width: 65%;
    max-width: 700px;
}

.story-content p {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.65;
    color: var(--text-cream);
    margin-bottom: 2.5rem;
}

/* ========================================
   Section 03 — The Collection
   ======================================== */
.collection {
    position: relative;
    background-color: var(--bg-warm);
    padding: 10vh 0;
}

.poster {
    position: relative;
    aspect-ratio: 2/3;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8vh;
    overflow: hidden;
}

.poster.odd {
    margin-left: 0;
    margin-right: 15vw;
    background-color: var(--pop-red);
}

.poster.even {
    margin-left: 15vw;
    margin-right: 0;
    background-color: var(--pop-blue);
}

.poster-text {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--pop-yellow);
    position: relative;
    z-index: 2;
}

.poster-shadow {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 0.95;
    text-transform: uppercase;
    color: rgba(10, 15, 30, 0.3);
    position: absolute;
    z-index: 1;
    transform: translate(4px, 4px);
}

/* Crosshair Marks */
.crosshair {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-cream);
    opacity: 0.4;
    position: absolute;
    line-height: 1;
}

.crosshair.tl {
    top: 12px;
    left: 12px;
}

.crosshair.br {
    bottom: 12px;
    right: 12px;
}

/* ========================================
   Section 04 — The Counter
   ======================================== */
.counter {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-deep);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.counter-line {
    position: absolute;
    top: 61.8%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--accent-amber);
}

.counter-text {
    position: absolute;
    top: 61.8%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 400;
    color: var(--text-cream);
    letter-spacing: 0.01em;
    padding: 0 2rem;
    background-color: var(--bg-deep);
    text-align: center;
}

/* ========================================
   Section 05 — The Close
   ======================================== */
.close {
    position: relative;
    width: 100%;
    height: 50vh;
    background-color: var(--bg-ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.close-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-cream);
}

.close-line {
    font-family: var(--font-mono);
    font-size: clamp(0.7rem, 1vw, 0.85rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-amber);
    opacity: 0.7;
}
