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

body {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.min-h-screen {
    min-height: 100vh;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.-z-10 {
    z-index: -10;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-1 {
    flex: 1 1 0%;
}

.items-center {
    align-items: center;
}

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

.justify-between {
    justify-content: space-between;
}

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

.text-white {
    color: #ffffff;
}

.cursor-pointer {
    cursor: pointer;
}

/* Main App Container */
#app {
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Background */
#background {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    background-image: url('../assets/core/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Split View Layout */
#split-view {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease;
}

/* Section Container Base - Split View Only */
.radio-section.section-container,
.podcast-section.section-container {
    position: relative;
    flex: 1;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Radio Section Styles */
.radio-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right,
            rgba(25, 118, 210, 0.25) 0%,
            rgba(25, 118, 210, 0.20) 70%,
            rgba(25, 118, 210, 0.05) 100%);
}

.radio-bloom {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.03) 40%,
            transparent 70%);
}

/* Podcast Section Styles */
.podcast-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to left,
            rgba(197, 40, 47, 0.25) 0%,
            rgba(197, 40, 47, 0.20) 70%,
            rgba(197, 40, 47, 0.05) 100%);
}

.podcast-bloom {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center,
            rgba(255, 199, 42, 0.20) 0%,
            rgba(255, 199, 42, 0.10) 40%,
            transparent 70%);
}

/* Section Content */
.section-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 1.5rem 2rem;
    max-width: 32rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Logo Container */
.logo-container {
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.logo-image {
    max-height: 6rem;
    max-width: 100%;
    object-fit: contain;
}

/* Title Section */
.title-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.title-text {
    font-size: 1.125rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: white;
}

/* Icons */
.icon-large {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
    color: white;
}

.icon-medium {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.icon-small {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

/* Description */
.description-container {
    min-height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.description-text {
    font-size: 1rem;
    line-height: 1.625;
    color: white;
    opacity: 0.95;
}

/* CTA Button */
.cta-container {
    display: flex;
    justify-content: center;
}

.cta-button {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: bold;
    letter-spacing: 0.05em;
    min-height: 48px;
    cursor: pointer;
    background-color: #ffffff;
    color: #1b5e20;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-decoration: none; /* Ensure no underline for anchor links */
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.button-text {
    font-size: 0.875rem;
}

/* Hover Indicator */
.hover-indicator {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.5rem;
    height: 0.5rem;
    background-color: white;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.2s ease;
    animation: pulse 2s infinite;
}

.hover-indicator.show {
    opacity: 1;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Lineup View */
.lineup-view {
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
    z-index: 2;
    transition: transform 0.5s ease-in-out;
}

.lineup-view.show {
    transform: translateX(0);
}

/* Lineup Header */
.lineup-header {
    position: relative;
    z-index: 20;
    padding: 1rem 1.5rem;

}

.lineup-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-button {
    padding: 0.75rem 1.5rem;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.nav-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.listen-live-desktop {
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: bold;
    letter-spacing: 0.05em;
    min-height: 48px;
    background-color: #ffffff;
    color: #1976d2;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.listen-live-desktop:hover {
    transform: scale(1.05);
}

.close-button {
    color: white;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 0.375rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none; /* Ensure no underline for anchor links */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.close-button:hover {
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
}

.listen-live-mobile-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.listen-live-mobile {
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: bold;
    letter-spacing: 0.05em;
    min-height: 48px;
    background-color: #ffffff;
    color: #1976d2;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.listen-live-mobile:hover {
    transform: scale(1.05);
}

/* Lineup Content */
.lineup-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    position: relative;
}

.lineup-image-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 64rem;
}

.lineup-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Lineup Bottom */
.lineup-bottom {
    position: relative;
    z-index: 20;
    padding: 1rem 1.5rem;
}

.lineup-bottom-container {
    display: flex;
    justify-content: center;
}

.listen-live-bottom {
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: bold;
    letter-spacing: 0.05em;
    min-height: 48px;
    background-color: #ffffff;
    color: #1976d2;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.listen-live-bottom:hover {
    transform: scale(1.05);
}

/* Podcast Page */
.podcast-page {
    min-height: 100vh;
    background-color: white;
    z-index: 2;
    position: relative;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
}

.podcast-page.show {
    transform: translateX(0);
}

/* Navigation Bar */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    background-color: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.nav-logo-img {
    height: 3rem;
    width: auto;
}

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

.nav-link {
    color: #374151;
    font-weight: 500;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #111827;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-social {
    display: none;
    align-items: center;
    gap: 1rem;
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.2s ease;
}

.social-icon.youtube:hover {
    color: #dc2626;
}

.social-icon.facebook:hover {
    color: #2563eb;
}

.social-icon.twitter:hover {
    color: #60a5fa;
}

.social-icon.instagram:hover {
    color: #ec4899;
}

.mobile-menu-btn {
    padding: 0.5rem;
    color: #6b7280;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.mobile-menu-btn:hover {
    color: #111827;
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: calc(100vh - 5rem);
    margin-top: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 1rem;
    max-width: 64rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-highlight {
    color: #ffc72a;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.625;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.hero-btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 9999px;
    font-weight: bold;
    min-width: 12.5rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.hero-btn.watch-btn {
    background-color: #c5282f;
    color: white;
}

.hero-btn.listen-btn {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-btn.listen-btn:hover {
    background-color: white;
    color: black;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

/* Sections */
.section-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1b5e20;
}

/* Hosts Section */
.hosts-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.hosts-section .section-container {
    min-height: auto;
}

.hosts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 5xl;
    margin: 0 auto;
}

.host-card {
    text-align: center;
}

.host-image-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.host-image {
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.host-name {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #c5282f;
}

.host-bio {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.host-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Partners Section */
.partners-section {
    padding: 5rem 0;
    background-color: white;
}

.partners-section .section-container {
    min-height: auto;
}

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

.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.partner-card:hover {
    background-color: #f3f4f6;
}

.partner-logo {
    max-height: 48px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: opacity 0.2s ease, filter 0.2s ease;
    opacity: 0.7;
}

.partner-card:hover .partner-logo {
    opacity: 1;
    filter: none;
}

.contact-info {
    text-align: center;
    margin-top: 4rem;
}

.contact-text {
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.contact-btn {
    font-weight: 500;
    border: 1px solid #c5282f;
    color: #c5282f;
    background: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
    text-decoration: none; /* Ensure no underline for anchor links */
}

.contact-btn:hover {
    background-color: #c5282f;
    color: white;
}

/* Episodes Section */
.episodes-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.episodes-section .section-container {
    min-height: auto;
}

.episodes-content {
    max-width: 4xl;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.episodes-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.episodes-actions {
    display: flex;
    justify-content: center;
    gap: 10px
}

.episodes-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background-color: #1b5e20;
    color: white;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

.episodes-btn:hover {
    background-color: #2d7d32;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: white;
}

.about-section .section-container {
    min-height: auto;
}

.about-content {
    max-width: 4xl;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

/* Footer CTA */
.footer-cta {
    padding: 5rem 0;
    background-color: #1b5e20;
}

.footer-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.footer-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-subtitle {
    font-size: 1.25rem;
    color: white;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.footer-btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 9999px;
    font-weight: bold;
    min-width: 12.5rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.footer-btn.watch-btn {
    background-color: #c5282f;
    color: white;
}

.footer-btn.listen-btn {
    background-color: #ffc72a;
    color: #1b5e20;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 0;
    box-shadow: none;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    transform: none;
    transition: none;
    border: none;
    /* Custom scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: #1b5e20 #f0f0f0;
}

/* Custom scrollbar for webkit browsers */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 0 1rem 1rem 0;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #1b5e20;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #0d4f1c;
}



.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 3rem;
    border-bottom: 2px solid #1b5e20;
    background: linear-gradient(90deg, #1b5e20 0%, #2e7d32 100%);
    color: white;
    border-radius: 0;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin: 0;
}

.modal-close {
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0.5rem;
    border-radius: 0.375rem;
}

.modal-close:hover {
    color: #e8f5e8;
    background-color: rgba(255, 255, 255, 0.1);
}

.close-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.modal-body {
    padding: 2rem 3rem;
    /* Add padding to prevent scrollbar from touching border */
    padding-right: 3.5rem;
    min-height: calc(100vh - 140px);
    /* Account for header and footer */
}

.modal-description {
    color: #6b7280;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.125rem;
}

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

@media (min-width: 640px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .platforms-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.platform-btn {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid #e5e7eb;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.platform-btn:hover {
    border-color: #1b5e20;
    background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 94, 32, 0.15);
}

.platform-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    font-size: 1.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.platform-info {
    flex: 1;
}

.platform-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 0.25rem;
    transition: color 0.2s ease;
}

.platform-btn:hover .platform-name {
    color: #0d4f1c;
}

.platform-status {
    font-size: 0.875rem;
    color: #2e7d32;
    font-weight: 500;
}

.platform-external {
    color: #9ca3af;
    transition: color 0.2s ease;
}

.platform-btn:hover .platform-external {
    color: #6b7280;
}

.modal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.modal-footer-text {
    color: #6b7280;
    font-size: 0.875rem;
}

.modal-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.modal-link:hover {
    color: #1d4ed8;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.show {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.mobile-menu-sidebar {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 20rem;
    background-color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.show .mobile-menu-sidebar {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-nav-logo {
    height: 2.5rem;
    width: auto;
}

.mobile-menu-close {
    padding: 0.5rem;
    color: #6b7280;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.mobile-menu-close:hover {
    color: #111827;
}

.mobile-nav-links {
    padding: 1.5rem 1.5rem 2rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #111827;
}

.mobile-social {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.mobile-social-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 1rem;
}

.mobile-social-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-cta {
    padding: 1.5rem;
    margin-top: auto;
}

.mobile-cta-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
    border-radius: 9999px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
}

.mobile-cta-btn.watch-btn {
    background-color: #c5282f;
    color: white;
}

.mobile-cta-btn.listen-btn {
    background-color: #ffc72a;
    color: #1b5e20;
}

/* Responsive Design */
@media (min-width: 768px) {
    #split-view {
        flex-direction: row;
    }

    .section-container {
        min-height: 100vh;
    }

    .section-content {
        padding: 2rem 2rem;
    }

    .logo-container {
        height: 12rem;
        margin-bottom: 2rem;
    }

    .logo-image {
        max-height: 10rem;
    }

    .title-text {
        font-size: 1.25rem;
    }

    .icon-large {
        width: 2rem;
        height: 2rem;
        margin-right: 0.75rem;
    }

    .description-container {
        height: 8rem;
        margin-bottom: 2rem;
    }

    .description-text {
        font-size: 1.125rem;
    }

    .cta-button {
        padding: 0.75rem 2rem;
    }

    .button-text {
        font-size: 1rem;
    }

    .hover-indicator {
        display: block;
    }

    .close-button {
        display: none;
    }

    .listen-live-mobile-container {
        display: none;
    }

    .back-text-mobile {
        display: none;
    }

    .back-text-desktop {
        display: inline;
    }

    /* Podcast Page Responsive */
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: flex;
    }

    .nav-social {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

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

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

    .hero-buttons {
        flex-direction: row;
    }

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

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

    .footer-buttons {
        flex-direction: row;
    }

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

    .mobile-menu {
        display: none;
    }
}

@media (max-width: 767px) {
     .hover-indicator {
        display: none;
    }

    .back-text-desktop {
        display: none;
    }

    .back-text-mobile {
        display: inline;
    }

    /* Podcast Page Mobile */
    .nav-links {
        display: none;
    }

    .nav-social {
        display: none;
    }
}

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

    .description-text {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .footer-title {
        font-size: 3rem;
    }

    .partners-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Animations and Transitions */
.fade-in {
    animation: fadeIn 0.3s ease-in;
}

.fade-out {
    animation: fadeOut 0.3s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

.slide-in-up {
    animation: slideInUp 0.6s ease-out;
}

.bounce-in {
    animation: bounceIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

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

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

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

    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);
    }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Intersection Observer API classes */
.hero-content>* {
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.hero-title {
    animation: slideInUp 0.8s ease-out;
}

.hero-subtitle {
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    animation: slideInUp 0.8s ease-out 0.4s both;
}

/* Button hover effects */
.cta-button,
.hero-btn,
.footer-btn,
.mobile-cta-btn,
.nav-button,
.listen-live-desktop,
.listen-live-mobile,
.listen-live-bottom {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover,
.hero-btn:hover,
.footer-btn:hover,
.mobile-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-button:active,
.hero-btn:active,
.footer-btn:active,
.mobile-cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Section animations */
.hosts-section .host-card:nth-child(1) {
    animation: slideInLeft 0.6s ease-out;
}

.hosts-section .host-card:nth-child(2) {
    animation: slideInRight 0.6s ease-out;
}

.partner-card {
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Platform button animations */
.platform-btn {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Modal animations */
.modal {
    backdrop-filter: blur(8px);
}

.modal-content {
    animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

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

/* Mobile menu animations */
.mobile-menu-sidebar {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effects for images */
.host-image,
.lineup-image {
    transition: transform 0.3s ease;
}

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

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Footer */
.footer {
    background-color: #000000;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer a {
    color: white;
    text-decoration: underline;
}

.footer a:hover {
    color: #f0f0f0;
}

/* Privacy Policy */
.privacy-section {
    padding: 10rem 0 5rem 0;
    background-color: white;
}

.privacy-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #4b5563;
}

.privacy-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.privacy-section a {
    color: #3b82f6;
    text-decoration: underline;
}

.privacy-section a:hover {
    color: #2563eb;
}