:root {
    --primary-color: #e11d48;
    --primary-hover: #be123c;
    --primary-light: #f43f5e;
    --primary-dark: #881337;
    --primary-text-soft: #fda4af;
    --text-white: rgb(255, 255, 255);
    --text-gray: rgba(255, 255, 255, 0.7);
    --bg-black: rgb(0 0 0 / var(--tw-bg-opacity, 1));
    --border-gray: #e5e7eb;
    /* Base + cards (neutral); each content section uses its own hue below */
    --bg-page: #1a1d28;
    --bg-elevated: #2a2f3a;
    /* Section-specific gradient stops — original black/dark */
    --bg-work-a: #0a0a0a;
    --bg-work-b: #1a1a1a;
    --bg-studio-a: #000000;
    --bg-studio-b: #1a1a1a;
    --bg-advertise-a: rgba(0, 0, 0, 0.7);
    --bg-advertise-b: rgba(0, 0, 0, 0.7);
    --bg-cover-a: #1a1a1a;
    --bg-cover-b: #0a0a0a;
    --bg-about-a: #0a0a0a;
    --bg-about-b: #1a1a1a;
    --bg-shows-a: #0a0a0a;
    --bg-shows-b: #0a0a0a;
    --bg-podcasts-a: #1a1a1a;
    --bg-podcasts-b: #0a0a0a;
    --bg-contact-a: #0a0a0a;
    --bg-contact-b: #1a1a1a;
    --bg-footer-a: #000000;
    --bg-footer-b: #000000;
    --bg-hero-fallback-a: #18131f;
    --bg-hero-fallback-b: #251a33;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-page);
    color: rgb(229, 231, 235);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 29, 40, 0.93);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.4rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(225, 29, 72, 0.8);
    box-shadow: 0 0 14px rgba(225, 29, 72, 0.5);
    transition: all 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(225, 29, 72, 0.8);
    border-color: rgba(225, 29, 72, 1);
}

.nav-logo h2 {
    color: rgb(225, 29, 72);
    font-weight: 800;
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgb(225, 29, 72); }
    to { text-shadow: 0 0 20px rgb(225, 29, 72), 0 0 30px rgb(225, 29, 72); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: rgb(225, 29, 72);
    transform: translateY(-2px);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgb(225, 29, 72);
    animation: slideInLeft 0.3s ease;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(32, 38, 52, 0.97);
    backdrop-filter: blur(10px);
    min-width: 200px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    color: #ffffff;
    padding: 0.8rem 1rem;
    text-decoration: none;
    display: block;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: rgb(225, 29, 72);
    color: var(--text-white);
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 85vh;
    min-height: 550px;
    max-height: 800px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px; /* offset for fixed navbar */
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--bg-hero-fallback-a) 0%, var(--bg-hero-fallback-b) 100%);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    transform: scale(1);
    animation: zoomInOut 12s ease-in-out infinite;
    filter: brightness(1.1) contrast(1.05);
}

.slide.active {
    opacity: 1;
    animation: zoomInOut 12s ease-in-out infinite, imagePulse 8s ease-in-out infinite;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1) translate(0, 0) rotate(0deg);
    }
    25% {
        transform: scale(1.05) translate(-15px, -8px) rotate(0.5deg);
    }
    50% {
        transform: scale(1.1) translate(0, 0) rotate(0deg);
    }
    75% {
        transform: scale(1.05) translate(15px, -8px) rotate(-0.5deg);
    }
    100% {
        transform: scale(1) translate(0, 0) rotate(0deg);
    }
}

@keyframes imagePulse {
    0%, 100% {
        filter: brightness(1.1) contrast(1.05) saturate(1);
    }
    50% {
        filter: brightness(1.2) contrast(1.1) saturate(1.2);
    }
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    background: transparent;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(225, 29, 72, 0.3);
    animation: fadeInUp 1s ease 0.2s backwards, subtitleGlow 3s ease-in-out infinite;
    filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.9));
    font-weight: 600;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #ffffff, #f8f8f8, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 0 0 20px rgba(225, 29, 72, 0.5);
        transform: scale(1);
    }
    50% {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 0 0 30px rgba(225, 29, 72, 0.8);
        transform: scale(1.02);
    }
}

@keyframes subtitleGlow {
    0%, 100% {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(225, 29, 72, 0.3);
        transform: scale(1);
    }
    50% {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 25px rgba(225, 29, 72, 0.5);
        transform: scale(1.01);
    }
}

.listen-btn {
    background: rgb(225, 29, 72);
    color: var(--text-white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s backwards;
    position: relative;
    overflow: hidden;
}

.listen-btn:hover {
    background: rgb(190, 18, 60);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(225, 29, 72, 0.4);
}

.listen-btn:active {
    background: rgb(244, 63, 94);
    transform: translateY(-1px) scale(1.02);
}

.listen-btn:disabled {
    background: rgb(136, 19, 55);
    cursor: wait;
    transform: none;
    box-shadow: none;
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.5);
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.slider-controls button:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.slider-controls button:active {
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    transform: scale(1.05);
}

.slider-controls button:disabled {
    background: rgba(136, 19, 55, 0.5);
    color: rgba(255, 255, 255, 0.3);
    cursor: wait;
    transform: scale(1);
}

/* Content Sections */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
}

.content-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: rgb(225, 29, 72);
    font-weight: 800;
    background: linear-gradient(45deg, rgb(244, 63, 94), rgb(236, 72, 153));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 0.8s ease;
}

/* Enhanced Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideRight {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

@keyframes glow {
    from { 
        text-shadow: 0 0 10px rgb(225, 29, 72), 0 0 20px rgb(225, 29, 72);
    }
    to { 
        text-shadow: 0 0 20px rgb(225, 29, 72), 0 0 30px rgb(225, 29, 72), 0 0 40px rgb(225, 29, 72);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(225, 29, 72, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

/* Enhanced section transitions */
section {
    opacity: 0;
    transition: opacity 0.8s ease;
}

section.visible {
    opacity: 1;
}

/* Section Spacing to Prevent Overlap */
section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

/* Ensure proper section separation */
#home {
    padding: 0;
    margin-top: 0; /* hero handles its own offset */
}

#about {
    padding: 100px 0;
}

#work-with-us {
    padding: 100px 0;
}

#studio-creatives {
    padding: 100px 0;
}

#advertise {
    padding: 100px 0;
}

#cover-story {
    padding: 100px 0;
}

#shows {
    padding: 100px 0;
}

#podcasts {
    padding: 100px 0;
}

#contact {
    padding: 100px 0 150px 0; /* Extra bottom padding for fixed player */
}

.footer {
    padding: 60px 0 100px 0; /* Extra bottom padding for fixed player */
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced Navigation with Active States */
.nav-link {
    color: rgb(229, 231, 235);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: rgb(225, 29, 72);
    background: rgba(225, 29, 72, 0.1);
    transform: translateY(-2px);
}

/* Active navigation indicator */
.nav-link.active {
    color: rgb(225, 29, 72);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgb(225, 29, 72);
    animation: slideInLeft 0.3s ease;
}

/* Enhanced hover effects */
.content-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.content-image img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(225, 29, 72, 0.3);
}

/* Enhanced card animations */
.show-card, .podcast-card {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s ease;
}

.show-card.visible, .podcast-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered animations for cards */
.show-card:nth-child(1) { transition-delay: 0.1s; }
.show-card:nth-child(2) { transition-delay: 0.2s; }
.show-card:nth-child(3) { transition-delay: 0.3s; }
.show-card:nth-child(4) { transition-delay: 0.4s; }
.show-card:nth-child(5) { transition-delay: 0.5s; }

.podcast-card:nth-child(1) { transition-delay: 0.1s; }
.podcast-card:nth-child(2) { transition-delay: 0.2s; }
.podcast-card:nth-child(3) { transition-delay: 0.3s; }
.podcast-card:nth-child(4) { transition-delay: 0.4s; }

/* Enhanced button hover effects */
.cta-button, .listen-btn, .submit-btn {
    position: relative;
    overflow: hidden;
}

.cta-button::after, .listen-btn::after, .submit-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::after, .listen-btn:hover::after, .submit-btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Enhanced form interactions */
.form-group input, .form-group textarea {
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(225, 29, 72, 0.2);
}

/* Loading animation for page */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(225, 29, 72, 0.3);
    border-top: 3px solid rgb(225, 29, 72);
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

.content-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgb(229, 231, 235);
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.content-image img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(225, 29, 72, 0.3);
}

.cta-button {
    background: rgb(225, 29, 72);
    color: var(--text-white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: rgb(190, 18, 60);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(225, 29, 72, 0.4);
}

.cta-button:active {
    background: rgb(244, 63, 94);
    transform: translateY(-1px) scale(1.02);
}

.cta-button:disabled {
    background: rgb(136, 19, 55);
    cursor: wait;
    transform: none;
    box-shadow: none;
}

/* Work With Us Section */
.work-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-work-a) 0%, var(--bg-work-b) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.work-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgb(225, 29, 72), transparent);
    animation: slideRight 3s linear infinite;
}

.work-opportunities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.opportunity {
    background: rgba(225, 29, 72, 0.1);
    border: 1px solid rgba(225, 29, 72, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.opportunity::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 29, 72, 0.2), transparent);
    transition: left 0.6s ease;
}

.opportunity:hover::before {
    left: 100%;
}

.opportunity:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgb(225, 29, 72);
    box-shadow: 0 20px 40px rgba(225, 29, 72, 0.3);
}

.opportunity i {
    font-size: 2.5rem;
    color: rgb(225, 29, 72);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.opportunity:hover i {
    transform: scale(1.2) rotate(5deg);
}

.opportunity h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: rgb(225, 29, 72);
    transition: all 0.3s ease;
}

.opportunity:hover h3 {
    transform: translateY(-2px);
}

.opportunity-btn {
    background: rgb(225, 29, 72);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.opportunity-btn:hover {
    background: rgb(190, 18, 60);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(225, 29, 72, 0.4);
}

.opportunity-btn:active {
    background: rgb(244, 63, 94);
    transform: translateY(-1px) scale(1.02);
}

/* Studio Section */
.studio-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-studio-a) 0%, var(--bg-studio-b) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.studio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgb(225, 29, 72), transparent);
    animation: slideRight 3s linear infinite;
}

@keyframes slideRight {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

/* Advertise Section */
.advertise-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-work-a) 0%, var(--bg-work-b) 100%);
}

/* Cover Story Section */
.cover-story-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-cover-a) 0%, var(--bg-cover-b) 100%);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-about-a) 0%, var(--bg-about-b) 100%);
}

/* Shows Section */
.shows-section {
    padding: 5rem 0;
    background: linear-gradient(160deg, var(--bg-shows-a) 0%, var(--bg-shows-b) 100%);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: rgb(225, 29, 72);
    font-weight: 800;
    background: linear-gradient(45deg, rgb(244, 63, 94), rgb(236, 72, 153));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: fadeInDown 1s ease;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: rgb(225, 29, 72);
    border-radius: 2px;
}

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

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.show-card {
    background: linear-gradient(135deg, var(--bg-elevated) 0%, #2e2e3a 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.show-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(225, 29, 72, 0.3);
    border: 1px solid rgb(225, 29, 72);
}

.show-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.show-content {
    padding: 1.5rem;
}

.show-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgb(225, 29, 72);
    transition: color 0.3s ease;
}

.show-card:hover .show-content h3 {
    color: rgb(190, 18, 60);
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.show-time {
    color: rgb(225, 29, 72);
    font-weight: bold;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.show-card:hover .show-time {
    opacity: 1;
    transform: scale(1.05);
}

.show-description {
    color: rgb(229, 231, 235);
    line-height: 1.6;
}

/* Podcasts Section */
.podcasts-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-podcasts-a) 0%, var(--bg-podcasts-b) 100%);
}

.podcast-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgb(156, 163, 175);
}

.podcasts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.podcast-card {
    position: relative;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

/* Episode artwork — upper-right corner */
.podcast-thumb-corner {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 92px;
    height: 92px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
    border: 2px solid rgba(225, 29, 72, 0.4);
    line-height: 0;
    pointer-events: none;
}

.podcast-thumb-corner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    image-rendering: auto;
}

.podcast-content {
    padding: 1.2rem 110px 1.25rem 1.25rem;
}

/* Scrolling title; pauses on card hover */
.podcast-title-marquee {
    margin: 0 0 0.35rem 0;
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.35;
    color: rgb(225, 29, 72);
    overflow: hidden;
    min-height: 1.45em;
}

.podcast-title-track {
    display: inline-flex;
    width: max-content;
    animation: podcast-title-marquee 20s linear infinite;
}

.podcast-card:hover .podcast-title-track {
    animation-play-state: paused;
}

.podcast-title-pair {
    padding-right: 2.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes podcast-title-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .podcast-title-track {
        animation: none;
    }
}

.podcast-duration {
    color: rgb(225, 29, 72);
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0.15rem 0 0.85rem;
}

/* Seek bar: no transition lag while dragging */
.podcasts-section .podcast-card .progress {
    transition: none;
}

.audio-player {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.play-btn {
    background: rgb(225, 29, 72);
    border: none;
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.play-btn:hover {
    background: rgb(190, 18, 60);
    transform: scale(1.1);
}

.play-btn:active {
    background: rgb(244, 63, 94);
    transform: scale(1.05);
}

.play-btn:disabled {
    background: rgb(136, 19, 55);
    cursor: wait;
    animation: none;
    transform: scale(1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(236, 72, 153, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0);
    }
}

.play-btn:hover {
    background: #ff8f65;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
}

.podcast-progress-bar {
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    padding: 8px 0;
    margin: -8px 0;
    box-sizing: content-box;
}

.progress {
    height: 100%;
    background: rgb(225, 29, 72);
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}

.progress::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: rgb(225, 29, 72);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(225, 29, 72, 0.5);
}

.time {
    color: rgb(156, 163, 175);
    font-size: 0.9rem;
    min-width: 40px;
}

.speed-controls {
    display: flex;
    gap: 0.5rem;
}

.speed-controls button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.speed-controls button:hover,
.speed-controls button.active {
    background: rgb(225, 29, 72);
    color: var(--text-white);
    border-color: rgb(225, 29, 72);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(225, 29, 72, 0.3);
}

.speed-controls button:active {
    background: rgb(190, 18, 60);
    transform: scale(1.05);
}

.speed-controls button:disabled {
    background: rgb(136, 19, 55);
    color: rgba(255, 255, 255, 0.5);
    cursor: wait;
    transform: scale(1);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-contact-a) 0%, var(--bg-contact-b) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background: rgba(225, 29, 72, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgb(225, 29, 72);
    backdrop-filter: blur(10px);
    animation: slideInUp 0.8s ease;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(225, 29, 72);
    background: rgba(225, 29, 72, 0.1);
    box-shadow: 0 0 15px rgba(225, 29, 72, 0.2);
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.submit-btn {
    background: rgb(225, 29, 72);
    color: var(--text-white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: rgb(190, 18, 60);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(225, 29, 72, 0.4);
}

.submit-btn:active {
    background: rgb(244, 63, 94);
    transform: translateY(-1px) scale(1.01);
}

.submit-btn:disabled {
    background: rgb(136, 19, 55);
    cursor: wait;
    transform: none;
    box-shadow: none;
}

.info-card {
    background: rgba(225, 29, 72, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgb(225, 29, 72);
    backdrop-filter: blur(10px);
    animation: slideInUp 0.8s ease 0.2s both;
}

.info-card h3 {
    color: rgb(225, 29, 72);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgb(244, 63, 94), rgb(236, 72, 153));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: rgb(225, 29, 72);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    animation: rotate 2s linear infinite;
}

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

.info-item:nth-child(even) i {
    animation-direction: reverse;
}

.info-item p {
    color: rgb(229, 231, 235);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--bg-footer-a) 0%, var(--bg-footer-b) 100%);
    padding: 3rem 0 100px 0;
    border-top: 2px solid rgb(225, 29, 72);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgb(225, 29, 72), transparent);
    animation: slideRight 3s linear infinite;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Left: Social links */
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    flex: 0 0 auto;
}

/* Center: Listen On */
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
}

/* Left: Logo + tagline */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(225, 29, 72, 0.9);
    box-shadow: 0 0 22px rgba(225, 29, 72, 0.5);
    margin-bottom: 0.75rem;
}

.footer-logo p {
    color: rgb(229, 231, 235);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-links h4,
.footer-social h4 {
    color: rgb(225, 29, 72);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, rgb(244, 63, 94), rgb(236, 72, 153));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInLeft 0.8s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.listen-platforms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.platform-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(225, 29, 72, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.platform-icon:hover {
    background: rgba(225, 29, 72, 0.2);
    border-color: rgb(225, 29, 72);
    transform: translateY(-2px) scale(1.05);
}

.platform-icon i {
    color: rgb(225, 29, 72);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.platform-icon:nth-child(even) i {
    animation-delay: 0.5s;
}

.platform-icon:nth-child(odd) i {
    animation-delay: 1s;
}

.platform-icon span {
    color: rgb(229, 231, 235);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(225, 29, 72, 0.1);
    border-radius: 50%;
    color: rgb(225, 29, 72);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-links a:hover {
    background: rgb(225, 29, 72);
    color: var(--text-white);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gray);
    color: rgb(156, 163, 175);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: rgb(225, 29, 72);
}

/* Enhanced Live Radio Player - Fixed at Bottom */
#player-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(20, 26, 36, 0.96);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(225, 29, 72, 0.3);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.3s ease;
}

.player-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: 900px;
    gap: 1.5rem;
}

/* Left: logo + live indicator */
.player-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-start;
}

/* Center: play button + frequency bars */
.player-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

/* Right: volume */
.player-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-shrink: 0;
}

.air-logo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(225, 29, 72, 0.8);
    box-shadow: 0 0 12px rgba(225, 29, 72, 0.4);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.live-text {
    color: #ff4444;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.live-btn {
    background: rgb(225, 29, 72);
    border: none;
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(225, 29, 72, 0.5);
}

.live-btn:hover {
    background: rgb(190, 18, 60);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(225, 29, 72, 0.7);
}

.live-btn.playing {
    background: rgb(190, 18, 60);
    box-shadow: 0 0 25px rgba(225, 29, 72, 0.8);
}

/* Frequency bars */
.freq-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-right: 8px;
}

.freq-bars.active {
    opacity: 1;
}

.freq-bars span {
    width: 3px;
    background: rgb(225, 29, 72);
    border-radius: 2px;
    animation: none;
    height: 4px;
}

.freq-bars.active span {
    animation: freq 0.8s ease-in-out infinite;
}

.player-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}

.freq-bars span:nth-child(1) { animation-delay: 0s;    animation-duration: 0.7s; }
.freq-bars span:nth-child(2) { animation-delay: 0.1s;  animation-duration: 0.9s; }
.freq-bars span:nth-child(3) { animation-delay: 0.2s;  animation-duration: 0.6s; }
.freq-bars span:nth-child(4) { animation-delay: 0.05s; animation-duration: 1.0s; }
.freq-bars span:nth-child(5) { animation-delay: 0.15s; animation-duration: 0.75s; }
.freq-bars span:nth-child(6) { animation-delay: 0.25s; animation-duration: 0.85s; }
.freq-bars span:nth-child(7) { animation-delay: 0.08s; animation-duration: 0.65s; }

@keyframes freq {
    0%, 100% { height: 3px; }
    50% { height: 18px; }
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgb(229, 231, 235);
}

.volume-slider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: rgb(225, 29, 72);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: rgb(225, 29, 72);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Loading state */
.live-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.live-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(225, 29, 72, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 29, 40, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .footer-social,
    .footer-links,
    .footer-logo {
        align-items: center;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .listen-platforms {
        grid-template-columns: 1fr;
    }

    .shows-grid,
    .podcasts-grid {
        grid-template-columns: 1fr;
    }

    .podcast-thumb-corner {
        width: 76px;
        height: 76px;
        top: 10px;
        right: 10px;
    }

    .podcast-content {
        padding: 1rem 96px 1rem 1rem;
    }

    .podcast-title-marquee {
        font-size: 1.02rem;
    }

    .live-radio-player {
        padding: 0.5rem 1rem;
    }

    .player-content {
        gap: 0.75rem;
    }

    .volume-slider {
        width: 60px;
    }
}

/* Tune image in footer */
.platform-img {
    width: 160px;
    height: auto;
    border-radius: 10px;
    transition: all 0.3s ease;
    filter: brightness(1);
    display: block;
}

.platform-img:hover {
    filter: brightness(1.15);
    transform: scale(1.05);
}

.listen-platforms a {
    display: block;
}

/* Remove footer bottom */
.footer-bottom {
    display: none;
}

/* YouTube Videos Section */
.youtube-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.youtube-card {
    background: linear-gradient(135deg, var(--bg-elevated) 0%, #2e2e3a 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
    border: 1px solid transparent;
}

.youtube-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(225, 29, 72, 0.3);
    border-color: rgb(225, 29, 72);
}

.youtube-thumbnail {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    overflow: hidden;
}

.youtube-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.youtube-card:hover .youtube-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.youtube-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 3rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.youtube-card:hover .play-overlay i {
    transform: scale(1);
}

.youtube-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.youtube-info {
    padding: 1rem;
}

.youtube-title {
    color: rgb(225, 29, 72);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.youtube-card:hover .youtube-title {
    color: rgb(190, 18, 60);
}

.youtube-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.youtube-embed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10002;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
}

.youtube-embed.active {
    display: flex;
}

.youtube-embed iframe {
    width: 100%;
    max-width: 900px;
    height: 60vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: none;
}

.youtube-embed-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: transparent;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10003;
}

.youtube-embed-close:hover {
    color: rgb(225, 29, 72);
    transform: rotate(90deg);
}

.youtube-embed-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
    max-width: 900px;
    padding: 0 1rem;
}

/* View More Button */
.view-more-container {
    text-align: center;
    margin-top: 3rem;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, rgb(225, 29, 72), rgb(190, 18, 60));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(225, 29, 72, 0.3);
}

.view-more-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(225, 29, 72, 0.4);
    background: linear-gradient(45deg, rgb(244, 63, 94), rgb(225, 29, 72));
}

.view-more-btn i {
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .youtube-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .youtube-grid {
        grid-template-columns: 1fr;
    }

    .youtube-embed iframe {
        height: 40vh;
    }
}

/* Quote Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10001;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(145deg, #1a1d28 0%, #2a2f3a 100%);
    border: 2px solid rgb(225, 29, 72);
    border-radius: 20px;
    padding: 2.5rem;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(225, 29, 72, 0.3),
                0 0 80px rgba(225, 29, 72, 0.15);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: rgb(225, 29, 72);
    transform: rotate(90deg);
}

.modal-content h2 {
    color: rgb(225, 29, 72);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, rgb(244, 63, 94), rgb(236, 72, 153));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Modal form layout */
#quoteForm .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

#quoteForm .form-group {
    margin-bottom: 1rem;
}

#quoteForm input,
#quoteForm select,
#quoteForm textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

#quoteForm input::placeholder,
#quoteForm textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#quoteForm input:focus,
#quoteForm select:focus,
#quoteForm textarea:focus {
    outline: none;
    border-color: rgb(225, 29, 72);
    background: rgba(225, 29, 72, 0.1);
    box-shadow: 0 0 15px rgba(225, 29, 72, 0.2);
    transform: scale(1.01);
}

#quoteForm select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

#quoteForm select option {
    background: #2a2f3a;
    color: #ffffff;
}

#quoteForm textarea {
    resize: vertical;
    min-height: 100px;
}

#quoteForm .submit-btn {
    background: rgb(225, 29, 72);
    color: var(--text-white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

#quoteForm .submit-btn:hover {
    background: rgb(190, 18, 60);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(225, 29, 72, 0.4);
}

#quoteForm .submit-btn:active {
    background: rgb(244, 63, 94);
    transform: translateY(-1px) scale(1.01);
}

#quoteForm .submit-btn:disabled {
    background: rgb(136, 19, 55);
    cursor: wait;
    transform: none;
    box-shadow: none;
}

/* Modal success message */
#quote-success {
    text-align: center;
    padding: 2rem;
}

#quote-success i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1rem;
    display: block;
}

#quote-success h3 {
    color: #10b981;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

#quote-success p {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
        width: calc(100% - 2rem);
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    #quoteForm .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 2rem;
    }
}

/* Footer bottom padding accounts for fixed player */
.footer {
    padding-bottom: 80px;
}

/* Live player — white bar */
#player-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff !important;
    border-top: 2px solid rgba(225, 29, 72, 0.4) !important;
    padding: 0.65rem 1.5rem !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12) !important;
}

#player-container .live-text { color: #cc0033; }
#player-container .live-dot { background: #cc0033; }
#player-container .volume-control { color: #333; }
#player-container .volume-control i { color: #333; }

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.2rem 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 3px rgba(37, 211, 102, 0.2);
    z-index: 10000;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.whatsapp-float i {
    font-size: 1.4rem;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.7), 0 0 0 4px rgba(37, 211, 102, 0.25);
    color: white;
}

/* Podcasts 2-column, last odd card centered */
.podcasts-grid .podcast-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .podcasts-grid {
        grid-template-columns: 1fr;
    }

    .podcasts-grid .podcast-card:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: 100%;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        border-radius: 50%;
        padding: 0.75rem;
    }
}

/* Afripods external link */
.afripods-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    color: rgb(225, 29, 72);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.afripods-link:hover {
    color: rgb(244, 63, 94);
    transform: translateX(3px);
}

/* Podcast loading state */
.podcast-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: rgba(255,255,255,0.5);
}

.podcast-loading i {
    font-size: 2rem;
    color: rgb(225, 29, 72);
    margin-bottom: 1rem;
    display: block;
}

/* Rewind / Forward buttons */
.rewind-btn, .forward-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.8);
    border-radius: 6px;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 2px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.rewind-btn:hover, .forward-btn:hover {
    background: rgba(225, 29, 72, 0.3);
    border-color: rgb(225, 29, 72);
    color: white;
}

.rewind-btn span, .forward-btn span {
    font-size: 0.65rem;
    font-weight: 700;
}

/* Podcasts footer — Listen to More button */
.podcasts-footer {
    text-align: center;
    margin-top: 2.5rem;
}

.listen-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    padding: 0.9rem 2rem;
}

/* WHO WE ARE section */
.who-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, rgb(244, 63, 94), rgb(236, 72, 153));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.who-lead {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    color: rgb(229, 231, 235);
    border-left: 3px solid rgb(225, 29, 72);
    padding-left: 1rem;
}

.content-text p.who-middle {
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 1.35rem;
    font-style: italic;
    color: var(--primary-text-soft);
}

.who-closing {
    margin-top: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(229, 231, 235, 0.85);
    border-top: 1px solid rgba(225, 29, 72, 0.3);
    padding-top: 1.2rem;
}

.who-closing strong {
    color: rgb(244, 63, 94);
    font-weight: 700;
}

/* Podcast card — white background text overrides */
.podcast-card .podcast-content {
    color: #111;
}

.podcast-card .podcast-title-marquee {
    color: rgb(225, 29, 72);
}

.podcast-card .podcast-duration {
    color: #555;
}

.podcast-card .audio-player {
    background: rgba(0, 0, 0, 0.06);
}

.podcast-card .time,
.podcast-card .audio-time {
    color: #444;
}

.podcast-card .speed-controls button {
    border-color: rgba(0, 0, 0, 0.2);
    color: #444;
}

.podcast-card .progress-bar {
    background: rgba(0, 0, 0, 0.12);
}

.podcast-card .rewind-btn,
.podcast-card .forward-btn {
    border-color: rgba(0, 0, 0, 0.2);
    color: #444;
}

.podcast-card .rewind-btn:hover,
.podcast-card .forward-btn:hover {
    background: rgba(225, 29, 72, 0.1);
    border-color: rgb(225, 29, 72);
    color: rgb(225, 29, 72);
}

.podcast-card p {
    color: #444;
}

/* ── New Podcast Card UI (Afripods style) ─────────────────────────── */
.podcasts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.pc-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.1rem 1.1rem 0.9rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.pc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Show title — sits at very top of card, above image row */
.pc-show-label {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgb(225, 29, 72);
    margin-bottom: 0.6rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Afripods badge — top right corner */
.pc-afripods-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 3px 8px 3px 5px;
    font-size: 0.62rem;
    font-weight: 800;
    color: #222;
    letter-spacing: 0.5px;
    z-index: 2;
}

.pc-afripods-badge img {
    width: 13px;
    height: 13px;
    object-fit: contain;
}

/* Top row: cover image left + scrolling episode title right */
.pc-top {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
    padding-right: 80px;
}

/* Image container */
.pc-cover-wrap {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #e8e8e8;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.pc-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Scrolling episode title */
.pc-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
    line-height: 1.3;
}

.pc-title-track {
    display: inline-flex;
    width: max-content;
    animation: pc-marquee 18s linear infinite;
}

.pc-card:hover .pc-title-track {
    animation-play-state: paused;
}

.pc-title-pair {
    padding-right: 3rem;
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes pc-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Progress row */
.pc-progress-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
}

.pc-time-current {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgb(225, 29, 72);
    min-width: 36px;
    text-align: right;
}

.pc-time-total {
    font-size: 0.82rem;
    font-weight: 600;
    color: #888;
    min-width: 44px;
}

.pc-progress-bar {
    flex: 1;
    height: 5px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
}

.pc-progress-fill {
    height: 100%;
    background: rgb(225, 29, 72);
    width: 0%;
    border-radius: 3px;
    transition: none;
}

/* Controls row */
.pc-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pc-speed-btn {
    background: #e8e8e8;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-speed-btn:hover { background: #d0d0d0; }

.pc-seek-btn {
    background: transparent;
    border: 2px solid #ccc;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 0.7rem;
    color: #333;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    transition: all 0.2s ease;
    line-height: 1;
}

.pc-seek-btn i { font-size: 0.85rem; }
.pc-seek-btn span { font-size: 0.58rem; font-weight: 700; }
.pc-seek-btn:hover { border-color: #999; color: #111; }

.pc-play-btn {
    background: #111;
    border: none;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.pc-play-btn:hover { background: rgb(225, 29, 72); transform: scale(1.07); }
.pc-play-btn.playing { background: rgb(225, 29, 72); }

.pc-vol-btn {
    background: #e8e8e8;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.pc-vol-btn:hover { background: #d0d0d0; }

@media (max-width: 768px) {
    .podcasts-grid { grid-template-columns: 1fr; }
    .pc-cover-wrap { width: 75px; height: 75px; }
    .pc-top { padding-right: 0; }
    .pc-afripods-badge { display: none; }
}

/* Liveonline Radio Link Styles */
.live-platform-link img {
    transition: all 0.3s ease;
    filter: brightness(1);
}

.live-platform-link:hover img {
    filter: brightness(1.15);
    transform: translateY(-2px) scale(1.05);
}

/* Navbar Liveonline Radio link */
.nav-link img[alt="Liveonline Radio"] {
    height: 20px;
    width: auto;
    margin-right: 4px;
    vertical-align: middle;
}

.nav-link img[alt="Liveonline Radio"] + span {
    vertical-align: middle;
}

/* Responsive for navbar Liveonline Radio */
@media (max-width: 768px) {
    .nav-link img[alt="Liveonline Radio"] {
        height: 18px;
    }
    
    .nav-link img[alt="Liveonline Radio"] + span {
        font-size: 0.9rem;
    }
}
