/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Space Mono', 'JetBrains Mono', monospace;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    background-attachment: fixed;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8"><circle cx="4" cy="4" r="1.5" fill="white"/></svg>') 4 4, auto;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

@media (hover: none) and (pointer: coarse) {
    body {
        cursor: auto;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Solarpunk Color Palette */
:root {
    --solarpunk-green: #00ff88;     /* Bright green */
    --solarpunk-green-dark: #00cc6a; /* Darker green */
    --solarpunk-mint: #88ffcc;      /* Mint green */
    --solarpunk-cyan: #00ffcc;      /* Cyan accent */
    --solarpunk-blue: #0088ff;      /* Electric blue */
    --space-purple: #6b46c1;       /* Deep space purple */
    --cosmic-violet: #8b5cf6;      /* Cosmic accent */
    --text-primary: #ffffff;        /* White */
    --text-secondary: #e0e0e0;      /* Light gray */
    --text-light: #a0a0a0;          /* Medium gray */
    --text-muted: #707070;          /* Dark gray */
    --background: #0a0a0a;          /* Pure black */
    --background-light: #1a1a1a;    /* Dark gray */
    --background-card: #141414;     /* Card background */
    --border: #333333;              /* Dark border */
    --border-light: #282828;       /* Lighter border */
}

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    padding: 1rem 0;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Space Mono', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--solarpunk-green);
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--solarpunk-green);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
}

/* Hero Section */
.hero {
    padding: 6rem 0 8rem;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(0, 136, 255, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 40% 80%, rgba(107, 70, 193, 0.04) 0%, transparent 35%),
        linear-gradient(135deg, transparent 0%, rgba(0, 255, 204, 0.02) 100%);
    pointer-events: none;
    animation: cosmic-drift 20s ease-in-out infinite;
}

@keyframes cosmic-drift {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translateY(-10px) scale(1.02);
        opacity: 0.8;
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Space Mono', monospace;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

.hero-subtitle {
    font-size: 1.75rem;
    color: var(--solarpunk-green);
    margin-bottom: 3rem;
    font-weight: 500;
    font-style: italic;
}

.highlight-three {
    color: #ffeb3b;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.3);
}

.hero-description {
    margin-bottom: 2.5rem;
}

.hero-description p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-light);
}

.meta-separator {
    color: var(--solarpunk-green);
}

.meta-item {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 6rem;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .meta-separator {
        display: none;
    }
}

/* Section Titles */
.section-title {
    font-family: 'Space Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: lowercase;
}

.section-description {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

.subsection-title {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

/* Episodes Section */
.episodes {
    padding: 6rem 0 8rem;
    background: var(--background);
}

.episodes-grid {
    display: grid;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.episode-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 6rem;
    padding: 3rem;
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid var(--border-light);
    border-radius: 24px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.episode-card:hover {
    transform: translateY(-5px);
    border-color: var(--solarpunk-green);
    box-shadow: 0 12px 48px rgba(0, 255, 136, 0.2);
}

/* Episode Header with Badge */
.episode-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.episode-badge {
    width: 4rem;
    height: 4rem;
    background: var(--solarpunk-green);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 255, 136, 0.3);
}

.episode-video {
    position: relative;
}

.video-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 70%; /* Taller for mobile */
    background: var(--background-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 255, 136, 0.25);
    border: 3px solid var(--border);
    min-height: 400px;
}

@media (min-width: 768px) {
    .video-embed {
        min-height: 600px;
        padding-bottom: 50%; /* Much wider aspect ratio */
    }
}

@media (min-width: 1024px) {
    .video-embed {
        min-height: 700px;
        padding-bottom: 45%; /* Very wide for desktop prominence */
    }
}

@media (min-width: 1440px) {
    .video-embed {
        min-height: 800px;
        padding-bottom: 40%; /* Ultra-wide for large screens */
    }
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.episode-content {
    padding: 1rem 0;
}


.episode-title {
    font-family: 'Space Mono', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

@media (min-width: 768px) {
    .episode-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .episode-title {
        font-size: 4rem;
    }
}

.episode-subtitle {
    font-family: 'Space Mono', monospace;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--solarpunk-green);
    margin-bottom: 1rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-transform: lowercase;
}

@media (min-width: 768px) {
    .episode-subtitle {
        font-size: 1.5rem;
    }
}

.episode-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    letter-spacing: 0.01em;
    font-weight: 600;
}

@media (min-width: 768px) {
    .episode-description {
        font-size: 1.3rem;
    }
}

.episode-story {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    border-left: 3px solid var(--solarpunk-green);
}

.episode-story p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 400;
}

.episode-story p:last-child {
    margin-bottom: 0;
}

.episode-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.4rem 0.8rem;
    background: var(--background-card);
    border: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.85rem;
    border-radius: 20px;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 6rem 0 8rem;
    background: var(--background-light);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 4rem;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.creation-story {
    padding: 2rem;
    background: var(--background-card);
    border-radius: 12px;
    border-left: 4px solid var(--solarpunk-green);
    border: 1px solid var(--border);
}

.creator-credit {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: right;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.creator-credit a {
    color: var(--solarpunk-green);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.creator-credit a:hover {
    color: var(--solarpunk-cyan);
    text-decoration: underline;
}

/* Section Header with Scroll */
.section-header-with-scroll {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 2rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 100;
    animation: gentle-pulse 3s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: lowercase;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.scroll-mouse {
    width: 1.25rem;
    height: 2rem;
    border: 1.5px solid var(--solarpunk-green);
    border-radius: 0.75rem;
    display: flex;
    justify-content: center;
    padding-top: 0.4rem;
    opacity: 0.8;
}

.scroll-dot {
    width: 0.25rem;
    height: 0.75rem;
    background: var(--solarpunk-green);
    border-radius: 0.125rem;
    animation: scroll-bounce 2s infinite;
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    gap: -0.25rem;
    opacity: 0.6;
}

.scroll-arrow {
    color: var(--solarpunk-green);
    font-size: 1rem;
    animation: scroll-fade 2s ease-in-out infinite;
}

.scroll-arrow:nth-child(2) {
    animation-delay: 0.3s;
}

.scroll-arrow:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes gentle-pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes scroll-bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(8px); }
}

@keyframes scroll-fade {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.creation-meta {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .creation-meta {
        grid-template-columns: repeat(3, 1fr);
    }
}

.meta-group {
    text-align: center;
}

.meta-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.meta-value {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

/* Footer */
.footer {
    padding: 3rem 0 2rem;
    background: var(--background);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    
    .footer-meta {
        text-align: right;
    }
}

.footer-brand h4 {
    font-family: 'Crimson Text', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--solarpunk-green);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-light);
    font-style: italic;
}

.footer-meta p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-note {
    color: var(--solarpunk-sage);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 767px) {
    .episodes-grid {
        gap: 3rem;
    }
    
    .episode-card {
        gap: 1.5rem;
    }
    
    .episode-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .subsection-title {
        font-size: 1.5rem;
    }
    
    .about {
        padding: 4rem 0 6rem;
    }
    
    .episodes {
        padding: 4rem 0 6rem;
    }
    
    .creation-story {
        padding: 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    * {
        transition: none !important;
        animation: none !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--solarpunk-green);
    outline-offset: 2px;
}

/* Selection styling */
::selection {
    background: var(--solarpunk-green);
    color: black;
}

/* Comic Strip Styling */
.comic-strip {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .comic-strip {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

.comic-panel {
    position: relative;
    background: var(--background-card);
    border-radius: 8px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.comic-panel img {
    width: 100%;
    height: auto;
    display: block;
}

.speech-bubble {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--solarpunk-green);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--solarpunk-green);
}

.speech-bubble::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(0, 0, 0, 0.8);
}

/* Solarpunk Background Elements */
.solarpunk-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.03;
}

.solarpunk-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, var(--solarpunk-green) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, var(--solarpunk-blue) 0%, transparent 25%),
        radial-gradient(circle at 40% 60%, var(--space-purple) 0%, transparent 15%),
        radial-gradient(circle at 70% 30%, var(--solarpunk-cyan) 0%, transparent 18%);
    animation: cosmic-float 25s ease-in-out infinite;
}

@keyframes cosmic-float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.03;
    }
    25% {
        transform: translateY(-15px) rotate(90deg) scale(1.1);
        opacity: 0.05;
    }
    50% { 
        transform: translateY(-5px) rotate(180deg) scale(0.9);
        opacity: 0.02;
    }
    75% {
        transform: translateY(-20px) rotate(270deg) scale(1.05);
        opacity: 0.04;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Audio Log Styling */
.audio-log {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--background-card);
    border: 2px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 255, 204, 0.1);
}

.audio-log h4 {
    font-family: 'Space Mono', monospace;
    color: var(--solarpunk-cyan);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

.audio-log iframe {
    border-radius: 12px;
    background: var(--background-light);
    height: 400px;
}

@media (min-width: 768px) {
    .audio-log iframe {
        height: 450px;
    }
}

.soundcloud-credit {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-family: Interstate, 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Garuda, Verdana, Tahoma, sans-serif;
    font-weight: 100;
}

.soundcloud-credit a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.soundcloud-credit a:hover {
    color: var(--solarpunk-green);
}

/* PDF Viewer Styling */
.episode-pdf {
    position: relative;
}

.pdf-viewer {
    background: var(--background-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.pdf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--background-light);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
}

.pdf-header h4 {
    font-family: 'Space Mono', monospace;
    color: var(--solarpunk-green);
    font-size: 1rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

.pdf-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pdf-btn {
    background: var(--background-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.pdf-btn:hover {
    background: var(--solarpunk-green);
    color: black;
    border-color: var(--solarpunk-green);
}

.pdf-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pdf-btn:disabled:hover {
    background: var(--background-card);
    color: var(--text-secondary);
    border-color: var(--border);
}

#page-info {
    font-size: 0.9rem;
    color: var(--text-light);
    min-width: 40px;
    text-align: center;
}

.pdf-container {
    position: relative;
}

.pdf-canvas {
    display: block;
    width: 100%;
    height: auto;
    background: black;
    max-height: 500px;
    object-fit: contain;
    border-radius: 12px;
}

@media (min-width: 768px) {
    .pdf-canvas {
        max-height: 600px;
    }
}

@media (min-width: 1024px) {
    .pdf-canvas {
        max-height: 650px;
    }
}


.pdf-fallback {
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
}

.download-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--solarpunk-green);
    color: black;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.download-btn:hover {
    background: var(--solarpunk-green-dark);
    transform: translateY(-1px);
}

/* Custom cursor for interactive elements */
button, a, .pdf-btn {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 10 10"><circle cx="5" cy="5" r="2" fill="white"/></svg>') 5 5, pointer;
}

@media (hover: none) and (pointer: coarse) {
    button, a, .pdf-btn {
        cursor: auto;
    }
}

/* Enhanced Mobile Styling */
@media (max-width: 768px) {
    body {
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 4rem 0 5rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .episodes {
        padding: 4rem 0 5rem;
    }
    
    .episode-card {
        margin-bottom: 4rem;
        padding: 1.5rem;
        gap: 2rem;
    }
    
    .episode-card:nth-child(odd),
    .episode-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .episode-card:nth-child(even) .episode-video,
    .episode-card:nth-child(even) .episode-pdf,
    .episode-card:nth-child(even) .episode-content {
        order: unset;
    }
    
    .episode-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .episode-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .video-embed {
        min-height: 300px;
        padding-bottom: 65%;
    }
    
    .pdf-canvas {
        min-height: 350px;
    }
    
    .about {
        padding: 4rem 0 5rem;
    }
    
    .creation-story {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .pdf-header {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
        padding: 1rem;
    }
    
    .pdf-controls {
        align-self: center;
    }
    
    .pdf-canvas {
        max-height: 350px;
        object-fit: contain;
    }
    
    .audio-log {
        margin-top: 1rem;
        padding: 1rem;
    }
    
    .episode-story {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .episode-story p {
        font-size: 0.9rem;
    }
    
    .section-header-with-scroll {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .scroll-indicator {
        position: relative;
        right: unset;
        top: unset;
        gap: 0.4rem;
    }
    
    .scroll-text {
        font-size: 0.7rem;
    }
    
    .scroll-mouse {
        width: 1rem;
        height: 1.5rem;
        border-width: 1px;
    }
    
    .scroll-arrow {
        font-size: 0.8rem;
    }
}