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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Video Background Styles */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Remove the SVG pattern background from hero */
.hero::before {
    display: none;
}

/* Fallback image styles */
.hero-video.fallback {
    background-image: url("public/Untitled design.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-video.fallback #hero-video {
    display: none;
}

/* Responsive video handling */
@media (max-width: 768px) {
    #hero-video {
        width: auto;
        height: 100%;
        min-width: 100%;
    }
}

/* Add fallback for browsers that don't support video */
@media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
        .hero-video {
            background-image: url("public/Untitled design.png");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        #hero-video {
            display: none;
        }
    }
}

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

/* Header Styles */
.header {
    background: rgba(255, 107, 107, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 107, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #ff6b6b;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
}

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

.logo h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #ffc42b, #00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes neonGlow {
    from { text-shadow: 0 0 20px rgba(255, 107, 107, 0.5); }
    to { text-shadow: 0 0 30px rgba(255, 107, 107, 0.8), 0 0 40px rgba(255, 107, 107, 0.6); }
}

.slogan {
    color: #fff;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin: 0 0.5rem;
    background: rgba(255, 107, 107, 0.05);
    backdrop-filter: blur(20px);
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(45deg, #ff6b6b, #00ffcc);
    border-radius: 2px;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(45deg, #ffc42b, #ff6b6b);
}

/* Hero Section */
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h30v30H0V0zm30 30h30v30H30V30z' fill='%230099ff' fill-opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #ffc42b, #00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
    animation: pulseGlow 3s ease-in-out infinite;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 107, 107, 0.3);
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(45deg, #0099ff, #00ccff);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 153, 255, 0.3);
    border: 1px solid #0099ff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 153, 255, 0.5);
    background: linear-gradient(45deg, #00ccff, #0099ff);
}

.btn-secondary {
    background: transparent;
    color: #0099ff;
    border: 2px solid #0099ff;
}

.btn-secondary:hover {
    background: #0099ff;
    color: #000;
    box-shadow: 0 10px 25px rgba(0, 153, 255, 0.3);
    transform: translateY(-2px);
}

/* Features Section */
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ff6b6b' fill-opacity='0.1'%3E%3Cpath d='M0 0h20v20H0V0zm20 20h20v20H20V20z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #ffc42b, #00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes glowEffect {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

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

.feature-card {
    background: rgba(0, 153, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 153, 255, 0.2);
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: translateX(50%) translateY(50%);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3), 0 0 20px rgba(255, 107, 107, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0099ff;
    text-shadow: 0 0 15px rgba(0, 153, 255, 0.5);
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.feature-card h3 {
    color: #0099ff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #ffffff;
    opacity: 0.9;
    font-size: 1rem;
}

    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.live-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ff6b6b' fill-opacity='0.05'%3E%3Cpath d='M0 0h30v30H0V0zm30 30h30v30H30V30z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.live-player {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.live-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.station-info h3 {
    color: #ff6b6b;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
    animation: pulseText 2s ease-in-out infinite;
}

@keyframes pulseText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.station-info p {
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 153, 255, 0.2);
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(45deg, #ff6b6b, #00ffcc);
    color: #000;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.play-btn:hover::before {
    left: 100%;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.5);
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 107, 107, 0.1);
    backdrop-filter: blur(10px);
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.3), transparent);
    animation: progressScan 2s linear infinite;
}

@keyframes progressScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress {
    height: 100%;
    background: linear-gradient(45deg, #ff6b6b, #00ffcc);
    transition: width 0.3s ease;
    position: relative;
    z-index: 1;
}

.time {
    color: #ffffff;
    opacity: 0.8;
    font-size: 0.9rem;
    min-width: 50px;
}

/* Podcasts Section */
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.podcasts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ff6b6b' fill-opacity='0.05'%3E%3Cpath d='M0 0h15v15H0V0zm15 15h15v15H15V15z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

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

.podcast-card {
    background: rgba(255, 107, 107, 0.05);
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    animation: cardGlow 3s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

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

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

.podcast-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.podcast-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast-card h3 {
    color: #ff6b6b;
    font-size: 1.3rem;
    padding: 1rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
    animation: titleFloat 3s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.podcast-card p {
    color: #ffffff;
    opacity: 0.9;
    padding: 0 1rem 1rem;
    font-size: 1rem;
}

.podcast-meta {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 0 0 10px 10px;
    backdrop-filter: blur(10px);
}

    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.schedule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ff6b6b' fill-opacity='0.05'%3E%3Cpath d='M0 0h15v15H0V0zm15 15h15v15H15V15z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
} position: relative;
    overflow: hidden;
}

.schedule-table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    animation: scheduleScan 4s linear infinite;
}

@keyframes scheduleScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.schedule-header,
.schedule-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
}

.schedule-header {
    background: rgba(255, 107, 107, 0.1);
    font-weight: 700;
    color: #ff6b6b;
    text-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
    animation: headerPulse 3s ease-in-out infinite;
}

@keyframes headerPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.schedule-row:nth-child(even) {
    background: rgba(255, 107, 107, 0.02);
}

.day,
.time,
.show {
    color: #ffffff;
    font-size: 1rem;
}

.schedule-row:hover {
    background: rgba(255, 107, 107, 0.1);
    transform: translateX(5px);
    transition: all 0.3s ease;
}

    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ff6b6b' fill-opacity='0.05'%3E%3Cpath d='M0 0h15v15H0V0zm15 15h15v15H15V15z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

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

.about-content p {
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
    animation: textReveal 2s ease-out;
}

@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    color: #ff6b6b;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    animation: numberPulse 3s ease-in-out infinite;
}

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

.stat p {
    color: #ffffff;
    opacity: 0.8;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.05), transparent);
    animation: footerScan 5s linear infinite;
}

@keyframes footerScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
    animation: footerTitle 2s ease-in-out infinite;
}

@keyframes footerTitle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.footer-section p,
.footer-section ul {
    color: #ffffff;
    opacity: 0.8;
}

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

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

    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, #ff6b6b, #00ffcc);
    transition: left 0.5s ease;
}

.footer-section a:hover::before {
    left: 0;
}

.footer-section a:hover {
    color: #00ffcc;
    transform: translateX(5px);
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 107, 0.2);
    color: #ffffff;
}
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(255, 107, 107, 0.3);
    animation: footerText 4s ease-in-out infinite;
}

@keyframes footerText {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.8; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .features-grid,
    .podcasts-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .schedule-table {
        font-size: 0.9rem;
    }
    
    .schedule-header,
    .schedule-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .schedule-header {
        padding: 1rem;
    }
    
    .schedule-row {
        padding: 0.8rem;
    }
    
    .day,
    .time,
    .show {
        font-size: 0.8rem;
    }
}
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
.player-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .live-section,
    .features,
    .podcasts,
    .about,
    .schedule {
        padding: 4rem 0;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
    
    .schedule-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}