/* ===================================
   RESET & BASE STYLES
   =================================== */

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

:root {
    /* Colors - Based on Castopod's aesthetic */
    --primary-color: #007bff;
    --primary-dark: #0056b3;
    --secondary-color: #6c757d;
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --light-bg: #f8f9fa;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-light: #ffffff;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --accent-color: #ff6b6b;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #ffffff;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

/* ===================================
   LAYOUT UTILITIES
   =================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: var(--spacing-md);
}

/* ===================================
   BUTTONS
   =================================== */

.btn-primary,
.btn-secondary,
.btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--text-light);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: var(--text-primary);
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--primary-color) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, var(--accent-color) 2px, transparent 2px);
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
}

.hero-producer {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: -0.5rem;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.01em;
}

.hero-producer a {
    color: var(--primary-color);
    font-weight: 600;
}

.hero-producer a:hover {
    color: var(--primary-dark);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-section {
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.about-text h3 {
    color: var(--primary-color);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.highlight-card {
    background: var(--light-bg);
    padding: var(--spacing-md);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all var(--transition-normal);
}

.highlight-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
}

.highlight-card h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.highlight-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* ===================================
   HOSTS SECTION
   =================================== */

.hosts-section {
    background: var(--light-bg);
}

.hosts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.host-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.host-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.host-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.host-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.host-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.host-card:hover .host-image img {
    transform: scale(1.05);
}

.host-info {
    padding: var(--spacing-md);
}

.host-info h3 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.host-title {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.host-bio {
    color: var(--text-secondary);
    line-height: 1.7;
}

.host-chemistry {
    background: #ffffff;
    padding: var(--spacing-md);
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.host-chemistry h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.host-chemistry p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===================================
   EPISODES SECTION
   =================================== */

.episodes-section {
    background: #ffffff;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.episode-card {
    background: var(--light-bg);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.episode-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.episode-artwork {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: var(--dark-bg);
}

.episode-artwork img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.episode-card:hover .episode-artwork img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

.episode-card:hover .play-button {
    opacity: 1;
}

.play-button svg {
    color: var(--primary-color);
    margin-left: 3px;
}

.episode-info {
    padding: var(--spacing-md);
}

.episode-number {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.episode-info h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.episode-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.episode-meta {
    display: flex;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.episodes-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ===================================
   LISTEN SECTION
   =================================== */

.listen-section {
    background: var(--light-bg);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.platform-featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
}

.platform-featured:hover {
    color: var(--text-light);
}

.platform-icon {
    transition: transform var(--transition-normal);
}

.platform-card:hover .platform-icon {
    transform: scale(1.1);
}

.platform-card span {
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.platform-featured span {
    color: var(--text-light);
}

.listen-info {
    background: #ffffff;
    padding: var(--spacing-md);
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.listen-info h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.listen-info p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.contact-info h2 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.contact-info > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-method {
    background: var(--light-bg);
    padding: var(--spacing-md);
    border-radius: 12px;
}

.contact-method h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.contact-method p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.faq h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.faq-item {
    background: var(--light-bg);
    padding: var(--spacing-md);
    border-radius: 12px;
    margin-bottom: var(--spacing-sm);
    border-left: 4px solid var(--primary-color);
}

.faq-item h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.footer-column h4 {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.25rem;
}

.footer-bottom a {
    color: var(--primary-color);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* --- Tablet (≤ 968px) --- */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .hosts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Mobile (≤ 768px) --- */
@media (max-width: 768px) {

    /* Navigation */
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0 1rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }

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

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.875rem 1.5rem;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li:last-child a {
        margin: 1rem 1.5rem 0;
        border-bottom: none;
        text-align: center;
        border-radius: 8px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle span {
        width: 28px;
        height: 3px;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero */
    .hero {
        padding-top: 70px;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-content {
        padding-top: 2rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-producer {
        font-size: 0.85rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .hero-cta .btn-large {
        justify-content: center;
        width: 100%;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        margin-bottom: 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Hide scroll indicator on mobile — it overlaps the stats and mobile users don't need the hint */
    .scroll-indicator {
        display: none;
    }

    /* About */
    .about-text h3 {
        font-size: 1.25rem;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-card {
        padding: 1rem;
    }

    /* Hosts */
    .hosts-grid {
        grid-template-columns: 1fr;
    }

    .host-image {
        height: 260px;
    }

    .host-bio {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .host-chemistry p {
        font-size: 0.95rem;
    }

    /* Episodes */
    .episodes-grid {
        grid-template-columns: 1fr;
    }

    /* Platforms */
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .platform-card {
        padding: 1.25rem 1rem;
    }

    .platform-icon img {
        width: 56px;
        height: 56px;
    }

    .platform-card span {
        font-size: 0.9rem;
    }

    /* YouTube subscribe */
    .youtube-subscribe {
        padding: 1rem;
        overflow: hidden;
    }

    /* Merch */
    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Contact */
    .contact-method {
        padding: 1.25rem;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-link {
        min-height: 44px;
        padding: 0.625rem 1rem;
        font-size: 0.95rem;
    }

    .faq-item {
        padding: 1.25rem;
    }

    /* Buttons — minimum 48px touch target */
    .btn-primary,
    .btn-secondary {
        min-height: 48px;
        font-size: 1rem;
    }

    .btn-large {
        min-height: 52px;
        font-size: 1.05rem;
        padding: 1rem 1.5rem;
    }

    /* Footer */
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-column a {
        display: inline-block;
        padding: 0.25rem 0;
        font-size: 0.95rem;
    }
}

/* --- Small mobile (≤ 480px) --- */
@media (max-width: 480px) {
    :root {
        --spacing-lg: 2.5rem;
        --spacing-xl: 3.5rem;
        --spacing-md: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: var(--spacing-xl) 0;
    }

    /* Hero */
    .hero-stats {
        gap: 0.75rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    /* About highlights — stack on tiny screens */
    .about-highlights {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    /* Platforms — 2 columns, compact */
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .platform-card {
        padding: 1rem 0.75rem;
        gap: 0.5rem;
    }

    .platform-icon img {
        width: 44px;
        height: 44px;
    }

    /* Merch — 2 columns on small screens */
    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .merch-item-info {
        padding: 0.5rem 0.75rem 0.75rem;
    }

    .merch-item-info h4 {
        font-size: 0.85rem;
    }

    .merch-price {
        font-size: 0.8rem;
    }

    /* Episode cards */
    .episode-info {
        padding: 1rem;
    }

    .episode-info h3 {
        font-size: 1.05rem;
    }

    /* Host cards */
    .host-info {
        padding: 1rem;
    }

    .host-image {
        height: 220px;
    }

    /* Section headers */
    .section-header {
        margin-bottom: var(--spacing-md);
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-top: 1rem;
    }

    /* Footer */
    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    /* Contact */
    .contact-info h2 {
        font-size: 1.75rem;
    }
}

/* ===================================
   PLATFORM LOGO IMAGES
   =================================== */

.platform-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
}

/* ===================================
   YOUTUBE SUBSCRIBE
   =================================== */

.youtube-subscribe {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    overflow: hidden;
}

.youtube-subscribe-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.youtube-subscribe-cta {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* ===================================
   MERCH SECTION
   =================================== */

.merch-section {
    background: var(--dark-bg);
    color: var(--text-light);
}

.merch-section .section-title {
    color: var(--text-light);
}

.merch-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.merch-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.merch-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.merch-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.merch-item-info {
    padding: 0.75rem 1rem 1rem;
}

.merch-item-info h4 {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.merch-price {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.merch-loading {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: var(--spacing-lg);
    font-size: 1rem;
}

.merch-cta {
    text-align: center;
}

/* ===================================
   SOCIAL LINKS
   =================================== */

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-bg);
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    border: 1px solid var(--border-color);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* ===================================
   ANIMATIONS & ACCESSIBILITY
   =================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Selection colors */
::selection {
    background: var(--primary-color);
    color: var(--text-light);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--text-light);
}
