/* ==========================================================================
   The Midnight Saga - Narrative Experience Styles
   Author: Cartez Augustus, Appdore, LLC
   
   This stylesheet powers the full dramatic narrative for The Midnight Saga.
   It extends the existing albums.css design system with story-specific 
   components: prose sections, scene images, track narrative cards, 
   chapter navigation, and the overall cinematic reading experience.
   ========================================================================== */

/* --- Saga-specific CSS variables --- */
:root {
    --midnight-gold: #FFD700;
    --static-purple: #9D4EDD;
    --glitch-cyan: #00F5FF;
    --chrome-silver: #C0C0C0;
    --travel-amber: #FFBF00;
    --deep-black: #0a0a0a;
    --off-white: #f5f5f5;
    
    /* Narrative-specific colors */
    --blood-red: #8B0000;
    --bruise-purple: #2D1B4E;
    --ash-gray: #4a4a4a;
    --dawn-pink: #C9917A;
    --sage-green: #6B8F71;
}

/* ==========================================================================
   Base / Reset (mirrors albums.css)
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    background: var(--deep-black);
    color: var(--off-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ==========================================================================
   Navigation (same as albums.css for consistency)
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--midnight-gold), var(--static-purple), var(--glitch-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: rgba(245, 245, 245, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-link:hover {
    color: var(--midnight-gold);
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    background: rgba(20, 20, 30, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.25rem;
    color: rgba(245, 245, 245, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--midnight-gold);
    border-left-color: var(--midnight-gold);
}

.dropdown-item.active {
    background: rgba(255, 215, 0, 0.1);
    color: var(--midnight-gold);
    border-left-color: var(--midnight-gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--off-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--midnight-gold);
}


/* ==========================================================================
   Saga Hero - Full-screen cinematic opening
   ========================================================================== */

.saga-hero-full {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    /* Dark gradient with subtle gold warmth */
    background: radial-gradient(ellipse at 50% 30%, rgba(255, 215, 0, 0.04) 0%, transparent 60%),
                linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}

/* Subtle animated grain/noise overlay for cinematic feel */
.saga-hero-full::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.saga-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.saga-hero-content .saga-label {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.4);
    margin-bottom: 1.5rem;
}

.saga-hero-content h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--midnight-gold), #fff, var(--midnight-gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.saga-hero-content .saga-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(245, 245, 245, 0.6);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.saga-hero-content .saga-meta {
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.35);
    letter-spacing: 0.1em;
}

/* Scroll prompt at bottom */
.saga-scroll-prompt {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.saga-scroll-prompt span {
    display: block;
    font-size: 0.8rem;
    color: rgba(245, 245, 245, 0.3);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.saga-scroll-prompt .scroll-line {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.4), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.3); }
}


/* ==========================================================================
   Characters Section
   ========================================================================== */

.characters-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #111118 100%);
}

.characters-section h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
    color: var(--off-white);
}

.characters-section .section-subtitle {
    text-align: center;
    color: rgba(245, 245, 245, 0.5);
    font-size: 1rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.characters-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    /* 2x2 layout: four characters, two per row (single column on mobile) */
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.character-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.character-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.character-card .char-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.character-card .char-role {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.character-card .char-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(245, 245, 245, 0.7);
}

/* Color accents per character */
.char-marley .char-name { color: var(--midnight-gold); }
.char-marley { border-left: 3px solid var(--midnight-gold); }

.char-elijah .char-name { color: var(--static-purple); }
.char-elijah { border-left: 3px solid var(--static-purple); }

.char-nova .char-name { color: var(--glitch-cyan); }
.char-nova { border-left: 3px solid var(--glitch-cyan); }

.char-sable .char-name { color: var(--chrome-silver); }
.char-sable { border-left: 3px solid var(--chrome-silver); }

.char-zion .char-name { color: var(--sage-green); }
.char-zion { border-left: 3px solid var(--sage-green); }


/* ==========================================================================
   Chapter Navigation Hub
   ========================================================================== */

.chapter-hub {
    padding: 5rem 2rem;
    background: var(--deep-black);
}

.chapter-hub h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
}

.chapter-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.chapter-nav-card {
    display: block;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    text-decoration: none;
    color: var(--off-white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.chapter-nav-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.chapter-nav-card .chapter-num {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 0.75rem;
}

.chapter-nav-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.chapter-nav-card .chapter-theme {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.6;
    margin-bottom: 1rem;
}

.chapter-nav-card .chapter-preview {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(245, 245, 245, 0.55);
}

/* Per-chapter accent colors on hover */
.chapter-nav-card.ch-1:hover { border-color: var(--midnight-gold); }
.chapter-nav-card.ch-1 h3 { color: var(--midnight-gold); }

.chapter-nav-card.ch-2:hover { border-color: var(--static-purple); }
.chapter-nav-card.ch-2 h3 { color: var(--static-purple); }

.chapter-nav-card.ch-3:hover { border-color: var(--glitch-cyan); }
.chapter-nav-card.ch-3 h3 { color: var(--glitch-cyan); }

.chapter-nav-card.ch-4:hover { border-color: var(--chrome-silver); }
.chapter-nav-card.ch-4 h3 { color: var(--chrome-silver); }

.chapter-nav-card.ch-5:hover { border-color: var(--travel-amber); }
.chapter-nav-card.ch-5 h3 { color: var(--travel-amber); }


/* ==========================================================================
   Chapter Page - Hero / Header
   ========================================================================== */

.chapter-hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

/* Background image with overlay */
.chapter-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.chapter-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(10, 10, 10, 0.3) 0%, 
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 1) 100%);
}

.chapter-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.chapter-hero-content .chapter-label {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.chapter-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.chapter-hero-content .chapter-theme-line {
    font-size: 1.3rem;
    font-style: italic;
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.chapter-hero-content .chapter-meta {
    font-size: 0.9rem;
    opacity: 0.4;
}

/* Per-chapter hero colors */
.chapter-hero.ch-1 h1 { color: var(--midnight-gold); }
.chapter-hero.ch-2 h1 { color: var(--static-purple); }
.chapter-hero.ch-3 h1 { color: var(--glitch-cyan); }
.chapter-hero.ch-4 h1 { color: var(--chrome-silver); }
.chapter-hero.ch-5 h1 { color: var(--travel-amber); }


/* ==========================================================================
   Narrative Prose - The story sections between tracks
   ========================================================================== */

.narrative-section {
    padding: 4rem 2rem;
    background: var(--deep-black);
}

.narrative-container {
    max-width: 720px;
    margin: 0 auto;
}

.narrative-container p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(245, 245, 245, 0.8);
    margin-bottom: 1.5rem;
}

.narrative-container p:last-child {
    margin-bottom: 0;
}

/* Emphasized dramatic lines */
.narrative-container p em {
    color: rgba(245, 245, 245, 0.95);
    font-style: italic;
}

.narrative-container p strong {
    color: var(--off-white);
    font-weight: 600;
}

/* Scene break / divider between story beats */
.scene-break {
    text-align: center;
    padding: 2rem 0;
    color: rgba(245, 245, 245, 0.15);
    font-size: 1.2rem;
    letter-spacing: 0.5em;
}

/* Dramatic pull-quote for key moments */
.pull-quote {
    max-width: 720px;
    margin: 3rem auto;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.pull-quote p {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    line-height: 1.6;
    font-style: italic;
    color: rgba(245, 245, 245, 0.9);
}

.pull-quote::before,
.pull-quote::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    margin: 0 auto;
}

.pull-quote::before {
    margin-bottom: 2rem;
    background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.pull-quote::after {
    margin-top: 2rem;
    background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.3), transparent);
}

/* Chapter-specific pull-quote accent colors */
.ch-2 .pull-quote::before,
.ch-2 .pull-quote::after {
    background: linear-gradient(to right, transparent, rgba(157, 78, 221, 0.3), transparent);
}

.ch-3 .pull-quote::before,
.ch-3 .pull-quote::after {
    background: linear-gradient(to right, transparent, rgba(0, 245, 255, 0.3), transparent);
}

.ch-4 .pull-quote::before,
.ch-4 .pull-quote::after {
    background: linear-gradient(to right, transparent, rgba(192, 192, 192, 0.3), transparent);
}

.ch-5 .pull-quote::before,
.ch-5 .pull-quote::after {
    background: linear-gradient(to right, transparent, rgba(255, 191, 0, 0.3), transparent);
}


/* ==========================================================================
   Scene Image - Full-width or contained story images
   ========================================================================== */

.scene-image {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.scene-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.scene-image .scene-caption {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(245, 245, 245, 0.35);
    font-style: italic;
    margin-top: 1rem;
}


/* ==========================================================================
   Track Narrative Card - Song + story beat + streaming links
   ========================================================================== */

.track-card {
    max-width: 720px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    border-left: 3px solid var(--midnight-gold);
}

.track-card .track-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.track-card .track-number {
    font-size: 0.8rem;
    color: rgba(245, 245, 245, 0.3);
    font-weight: 700;
    min-width: 1.5rem;
}

.track-card .track-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--off-white);
}

.track-card .track-type {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
}

.track-card .track-narrative {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(245, 245, 245, 0.7);
    margin-bottom: 1.5rem;
    padding-left: 2.5rem;
}

.track-card .track-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-left: 2.5rem;
}

.track-card .track-links a {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.track-card .track-links .spotify-link {
    background: rgba(29, 185, 84, 0.2);
    border: 1px solid rgba(29, 185, 84, 0.3);
}

.track-card .track-links .spotify-link:hover {
    background: #1DB954;
}

.track-card .track-links .apple-link {
    background: rgba(250, 36, 60, 0.2);
    border: 1px solid rgba(250, 36, 60, 0.3);
}

.track-card .track-links .apple-link:hover {
    background: #FA243C;
}

/* Per-chapter track card accent colors */
.ch-1 .track-card { border-left-color: var(--midnight-gold); }
.ch-2 .track-card { border-left-color: var(--static-purple); }
.ch-3 .track-card { border-left-color: var(--glitch-cyan); }
.ch-4 .track-card { border-left-color: var(--chrome-silver); }
.ch-5 .track-card { border-left-color: var(--travel-amber); }

/* Interlude cards get a slightly different treatment */
.track-card.interlude {
    background: rgba(255, 255, 255, 0.015);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-left: 3px solid rgba(255, 255, 255, 0.15);
}

.track-card.interlude .track-title {
    font-size: 1.1rem;
    opacity: 0.8;
}


/* ==========================================================================
   Chapter Footer Navigation (prev/next chapter)
   ========================================================================== */

.chapter-nav-footer {
    padding: 4rem 2rem;
    background: var(--deep-black);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.chapter-nav-links {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.chapter-nav-link {
    text-decoration: none;
    color: var(--off-white);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 400px;
}

.chapter-nav-link:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.chapter-nav-link .nav-direction {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 0.5rem;
}

.chapter-nav-link h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.chapter-nav-link .nav-theme {
    font-size: 0.85rem;
    opacity: 0.5;
    font-style: italic;
}

.chapter-nav-link.next {
    text-align: right;
    margin-left: auto;
}

/* Back to saga hub link */
.back-to-saga {
    display: block;
    text-align: center;
    margin-top: 2rem;
    color: rgba(245, 245, 245, 0.4);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.back-to-saga:hover {
    color: var(--midnight-gold);
}


/* ==========================================================================
   Content Warning Banner
   ========================================================================== */

.content-warning {
    max-width: 720px;
    margin: 0 auto 3rem;
    padding: 1.5rem 2rem;
    background: rgba(139, 0, 0, 0.08);
    border: 1px solid rgba(139, 0, 0, 0.2);
    border-radius: 8px;
    text-align: center;
}

.content-warning .cw-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.5);
    margin-bottom: 0.5rem;
}

.content-warning p {
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.6);
    line-height: 1.6;
}


/* ==========================================================================
   Streaming Section (album-level links)
   ========================================================================== */

.album-stream-section {
    max-width: 720px;
    margin: 3rem auto;
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.album-stream-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.album-stream-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.album-stream-links a {
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.album-stream-links .spotify-album {
    background: #1DB954;
}

.album-stream-links .spotify-album:hover {
    background: #1ed760;
    transform: translateY(-2px);
}

.album-stream-links .apple-album {
    background: #FA243C;
}

.album-stream-links .apple-album:hover {
    background: #ff3b5c;
    transform: translateY(-2px);
}


/* ==========================================================================
   Footer (same as albums.css)
   ========================================================================== */

footer {
    padding: 4rem 2rem 2rem;
    text-align: center;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav {
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: rgba(245, 245, 245, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--midnight-gold);
}

.footer-links i {
    font-size: 1.1rem;
}

footer p {
    color: rgba(245, 245, 245, 0.5);
    font-size: 0.9rem;
}

footer a {
    color: var(--midnight-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    text-decoration: underline;
    color: var(--static-purple);
}

.contact-link {
    cursor: pointer;
}


/* ==========================================================================
   Easter Egg Callouts (for Album 5 references)
   ========================================================================== */

.easter-egg {
    max-width: 720px;
    margin: 2rem auto;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 215, 0, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 6px;
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.6);
    line-height: 1.6;
}

.easter-egg .egg-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--midnight-gold);
    opacity: 0.6;
    margin-bottom: 0.5rem;
}


/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    /* Mobile Navigation */
    .navbar {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-link {
        padding: 0.75rem 0;
        width: 100%;
        text-align: left;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 0.75rem 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border: none;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.03);
        margin-top: 0.5rem;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Mobile Hero */
    .saga-hero-full {
        padding: 6rem 1.5rem 3rem;
        min-height: 90vh;
    }
    
    .saga-hero-content h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    
    /* Mobile Characters */
    .characters-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Chapters */
    .chapter-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Chapter Hero */
    .chapter-hero {
        min-height: 50vh;
        padding: 6rem 1.5rem 3rem;
    }
    
    /* Mobile Narrative */
    .narrative-container p {
        font-size: 1rem;
    }
    
    .pull-quote p {
        font-size: 1.2rem;
    }
    
    /* Mobile Track Cards */
    .track-card {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }
    
    .track-card .track-narrative,
    .track-card .track-links,
    .track-card .track-type {
        padding-left: 0;
    }
    
    .track-card .track-header {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    /* Mobile Chapter Nav Footer */
    .chapter-nav-links {
        flex-direction: column;
    }
    
    .chapter-nav-link {
        max-width: 100%;
    }
    
    .chapter-nav-link.next {
        text-align: left;
    }
    
    /* Mobile Footer */
    .footer-links {
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
}