/* Base Styles - Premium Luxury Theme */
:root {
    /* Premium Dark Theme (Default) */
    --color-black: #0a0a0a;
    --color-red: #e50914;
    --color-red-light: #ff4757;
    --color-gold: #ffd700;
    --color-gold-dim: rgba(255, 215, 0, 0.3);
    --color-white: #ffffff;
    --color-cream: #f8f4e3;
    --color-dark-gray: #151515;
    --color-medium-gray: #252525;
    --color-light-gray: #3a3a3a;
    --color-bg-primary: #0a0a0a;
    --color-bg-secondary: #151515;
    --color-bg-card: rgba(255, 255, 255, 0.02);
    --color-text-primary: #ffffff;
    --color-text-secondary: #b0b0b0;
    --color-text-muted: #707070;
    --font-primary: 'Outfit', 'Montserrat', sans-serif;
    --font-heading: 'Bebas Neue', sans-serif;
    --gradient-primary: linear-gradient(135deg, #e50914 0%, #ff4757 50%, #e50914 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffaa00 50%, #ffd700 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    --gradient-luxury: linear-gradient(135deg, rgba(229, 9, 20, 0.1) 0%, rgba(255, 215, 0, 0.05) 50%, rgba(229, 9, 20, 0.1) 100%);
    --animation-duration: 0.4s;
    --animation-easing: cubic-bezier(0.23, 1, 0.32, 1);
    --shadow-glow: 0 0 40px rgba(229, 9, 20, 0.25);
    --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.2);
    --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --glass-blur: blur(24px);
    --border-subtle: 1px solid rgba(255, 255, 255, 0.06);
    --border-glow: 1px solid rgba(229, 9, 20, 0.3);
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Light Theme */
[data-theme="light"] {
    --color-bg-primary: #f5f5f5;
    --color-bg-secondary: #ffffff;
    --color-text-primary: #1a1a1a;
    --color-text-secondary: #666666;
    --color-light-gray: #e0e0e0;
    --gradient-dark: linear-gradient(135deg, #f5f5f5, #ffffff);
    --gradient-glass: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    transition: background-color 0.5s ease, color 0.5s ease;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--color-text-primary);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Text Gradient */
/* Text Gradient */
.text-gradient {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-move 3s ease infinite;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-float i {
    margin-top: 2px;
    /* Visual adjustment for exact centering */
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(231, 29, 54, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 29, 54, 0.5);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-black);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-primary);
    border: 2px solid var(--color-red);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] header {
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 55px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    font-size: 0.9rem;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

/* Theme Toggle */
.theme-toggle {
    background: var(--gradient-glass);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.theme-toggle:hover {
    transform: rotate(180deg);
    border-color: var(--color-red);
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-select {
    background: var(--gradient-glass);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 8px 12px;
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    text-align: center;
}

.lang-select:hover {
    border-color: var(--color-red);
}

.lang-select option {
    background: var(--color-background);
    color: var(--color-text-primary);
}

.theme-toggle .fa-sun {
    display: none;
    color: var(--color-red);
}

.theme-toggle .fa-moon {
    color: var(--color-text-primary);
}

[data-theme="light"] .theme-toggle .fa-sun {
    display: block;
}

[data-theme="light"] .theme-toggle .fa-moon {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text-primary);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Clock Styles */
.clock {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-white);
    background: var(--gradient-primary);
    padding: 8px 16px;
    border-radius: 25px;
    letter-spacing: 2px;
}

/* Hero Section - Premium Luxury */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

/* Background Image with Ken Burns Effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    background-color: var(--color-dark-gray);
    z-index: -2;
    animation: kenBurns 25s ease-in-out infinite alternate;
    transform: translateY(var(--parallax-y, 0));
    will-change: transform;
    filter: saturate(1.1);
}

/* Premium Gradient Overlay with Radial Glow */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(229, 9, 20, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.95) 100%);
    z-index: -1;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translateY(var(--parallax-y, 0));
    }

    100% {
        transform: scale(1.08) translateY(var(--parallax-y, 0));
    }
}

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* 3D Drop Effect */
.reveal-3d {
    opacity: 0;
    transform: perspective(1000px) rotateX(-10deg) translateY(-50px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.reveal-3d.active {
    opacity: 1;
    transform: perspective(1000px) rotateX(0) translateY(0) scale(1);
}

/* Waveform Visualizer */
.waveform-container {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
    opacity: 0.6;
}

.waveform-bar {
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: waveform 1s ease-in-out infinite;
}

.waveform-bar:nth-child(1) {
    animation-delay: 0s;
    height: 20px;
}

.waveform-bar:nth-child(2) {
    animation-delay: 0.1s;
    height: 35px;
}

.waveform-bar:nth-child(3) {
    animation-delay: 0.2s;
    height: 25px;
}

.waveform-bar:nth-child(4) {
    animation-delay: 0.3s;
    height: 45px;
}

.waveform-bar:nth-child(5) {
    animation-delay: 0.4s;
    height: 30px;
}

.waveform-bar:nth-child(6) {
    animation-delay: 0.5s;
    height: 50px;
}

.waveform-bar:nth-child(7) {
    animation-delay: 0.6s;
    height: 40px;
}

.waveform-bar:nth-child(8) {
    animation-delay: 0.7s;
    height: 55px;
}

.waveform-bar:nth-child(9) {
    animation-delay: 0.8s;
    height: 35px;
}

.waveform-bar:nth-child(10) {
    animation-delay: 0.9s;
    height: 45px;
}

.waveform-bar:nth-child(11) {
    animation-delay: 1s;
    height: 25px;
}

.waveform-bar:nth-child(12) {
    animation-delay: 1.1s;
    height: 40px;
}

.waveform-bar:nth-child(13) {
    animation-delay: 1.2s;
    height: 30px;
}

.waveform-bar:nth-child(14) {
    animation-delay: 1.3s;
    height: 50px;
}

.waveform-bar:nth-child(15) {
    animation-delay: 1.4s;
    height: 20px;
}

@keyframes waveform {

    0%,
    100% {
        transform: scaleY(0.5);
    }

    50% {
        transform: scaleY(1);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto;
    padding-top: 60px;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Spotify Section */
.spotify-section {
    padding: 80px 0;
    background: var(--color-bg-secondary);
}

.spotify-embed-container {
    max-width: 800px;
    margin: 40px auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Latest Episode Section */
.latest-episode {
    padding: 80px 0;
    background: var(--gradient-dark);
}

.episode-player {
    margin-top: 30px;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

.stream-status {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    background: var(--color-light-gray);
    color: var(--color-text-primary);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.stream-status.live {
    background: var(--gradient-primary);
    color: white;
    animation: pulse 2s infinite;
}

.stream-schedule {
    margin-top: 30px;
    padding: 25px;
    background: var(--gradient-glass);
    backdrop-filter: var(--glass-blur);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Meet The Team Section - Premium Luxury */
.team-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.05) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 3rem;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.team-card {
    background: var(--color-bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    transition: all 0.5s var(--animation-easing);
    border: var(--border-subtle);
    overflow: hidden;
}

/* Animated gradient border on hover */
.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, var(--color-red) 50%, transparent 60%);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover::before {
    opacity: 1;
    animation: borderSweep 2s linear infinite;
}

@keyframes borderSweep {
    0% {
        background-position: 200% 0%;
    }

    100% {
        background-position: -200% 0%;
    }
}

.team-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-card);
}

.team-card.featured {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(229, 9, 20, 0.2);
}

.team-card.producer-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.team-card.producer-card .avatar-placeholder,
.team-card.producer-card .avatar-glow {
    background: var(--gradient-gold);
}

.team-avatar {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 30px;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.3);
}

.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0;
    filter: blur(25px);
    transition: opacity 0.5s ease;
}

.team-card:hover .avatar-glow {
    opacity: 0.5;
}

.team-info .team-role {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.team-card.producer-card .team-role {
    background: var(--gradient-gold);
    color: #000;
}

.team-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.team-info p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Featured Episodes Section */
.featured-episodes {
    background: var(--color-bg-secondary);
}

.episode-filter {
    margin-bottom: 40px;
    text-align: center;
}

.search-input {
    width: 100%;
    max-width: 400px;
    padding: 15px 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    background: var(--gradient-glass);
    color: var(--color-text-primary);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 20px rgba(231, 29, 54, 0.2);
}

.search-input::placeholder {
    color: var(--color-text-secondary);
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.episode-card {
    background: var(--gradient-glass);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.episode-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.episode-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: rgba(231, 29, 54, 0.3);
}

.episode-thumbnail {
    position: relative;
    overflow: hidden;
}

.episode-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.episode-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(231, 29, 54, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.episode-overlay i {
    font-size: 3rem;
    color: white;
}

.episode-card:hover .episode-overlay {
    opacity: 1;
}

.episode-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.episode-details {
    padding: 25px;
}

.episode-details h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.episode-details p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--color-text-secondary);
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-red);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-play:hover {
    color: var(--color-red-light);
    gap: 12px;
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(231, 29, 54, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-logo {
    width: 180px;
    height: auto;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.about-header h2 {
    display: block;
    text-align: center;
}

.about-header h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-text-secondary);
}

.producer-credit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-glass);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 30px;
    border-radius: 50px;
    margin-top: 20px;
    font-size: 1rem;
}

.producer-credit i {
    color: var(--color-red);
    font-size: 1.2rem;
}

.producer-credit strong {
    color: var(--color-red);
}

/* Topics Section */
.topics-section {
    padding: 100px 0;
    background: var(--color-bg-secondary);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.topic-card {
    background: var(--gradient-glass);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.topic-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.topic-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(231, 29, 54, 0.3);
}

.topic-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.topic-card:hover .topic-icon {
    transform: scale(1.1) rotate(5deg);
}

.topic-card h3 {
    margin-bottom: 15px;
}

.topic-card p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

/* Newsletter Section */
.newsletter {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-red), var(--color-red-light));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.newsletter h2 {
    color: white;
}

.newsletter h2:after {
    background: white;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 25px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 1rem;
    background: white;
    color: #333;
}

.newsletter-form button {
    background: var(--color-black);
    color: white;
    border: none;
}

.newsletter-form button:hover {
    background: #333;
}

/* Footer */
footer {
    background: var(--color-bg-primary);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    border-radius: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-glass);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-5px);
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-nav ul li a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--color-red);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 5px;
}

.producer-footer {
    font-size: 0.85rem;
    color: var(--color-red);
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(231, 29, 54, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(231, 29, 54, 0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   New Advanced Features
   ========================================= */

/* 1. Marquee Section */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: var(--gradient-primary);
    padding: 12px 0;
    position: relative;
    z-index: 10;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.marquee-content .separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 15px;
    font-size: 1rem;
    vertical-align: middle;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 2. Interactive Noise Background */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.05;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    animation: noise 0.5s steps(10) infinite alternate;
}

@keyframes noise {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 10px 10px;
    }
}

/* 3. 3D Episode Carousel */
.episodes-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 40px;
    padding: 60px 20px;
    perspective: 1000px;
}

.episodes-grid::-webkit-scrollbar {
    height: 8px;
}

.episodes-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.episodes-grid::-webkit-scrollbar-thumb {
    background: var(--color-red);
    border-radius: 4px;
}

.episode-card {
    min-width: 320px;
    scroll-snap-align: center;
    transition: transform 0.5s ease-out, opacity 0.5s ease;
    transform-style: preserve-3d;
}

/* 4. Guest Request Section */
.guest-request {
    padding: 100px 0;
    background: var(--gradient-dark);
    text-align: center;
}

.guest-form {
    max-width: 600px;
    margin: 40px auto 0;
    background: var(--gradient-glass);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--glass-blur);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.guest-form .form-group {
    margin-bottom: 20px;
}

.guest-form input,
.guest-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.guest-form input:focus,
.guest-form textarea:focus {
    outline: none;
    border-color: var(--color-red);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(231, 29, 54, 0.2);
}

.guest-form button {
    width: 100%;
    margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

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

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: var(--glass-blur);
        flex-direction: column;
        padding: 30px 0;
        text-align: center;
        z-index: 1000;
    }

    [data-theme="light"] nav ul {
        background: rgba(255, 255, 255, 0.95);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }

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

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero h1 {
        font-size: 2.8rem;
    }

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .clock {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: 50px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav ul {
        justify-content: center;
    }

    .waveform-container {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .team-card {
        padding: 30px 20px;
    }
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-background);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-top: 20px;
    letter-spacing: 5px;
    animation: blink 1.5s infinite;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Merch Section - Cart Style */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.merch-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy effect */
    position: relative;
    overflow: hidden;
}

.merch-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--color-red);
    box-shadow: 0 15px 30px rgba(231, 29, 54, 0.2);
}

.merch-image {
    height: 180px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #fff;
    padding: 10px;
}

.merch-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.merch-card:hover .merch-image img {
    transform: scale(1.1);
}

.merch-card h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #fff;
}

.price-tag {
    display: block;
    font-size: 1.1rem;
    color: var(--color-red);
    font-weight: 800;
    margin-bottom: 15px;
}

.btn-cart {
    width: 100%;
    background: transparent;
    border: 1px solid var(--color-red);
    color: white;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    /* Added for anchor link */
}

.btn-cart:hover {
    background: var(--color-red);
    box-shadow: 0 5px 15px rgba(231, 29, 54, 0.4);
    color: white;
    /* Ensure text stays white */
}

/* Audiomack Button */
.btn-audiomack {
    background: rgba(255, 162, 0, 0.1);
    border: 1px solid #FFA200;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-audiomack:hover {
    background: #FFA200;
    border-color: #FFA200;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 162, 0, 0.3);
    color: #000;
}

/* Testimonials Section - Premium Design */
.testimonials-section {
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.9), rgba(30, 30, 40, 0.95));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(229, 9, 20, 0.05) 0%, transparent 50%);
    animation: testimonialGlow 15s ease-in-out infinite alternate;
}

@keyframes testimonialGlow {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(10%, 5%) rotate(5deg);
    }
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.8rem;
    background: linear-gradient(135deg, #fff 0%, #e50914 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    margin-top: 40px;
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 20px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    display: none;
    overflow: hidden;
}

/* Animated gradient border */
.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #e50914, #ff6b6b, #e50914, #ff6b6b);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderGradient 4s ease infinite;
    opacity: 0.6;
}

@keyframes borderGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Glow effect on hover */
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 0;
}

.testimonial-card:hover::after {
    width: 300%;
    height: 300%;
}

.testimonial-card.active {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.testimonial-card:hover::before {
    opacity: 1;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.star-rating i {
    color: #ffd700;
    font-size: 1rem;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
}

/* Quote Icon */
.quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    color: rgba(229, 9, 20, 0.15);
    z-index: 0;
}

/* Quote Text */
.testimonial-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    font-weight: 300;
}

/* User Info */
.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e50914, #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    flex-shrink: 0;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
}

.user-location {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-location i {
    font-size: 0.75rem;
}

/* Carousel Navigation Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.testimonial-dot.active {
    background: #e50914;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.5);
}

.testimonial-dot:hover {
    background: rgba(229, 9, 20, 0.6);
}

/* ============================================
   RESPONSIVE DESIGN - Premium Breakpoints
   ============================================ */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero h1 {
        font-size: 6rem;
    }
}

/* Desktop (992px - 1399px) */
@media (max-width: 1399px) {
    .hero h1 {
        font-size: 4.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 3.5rem;
    }

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

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

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

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

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

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

    section {
        padding: 80px 0;
    }

    h2 {
        font-size: 2.5rem;
    }
}

/* Tablet Portrait (576px - 767px) */
@media (max-width: 767px) {
    .hero {
        min-height: 90vh;
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 30px;
    }

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

    .team-grid,
    .episodes-grid,
    .merch-grid,
    .topics-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .team-section,
    .testimonials-section {
        padding: 80px 0;
    }

    .team-section h2,
    .testimonials-section h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .team-card {
        padding: 30px 25px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .merch-card {
        padding: 20px;
    }

    nav ul {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav ul.active {
        transform: translateY(0);
    }

    nav ul li {
        margin: 0;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    .hamburger {
        display: flex;
    }

    .waveform-container {
        bottom: 60px;
        height: 40px;
    }

    .waveform-bar {
        width: 3px;
    }

    .scroll-indicator {
        bottom: 20px;
        font-size: 0.7rem;
    }

    footer .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-logo {
        width: 140px;
    }

    .about-content p {
        font-size: 1rem;
    }

    .producer-credit {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Mobile (up to 575px) */
@media (max-width: 575px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .team-card,
    .episode-card,
    .merch-card,
    .topic-card {
        border-radius: 16px;
    }

    .team-avatar {
        width: 90px;
        height: 90px;
    }

    .avatar-placeholder {
        font-size: 2rem;
    }

    .team-info h3 {
        font-size: 1.6rem;
    }

    .episode-thumbnail img {
        height: 180px;
    }

    .episode-details {
        padding: 20px;
    }

    .episode-details h3 {
        font-size: 1.2rem;
    }

    .merch-image img {
        height: 200px;
    }

    .testimonial-card p {
        font-size: 1rem;
    }

    .user-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .user-name {
        font-size: 1rem;
    }

    .quote-icon {
        font-size: 2rem;
        top: 15px;
        right: 15px;
    }

    .star-rating i {
        font-size: 0.85rem;
    }

    .guest-form input,
    .guest-form textarea {
        font-size: 0.95rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
        margin-bottom: 15px;
    }

    .newsletter-form button {
        width: 100%;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .clock {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .header-controls {
        gap: 10px;
    }

    .lang-select {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .theme-toggle {
        width: 38px;
        height: 38px;
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.9rem;
    }

    .cta-buttons {
        padding: 0 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .team-avatar {
        width: 80px;
        height: 80px;
    }

    .testimonial-card {
        padding: 20px;
    }
}