:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-gold: #D4AF37;
    --accent-blue: #1A237E;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

h1 {
    font-size: clamp(3rem, 10vw, 8rem);
    background: linear-gradient(to bottom, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

p {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #a0a0a0;
}

/* Scroller Section */
#video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; /* Slight dim for text readability */
    filter: contrast(1.1) brightness(0.9);
}

/* Content Sections */
.spacer {
    height: 100vh; /* Allow scrolling */
}

.content-section {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    /* Glassmorphism backing for readability if playhead is busy */
    /* pointer-events: none; allow scrolling through */
}

.glass-panel {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    opacity: 0; /* Animated in */
    transform: translateY(30px);
}

.hero-title {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Scroll Indication */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-gold);
    font-size: 0.9rem;
    letter-spacing: 0.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}

footer {
    padding: 4rem 2rem;
    text-align: center;
    background: #000;
    position: relative;
    z-index: 20;
    border-top: 1px solid #222;
}

footer p {
    font-size: 0.9rem;
    color: #666;
}
