/* CSS VARIABLES FOR EASY THEMING */
:root {
    /* Dark Theme (Default) */
    --bg-deep: #0a2540;
    --bg-card: #1e3a5f;
    --bg-card-hover: #254a73;
    --accent: #ff6b35;
    --accent-hover: #ff8555;
    --accent-light: rgba(255, 107, 53, 0.15);
    --text-main: #f0f4f8;
    --text-dim: #94a3b8;
    --glass: rgba(10, 37, 64, 0.85);
    --border-color: rgba(255,255,255,0.1);
    --border-color-light: rgba(255,255,255,0.05);
    --input-bg: #0f212f;
    --input-border: #3d5e77;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.4);
    --card-bg: var(--bg-card);
    --modal-bg: #1a252f;
    --ticker-bg: linear-gradient(90deg, var(--accent), #e68c5a);
    --hero-bg: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4));
    --section-bg: transparent;
    --icon-bg: rgba(255,255,255,0.05);
    --icon-color: var(--accent);
    --gradient-card: linear-gradient(145deg, #1b2e40, #122333);
    --white: #ffffff;
    --black: #111827;
}

/* Light Theme Variables */
body.light-theme {
    --bg-deep: #f4f5f7;
    --bg-card: #ffffff;
    --bg-card-hover: #f8f9fa;
    --accent: #ff6b35;
    --accent-hover: #e85a24;
    --accent-light: rgba(255, 107, 53, 0.12);
    --text-main: #111827;
    --text-dim: #6b7280;
    --glass: rgba(255, 255, 255, 0.98);
    --border-color: #e5e7eb;
    --border-color-light: #f3f4f6;
    --input-bg: #ffffff;
    --input-border: #d1d5db;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --card-bg: #ffffff;
    --modal-bg: #ffffff;
    --ticker-bg: linear-gradient(90deg, #ff6b35, #ff8555);
    --hero-bg: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    --section-bg: #ffffff;
    --icon-bg: #f3f4f6;
    --icon-color: #ff6b35;
    --gradient-card: linear-gradient(145deg, #ffffff, #f8fafc);
}

/* RESET & BASE STYLES */
* { margin: 0; padding: 0; box-sizing: border-box; transition: all 0.3s ease; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.6;
    padding-bottom: 100px;
    background-image: var(--hero-bg);
    background-attachment: fixed;
}

body.light-theme {
    background-image: radial-gradient(circle at 30% 20%, #ffffff 0%, #e6e9f0 100%);
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

body.light-theme .container {
    max-width: 1320px;
    padding: 1.2rem 2rem 2.5rem;
}

/* HEADER & NAV */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.light-theme header {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-bottom: 3px solid var(--accent);
}

.logo { 
    font-size: 1.5rem; 
    font-weight: 800; 
    letter-spacing: -1px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.logo span { color: var(--accent); }
.logo img { 
    height: 40px; 
    width: 40px; 
    border-radius: 50%; 
    object-fit: cover; 
    border: 2px solid var(--accent); 
}

nav ul { display: flex; list-style: none; gap: 2rem; }
nav a { 
    text-decoration: none; 
    color: var(--text-dim); 
    font-weight: 500; 
    transition: all 0.3s ease;
}

body.light-theme nav a {
    color: #495057;
    font-weight: 600;
}

body.light-theme nav a:hover,
body.light-theme nav a.active {
    color: var(--accent);
    transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
    padding: 4rem 5%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4)), 
                url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 40px 40px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

body.light-theme .hero {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.3)),
                url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    border: 2px solid #e9ecef;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border-radius: 0 0 24px 24px;
}

body.light-theme .hero h1 {
    color: #111827;
    text-shadow: 0 1px 4px rgba(255,255,255,0.8);
}

body.light-theme .hero p {
    color: #374151;
    text-shadow: 0 1px 3px rgba(255,255,255,0.7);
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.live-indicator i { margin-right: 8px; animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }

.hero h1 { font-size: 3.5rem; max-width: 800px; margin-bottom: 1.5rem; line-height: 1.1; color: white; }
.hero p { color: var(--text-dim); max-width: 600px; margin-bottom: 2rem; font-size: 1.1rem; }

.play-btn-hero {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

body.light-theme .play-btn-hero {
    color: #111827;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.play-btn-hero:hover { 
    transform: scale(1.05); 
    background: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* GENRE ROW */
.genre-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
    margin-bottom: 2rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .genre-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0.5rem;
        gap: 0.6rem;
    }
    .genre-row::-webkit-scrollbar { display: none; }
    .genre-item { flex-shrink: 0; }
    .dropdown { flex-shrink: 0; }
}

body.light-theme .genre-row {
    border-top: 1px solid #e4e4e7;
    border-bottom: 1px solid #e4e4e7;
    margin: 1.2rem 0 1.6rem;
}

.genre-item {
    background: var(--icon-bg);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid transparent;
    color: var(--text-dim);
    font-weight: 500;
    transition: all 0.3s ease;
}

.genre-item:hover {
    border-color: var(--accent);
    color: #f8fafc;
    transform: translateY(-2px);
}

.genre-item.active {
    background: linear-gradient(135deg, var(--accent) 0%, #ffd84c 100%);
    border-color: var(--accent);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
    color: #111827;
}

body.light-theme .genre-item {
    background: #ffffff;
    border: 2px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    color: #111827;
}

body.light-theme .genre-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

body.light-theme .genre-item.active {
    background: linear-gradient(135deg, var(--accent) 0%, #ffd84c 100%);
    border-color: var(--accent);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
    color: #111827;
}

/* FEATURED LAYOUT */
.featured-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 20px;
    margin-bottom: 3rem;
    align-items: stretch;
}

.featured-layout > .main-feature-card {
    grid-column: 1;
    grid-row: 1;
}

.featured-layout > .sidebar-wrapper {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
}

.left-podcast-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    grid-column: 1;
    grid-row: 2;
    align-self: start;
}

.left-podcast-stack .podcast-highlights-card {
    height: auto;
    display: flex;
    flex-direction: column;
}

.weekly-favorite-card .weekly-favorite-media {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    background: #0b111a;
}

body.light-theme .weekly-favorite-card .weekly-favorite-media {
    background: #f3f4f6;
}

.weekly-favorite-card .weekly-favorite-media iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.sidebar-wrapper { display: flex; flex-direction: column; gap: 20px; }

.bento-card, .program-card, .sidebar-card, .main-feature-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color-light);
    transition: all 0.3s ease;
}

body.light-theme .main-feature-card,
body.light-theme .sidebar-card,
body.light-theme .program-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

body.light-theme .main-feature-card:hover,
body.light-theme .sidebar-card:hover,
body.light-theme .program-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
    transform: translateY(-4px);
}

.bento-card:hover, .program-card:hover, .sidebar-card:hover, .main-feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
}

body.light-theme .bento-card:hover,
body.light-theme .program-card:hover,
body.light-theme .sidebar-card:hover,
body.light-theme .main-feature-card:hover {
    transform: translateY(-4px);
}

.tag { color: var(--accent); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.5rem; display: block; }

.section-title {
    font-size: 2rem;
    margin: 3rem 0 1.5rem 0;
    display: flex;
    gap: 0.8rem;
    color: var(--text-main);
    border-left: 6px solid var(--accent);
    padding-left: 1.2rem;
}

body.light-theme .section-title {
    background: linear-gradient(90deg, var(--accent-light) 0%, transparent 100%);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 6px solid var(--accent);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    color: #111827;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem 2rem;
}

.program-thumb {
    height: 150px;
    background: #1f384b;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

body.light-theme .program-thumb {
    background: #f3f4f6;
}

.program-thumb iframe,
.program-thumb .video-embed-container {
    width: 100%;
    height: 150px;
    position: relative;
    padding-bottom: 0;
}

.program-thumb .video-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.play-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent);
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: default;
}

.program-title {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: var(--text-main);
}

body.light-theme .program-title {
    color: #111827;
    font-size: 1.95rem;
    line-height: 1.28;
}

.program-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--text-dim);
    font-size: 1rem;
    margin-left: 5px;
}

body.light-theme .program-meta {
    color: #4b5563;
    justify-content: space-between;
    border-top: 1px solid #ececec;
    padding-top: 0.55rem;
    margin-top: 0.7rem;
}

.program-info {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

body.light-theme .program-info {
    padding: 0.9rem 1rem 0.4rem;
}

.program-creative-fill {
    margin-top: 0.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--border-color);
}

body.light-theme .program-creative-fill {
    border-top-color: #e5e7eb;
}

.program-creative-fill span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: #bdd1e0;
    border: 1px solid rgba(255,255,255,0.1);
}

body.light-theme .program-creative-fill span {
    background: #f3f4f6;
    color: #374151;
    border-color: #e5e7eb;
}

.comment-section {
    background: rgba(0,0,0,0.2);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

body.light-theme .comment-section {
    background: #fbfbfb;
    border-left-color: var(--accent);
    border: 1px solid #ececec;
}

.comment-section p {
    color: #d1e2f0;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

body.light-theme .comment-section p {
    color: #4a5568;
}

.comment-input-row {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.comment-input-row input {
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 40px;
    padding: 0.6rem 1rem;
    flex: 1;
    color: var(--text-main);
    outline: none;
    transition: all 0.3s ease;
}

body.light-theme .comment-input-row input {
    border-color: #e2e2e2;
    background: #fff;
    color: #111827;
}

body.light-theme .comment-input-row input::placeholder {
    color: #6b7280;
}

.comment-input-row button {
    background: var(--accent);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: white;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

body.light-theme .comment-input-row button {
    background: linear-gradient(135deg, var(--accent) 0%, #ffd84c 100%);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    color: #111827;
}

body.light-theme .comment-input-row button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* local stations */
.local-stations {
    background: #14232f;
    border-radius: 60px;
    padding: 1.5rem 2.2rem;
    margin: 3rem 0 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #3c5b70;
}

body.light-theme .local-stations {
    background: #ffffff;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-radius: 12px;
}

body.light-theme .popular-title {
    color: #ff6b35 !important;
}

.station-list {
    display: flex;
    gap: 1.5rem 2.2rem;
    color: #bfd9f0;
    flex-wrap: wrap;
}

body.light-theme .station-list {
    color: #4b5563;
}

.station-list span i { color: var(--accent); margin-right: 6px; }

.footer {
    margin-top: 4rem;
    border-top: 1px solid #2d4357;
    padding: 2rem 20px 0;
    display: flex;
    justify-content: space-between;
    color: #9bb4cc;
}

body.light-theme .footer {
    border-top: 1px solid #dddddf;
    color: #6b7280;
    margin-top: 2.7rem;
}

.footer-links { display: flex; gap: 2rem; align-items: center; }
.footer-links a { text-decoration: none; transition: 0.3s; color: #9bb4cc; }

body.light-theme .footer-links a {
    color: #4b5563;
}

.footer-links a:hover { opacity: 0.8; }

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.8rem 4%;
    }
    .logo { font-size: 1.2rem; }
    .logo img { height: 32px; width: 32px; }
    nav { width: 100%; }
    nav ul {
        width: 100%;
        gap: 0.8rem 1rem;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    nav a { font-size: 0.95rem; }
    header .live-indicator {
        margin: 0;
        padding: 0.35rem 0.8rem;
        font-size: 0.7rem;
    }
    .footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    .footer-links { flex-wrap: wrap; gap: 1rem; }
    .player-bar { bottom: 0; left: 0; right: 0; border-radius: 0; padding: 0 12px; }
    .track-info { width: auto; max-width: 40%; gap: 8px; }
    .track-info img { width: 36px; height: 36px; }
    .track-meta b { font-size: 0.78rem; }
    .track-meta span { font-size: 0.7rem; }
    .player-controls { gap: 10px; }
}

/* CREATIVE ADDITIONS */
.news-ticker {
    background: var(--ticker-bg);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

body.light-theme .news-ticker {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
    color: #101828;
}

.video-embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

body.light-theme .video-embed-container {
    background: #000;
    border-radius: 8px 8px 0 0;
}

.main-feature-card .video-embed-container {
    padding-bottom: 42%;
}

.video-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.audio-embed-container {
    height: auto;
    padding-bottom: 0;
    background: transparent;
    padding: 0.75rem;
}

body.light-theme .audio-embed-container {
    background: transparent;
    padding: 0.75rem;
}

.audio-embed-container audio {
    display: block;
    width: 100%;
}

.main-feature-card .feature-content {
    padding: 16px !important;
}

body.light-theme .main-feature-card .feature-content {
    background: #fff;
    padding: 1.5rem !important;
}

.main-feature-card .feature-excerpt {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.45;
}

/* CREATIVE: Dropdown Menu */
.dropdown { position: relative; display: inline-block; }

.dropdown-btn {
    background: rgba(255,255,255,0.05);
    color: var(--text-dim);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

body.light-theme .dropdown-btn {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    color: #111827;
    border-radius: 10px;
}

body.light-theme .dropdown-btn:hover {
    background: #f7f7f8;
    border-color: var(--accent);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1b2936;
    min-width: 260px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    z-index: 1001;
    border-radius: 12px;
    border: 1px solid #3c5b70;
    max-height: 350px;
    overflow-y: auto;
    margin-top: 0.5rem;
}

body.light-theme .dropdown-content {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
    border-radius: 10px;
}

.dropdown-content span {
    color: #bdd1e0;
    padding: 10px 16px;
    display: block;
    border-bottom: 1px solid #2e4355;
    cursor: pointer;
    font-size: 0.9rem;
    transition: 0.2s;
}

body.light-theme .dropdown-content span {
    color: #4a5568;
    border-bottom-color: #f0f4f8;
}

.dropdown-content span:hover {
    background: #2f3f4e;
    color: var(--accent);
    padding-left: 22px;
}

.dropdown-content span.active {
    background: linear-gradient(135deg, var(--accent) 0%, #ffd84c 100%);
    color: #111827;
    font-weight: 700;
}

body.light-theme .dropdown-content span:hover {
    background: #f7fafc;
    color: var(--accent);
}

body.light-theme .dropdown-content span.active {
    background: linear-gradient(135deg, var(--accent) 0%, #ffd84c 100%);
    color: #111827;
}

.dropdown:hover .dropdown-content { display: block; }
.dropdown-content::-webkit-scrollbar { width: 6px; }
.dropdown-content::-webkit-scrollbar-thumb { background: #3c5b70; border-radius: 3px; }

/* CREATIVE: Feature Extra (Tags & Reactions) */
.feature-extra { margin-top: 1.5rem; border-top: 1px solid #2e4355; padding-top: 1rem; }

body.light-theme .feature-extra {
    border-top-color: #ececec;
    margin-top: 1rem;
}

.feature-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.2rem; }

.feature-tag {
    background: rgba(250, 204, 21, 0.15);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(250, 204, 21, 0.2);
}

body.light-theme .feature-tag {
    background: #f5f5f5;
    border: 1px solid #e4e4e7;
    color: #111827;
}

.reaction-bar { display: flex; gap: 0.8rem; align-items: center; flex-wrap: wrap; }

.reaction-btn {
    background: #233645;
    border: 1px solid #3c5b70;
    color: #cddceb;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

body.light-theme .reaction-btn {
    background: #ffffff;
    color: #111827;
    border: 1px solid #e4e4e7;
    border-radius: 8px;
}

.reaction-btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

body.light-theme .reaction-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #111827;
}

/* CREATIVE: Guest Speakers in Feature */
.guest-speakers { margin-top: 1.5rem; }
.guest-list { display: flex; gap: 1.5rem; align-items: flex-start; }
.guest-item { text-align: left; width: 150px; }

.guest-thumbnail {
    width: 100%;
    height: 84px;
    border-radius: 8px;
    background-color: #33485a;
    background-size: cover;
    background-position: center;
    border: 1px solid #3c5b70;
    margin-bottom: 0.5rem;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

body.light-theme .guest-thumbnail {
    background-color: #f3f4f6;
    border-color: #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.guest-thumbnail::after {
    content: '\f04b';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

body.light-theme .guest-thumbnail::after {
    color: var(--accent);
    text-shadow: none;
}

.guest-name {
    font-size: 0.95rem;
    color: #e3eaf1;
    font-weight: 700;
    line-height: 1.2;
}

body.light-theme .guest-name {
    color: #111827;
}

.guest-title {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.light-theme .guest-title {
    color: #6b7280;
}

/* CREATIVE: Guest Box Style */
.guest-speakers-box {
    border: 1px solid #3c5b70;
    background: rgba(20, 30, 40, 0.6);
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--accent);
}

body.light-theme .guest-speakers-box {
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 10px;
}

/* CREATIVE: Youth Attraction Elements */
@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(230, 57, 70, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}

.live-btn-animated {
    animation: pulse-red 2s infinite;
    background: #e63946 !important;
    color: white !important;
    border: none !important;
}

.poll-card {
    background: var(--bg-card);
    border: 1px solid var(--accent);
}

body.light-theme .poll-card {
    background: linear-gradient(145deg, #ffffff, #f7fafc);
    border: 2px solid var(--accent);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.poll-option {
    background: rgba(0,0,0,0.2);
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

body.light-theme .poll-option {
    background: rgba(0,0,0,0.05);
}

.poll-option:hover { background: rgba(250, 204, 21, 0.2); }
.poll-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgba(250, 204, 21, 0.15);
    width: 0%;
    transition: 1s;
    z-index: 0;
}

.poll-text {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #e3eaf1;
}

body.light-theme .poll-text {
    color: #2d3748;
}

.shoutout-box {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.shoutout-wrapper {
    animation: scrollUp 12s linear infinite;
}

@keyframes scrollUp {
    0% { transform: translateY(100%); }
    100% { transform: translateY(-120%); }
}

.shoutout-msg {
    background: rgba(255,255,255,0.05);
    padding: 8px 12px;
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    border-left: 3px solid var(--accent);
    color: #b0c9dd;
}

body.light-theme .shoutout-msg {
    background: rgba(0,0,0,0.03);
    color: #4a5568;
    border-left-color: var(--accent);
}

.text-news-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    text-decoration: none;
    padding: 1rem;
    margin: 0.25rem -1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.text-news-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

body.light-theme .text-news-item:hover {
    background: #f9fafb;
}

.see-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    background: var(--accent-light);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid rgba(255,107,53,0.2);
    transition: all 0.3s ease;
}

.see-all-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

body.light-theme .see-all-btn {
    background: #fff5f0;
    border-color: rgba(255,107,53,0.3);
    color: var(--accent);
}

body.light-theme .see-all-btn:hover {
    background: var(--accent);
    color: #fff;
}

.text-news-item p {
    color: var(--text-main);
    font-weight: 600;
    margin: 0 0 0.2rem 0;
    line-height: 1.3;
}

body.light-theme .text-news-item p {
    color: #111827;
}

.text-news-item small {
    color: var(--text-dim);
}

body.light-theme .text-news-item small {
    color: #6b7280;
}

.news-icon {
    background: rgba(255,255,255,0.05);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

body.light-theme .news-icon {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
}

body.light-theme .text-news-item:hover .news-icon {
    background: linear-gradient(135deg, var(--accent) 0%, #ffd84c 100%);
    border-color: var(--accent);
    color: #111827;
}

/* PODCAST CARD */
.podcast-card {
    background: linear-gradient(45deg, #4f46e5, #9333ea) !important;
    color: white !important;
    border: none !important;
}

.podcast-card i { font-size: 2rem; margin-bottom: 1rem; display:block; }
.podcast-card h3 { color: white !important; font-size: 1.2rem; margin-bottom: 0.5rem; }
.podcast-card p { color: rgba(255,255,255,0.9) !important; font-size: 0.9rem; margin-bottom: 1.5rem; }

.podcast-card button {
    background: white;
    color: #4f46e5;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.podcast-card button:hover { background: #f0f0f0; transform: scale(1.05); }

.podcast-highlights-card {
    background: linear-gradient(145deg, #1b2e40, #122333) !important;
    border: 1px solid #35536a !important;
}

body.light-theme .podcast-highlights-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc) !important;
    border: 2px solid #e5e7eb !important;
}

body.light-theme .podcast-highlights-card h3 {
    color: #111827 !important;
}

.podcast-subtitle {
    font-size: 0.84rem;
    color: #9bb8cf;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

body.light-theme .podcast-subtitle {
    color: #6b7280;
}

.podcast-desc {
    color: #d8e6f2;
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 0.9rem;
}

body.light-theme .podcast-desc {
    color: #374151;
}

.podcast-track-list {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.podcast-track-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.6rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
}

body.light-theme .podcast-track-item {
    background: #f9fafb;
    border-color: #e5e7eb;
}

.podcast-track-item span {
    min-width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
    color: #122333;
    background: #f2ca18;
    font-weight: 700;
}

.podcast-track-item p {
    margin: 0;
    color: #d8e6f2;
    font-size: 0.86rem;
    font-weight: 600;
}

body.light-theme .podcast-track-item p {
    color: #1f2937;
}

.podcast-chips {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin-bottom: 0.9rem;
}

.podcast-chips span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: #c6d7e8;
    font-size: 0.75rem;
}

body.light-theme .podcast-chips span {
    background: #f3f4f6;
    border-color: #e5e7eb;
    color: #4b5563;
}

.podcast-play-btn {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 0.65rem 0.8rem;
    background: #f2ca18;
    color: #0b111a;
    font-weight: 700;
    cursor: pointer;
    margin-top: auto;
    transition: all 0.3s ease;
}

.podcast-play-btn:hover {
    background: #ffd84c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 202, 24, 0.4);
}

body.light-theme .podcast-play-btn {
    background: linear-gradient(135deg, #f2ca18 0%, #ffd84c 100%);
    box-shadow: 0 4px 12px rgba(242,202,24,0.3);
}

body.light-theme .podcast-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(242, 202, 24, 0.4);
}

/* SCROLLABLE SCHEDULE (New) */
.schedule-scroll-container {
    max-height: 500px;
    overflow-y: auto;
    background: #1b2936;
    border-radius: 20px;
    border: 1px solid #3f5566;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin: 2rem 0 3rem;
}

body.light-theme .schedule-scroll-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* small link used in schedule header to toggle views */
.schedule-toggle {
    text-decoration: underline;
    cursor: pointer;
    color: var(--accent);
}

body.light-theme .schedule-toggle {
    color: var(--accent);
}

.schedule-table { width: 100%; border-collapse: collapse; }

.schedule-table th {
    background: #233645;
    position: sticky;
    top: 0;
    padding: 1rem;
    text-align: left;
    font-size: 0.95rem;
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
    z-index: 2;
}

body.light-theme .schedule-table th {
    background: #f9fafb;
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.schedule-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #2e4355;
    font-size: 0.9rem;
    color: #e3eaf1;
}

body.light-theme .schedule-table td {
    border-bottom-color: #f3f4f6;
    color: #4b5563;
}

.schedule-table tr:hover { background: #1f2f3f; }

body.light-theme .schedule-table tr:hover {
    background: #f9fafb;
}

.schedule-table td:nth-child(1) { font-weight: 600; }
.schedule-table td:nth-child(2) { color: #b0c9dd; font-size: 0.85rem; }

body.light-theme .schedule-table td:nth-child(2) {
    color: #6b7280;
}

.schedule-table td:nth-child(3) { color: var(--accent); font-weight: 500; }
.schedule-table td:nth-child(4) { font-weight: 700; text-align: right; color: #f0d9c5; }

body.light-theme .schedule-table td:nth-child(4) {
    color: #111827;
}

/* Scrollbar styling */
.schedule-scroll-container::-webkit-scrollbar { width: 8px; }
.schedule-scroll-container::-webkit-scrollbar-track { background: #1b2936; }

body.light-theme .schedule-scroll-container::-webkit-scrollbar-track {
    background: #f3f4f6;
}

.schedule-scroll-container::-webkit-scrollbar-thumb { background: #3f5566; border-radius: 4px; }

body.light-theme .schedule-scroll-container::-webkit-scrollbar-thumb {
    background: #d1d5db;
}

.schedule-scroll-container::-webkit-scrollbar-thumb:hover { background: #d97c4a; }

/* Tabs */
.program-tabs {
    display: flex;
    gap: 1.5rem;
    margin: 3rem 0 1rem 0;
    border-bottom: 2px solid #2a3948;
    padding-bottom: 0.5rem;
}

body.light-theme .program-tabs {
    border-bottom-color: #dddddf;
    margin-top: 2.5rem;
}

.tab-btn {
    background: transparent;
    border: none;
    color: #8fa9bd;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-bottom: 4px solid transparent;
    transition: 0.3s;
    margin-bottom: -0.6rem;
}

body.light-theme .tab-btn {
    color: #6b7280;
    font-size: 1.08rem;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: var(--accent);
}

.tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

body.light-theme .tab-btn.active {
    color: #111827;
    border-bottom-color: var(--accent);
}

.tab-content {
    animation: fadeEffect 0.5s;
}

@keyframes fadeEffect {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}

/* Featured Card Styles */
.feature-content {
    background: var(--bg-card);
    padding: 24px;
}

body.light-theme .feature-content {
    background: #ffffff;
    padding: 1.5rem;
}

.feature-category {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.2rem 0.65rem;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

body.light-theme .feature-category {
    background: linear-gradient(135deg, var(--accent) 0%, #ffd84c 100%);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

.feature-content h2 {
    color: white !important;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

body.light-theme .feature-content h2 {
    color: #111827 !important;
}

.feature-excerpt {
    color: var(--text-dim);
    font-size: 1.03rem;
    margin-bottom: 0.5rem;
}

body.light-theme .feature-excerpt {
    color: #374151;
}

.feature-meta {
    color: var(--text-dim);
    gap: 1rem;
    display: flex;
}

body.light-theme .feature-meta {
    color: #4b5563;
}

.audio-badge {
    background: rgba(255,255,255,0.1);
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.85rem;
}

body.light-theme .audio-badge {
    background: #f9fafb;
    color: #111827;
    border: 1px solid #e5e7eb;
}

/* STICKY PLAYER */
.player-bar {
    position: fixed;
    bottom: 20px;
    left: 5%;
    right: 5%;
    height: 80px;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0 25px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    z-index: 2000;
    overflow: hidden;
}

body.light-theme .player-bar {
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid #e9ecef;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
}

.track-info { display: flex; align-items: center; width: 30%; gap: 15px; min-width: 0; }
.track-info img { width: 50px; height: 50px; border-radius: 12px; flex-shrink: 0; }
.track-meta { min-width: 0; overflow: hidden; }
.track-meta b { display: block; font-size: 0.9rem; color: var(--text-main); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.track-meta span { font-size: 0.8rem; color: var(--text-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }

body.light-theme .track-meta b {
    color: #111827;
}

body.light-theme .track-meta span {
    color: #6b7280;
}

.player-controls { flex: 1; display: flex; align-items: center; justify-content: center; gap: 20px; }

.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

body.light-theme .play-btn {
    background: linear-gradient(135deg, var(--accent) 0%, #ffd84c 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    color: #111827;
}

.play-btn:hover {
    transform: scale(1.1);
    background: white;
    color: var(--accent);
}

body.light-theme .play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.visualizer { display: flex; align-items: flex-end; gap: 3px; height: 20px; }
.bar { width: 3px; background: var(--accent); border-radius: 10px; animation: wave 1s ease-in-out infinite; }
.bar:nth-child(2) { height: 10px; animation-delay: 0.1s; }
.bar:nth-child(3) { height: 18px; animation-delay: 0.2s; }
.bar:nth-child(4) { height: 12px; animation-delay: 0.3s; }

@keyframes wave { 0%, 100% { height: 5px; } 50% { height: 20px; } }

.safeguarding-nav { display: flex; align-items: center; }

.safeguarding-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #dc3545;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid #dc3545;
}

.safeguarding-btn:hover {
    background: #c82333;
    border-color: #c82333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

/* SCHEDULE STYLES */
.schedule-view-toggle {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.view-btn {
    background: var(--bg-card);
    color: var(--text-dim);
    border: 2px solid transparent;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

body.light-theme .view-btn {
    background: #ffffff;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

body.light-theme .view-btn.active {
    background: var(--accent);
    color: #111827;
    border-color: var(--accent);
}

.view-btn:hover {
    transform: translateY(-2px);
}

body.light-theme .view-btn:hover {
    border-color: var(--accent);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.day-column {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color-light);
}

body.light-theme .day-column {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.day-header {
    background: var(--accent);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 700;
}

body.light-theme .day-header {
    background: linear-gradient(135deg, var(--accent) 0%, #ffd84c 100%);
    color: #111827;
}

.day-name-am { display: block; font-size: 1.1rem; }
.day-name-en { display: block; font-size: 0.75rem; opacity: 0.8; }

.day-programs {
    padding: 0.5rem;
    max-height: 500px;
    overflow-y: auto;
}

.schedule-item {
    background: rgba(255,255,255,0.03);
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent);
    transition: all 0.3s ease;
}

body.light-theme .schedule-item {
    background: #f8fafc;
}

.schedule-item:hover {
    background: rgba(250,204,21,0.1);
}

body.light-theme .schedule-item:hover {
    background: #f1f5f9;
}

.schedule-time {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.schedule-program {
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

body.light-theme .schedule-program {
    color: #2d3748;
}

.schedule-host {
    color: var(--text-dim);
    font-size: 0.8rem;
}

body.light-theme .schedule-host {
    color: #718096;
}

.no-program {
    text-align: center;
    color: var(--text-dim);
    padding: 2rem 0.5rem;
    font-size: 0.85rem;
}

/* Daily View */
.day-selector {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.day-btn {
    background: var(--bg-card);
    color: var(--text-dim);
    border: 2px solid rgba(255,255,255,0.05);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

body.light-theme .day-btn {
    background: #ffffff;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

body.light-theme .day-btn.active {
    background: var(--accent);
    color: #111827;
    border-color: var(--accent);
}

.day-btn:hover {
    border-color: var(--accent);
}

.daily-schedule {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color-light);
}

body.light-theme .daily-schedule {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.daily-item {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    align-items: center;
    transition: all 0.3s ease;
}

body.light-theme .daily-item {
    background: #f8fafc;
}

.daily-item:hover {
    background: rgba(250,204,21,0.1);
    transform: translateX(5px);
}

body.light-theme .daily-item:hover {
    background: #f1f5f9;
}

.daily-time {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 700;
    min-width: 100px;
}

.daily-content { flex: 1; }

.daily-program {
    color: var(--text-main);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

body.light-theme .daily-program {
    color: #2d3748;
}

.daily-program-en {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

body.light-theme .daily-program-en {
    color: #718096;
}

.daily-host {
    color: var(--text-dim);
    font-size: 0.9rem;
}

body.light-theme .daily-host {
    color: #718096;
}

.daily-host i { color: var(--accent); margin-right: 0.5rem; }

.no-program-large {
    text-align: center;
    color: var(--text-dim);
    padding: 4rem;
    font-size: 1.1rem;
}

.today-schedule {
    background: linear-gradient(135deg, rgba(250,204,21,0.12), rgba(30,41,59,0.9));
    border: 1px solid rgba(250,204,21,0.3);
    border-radius: 18px;
    padding: 1.4rem 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

body.light-theme .today-schedule {
    background: linear-gradient(135deg, rgba(255,107,53,0.15), rgba(255,255,255,0.95));
    border: 1px solid rgba(255,107,53,0.3);
}

.today-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

body.light-theme .today-header {
    color: #1a202c;
}

.today-header span { color: var(--accent); font-weight: 800; }

body.light-theme .today-header span {
    color: #ff6b35;
}

.today-marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.today-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: today-scroll 28s linear infinite;
}

.today-marquee:hover .today-track { animation-play-state: paused; }

.today-card {
    min-width: 260px;
    background: rgba(15,23,42,0.7);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    transform: translateZ(0);
    animation: today-float 4s ease-in-out infinite;
}

body.light-theme .today-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.today-card:nth-child(2n) { animation-delay: 0.6s; }
.today-card:nth-child(3n) { animation-delay: 1.2s; }

.today-time {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

body.light-theme .today-time {
    color: #ff6b35;
}

.today-program {
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

body.light-theme .today-program {
    color: #1a202c;
}

.today-host { color: var(--text-dim); font-size: 0.85rem; }

body.light-theme .today-host {
    color: #718096;
}

.today-empty {
    color: var(--text-dim);
    font-size: 0.95rem;
    padding: 0.6rem 0.2rem;
}

@keyframes today-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes today-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@media (max-width: 1200px) {
    .schedule-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .schedule-grid { grid-template-columns: repeat(2, 1fr); }
    .daily-item { flex-direction: column; gap: 1rem; align-items: flex-start; }
    .daily-time { min-width: auto; }
}

@media (max-width: 900px) {
    .featured-layout { grid-template-columns: 1fr; }
    .featured-layout > .main-feature-card,
    .featured-layout > .sidebar-wrapper,
    .left-podcast-stack {
        grid-column: auto;
        grid-row: auto;
    }
    .hero h1 { font-size: 2.2rem; }
    .player-bar { bottom: 0; left: 0; right: 0; border-radius: 0; }
}

.schedule-section {
    display: none;
}

/* Theme Card Helper Classes */
.theme-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color-light);
}

body.light-theme .theme-card {
    background: #fafafa;
    border: 1px solid #d1d5db;
}

.theme-text {
    color: #e3eaf1;
}

body.light-theme .theme-text {
    color: #111827;
}

.theme-text-dim {
    color: #8fa9bd;
}

body.light-theme .theme-text-dim {
    color: #6b7280;
}

.theme-input {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color-light);
    color: #fff;
}

body.light-theme .theme-input {
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: #111827;
}

/* Highlight Item */
.highlight-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color-light);
}

body.light-theme .highlight-item {
    background: #f8fafc !important;
    border: 1px solid #e5e7eb !important;
}

body.light-theme .highlight-item .guest-title {
    color: #6b7280 !important;
}

/* Sidebar Card Headers */
body.light-theme .sidebar-card h3 {
    color: #111827;
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* Demo Note */
.demo-note {
    background: rgba(255,255,255,0.05);
    color: var(--text-dim);
    padding: 0.5rem;
    border-radius: 8px;
}

body.light-theme .demo-note {
    background: #f5f5f5;
    color: #374151;
}

/* Market Widget */
body.light-theme .market-widget li {
    border-bottom-color: #edf2f7;
    color: #4a5568;
}

/* Schedule Tab Bar */
.schedule-tab-bar {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 16px;
    padding: 1.5rem;
    border-left: 5px solid var(--accent);
    margin: 2rem 0;
}

body.light-theme .schedule-tab-bar {
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-left: 5px solid var(--accent);
    box-shadow: none;
    margin: 1.5rem 0 1.8rem;
}

body.light-theme .schedule-tab-bar i {
    color: var(--accent);
}

body.light-theme .schedule-tab-bar h2 {
    color: #111827;
    font-size: 1.6rem;
}

.schedule-badge {
    background: rgba(255,255,255,0.1);
    color: var(--text-dim);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid var(--border-color-light);
}

body.light-theme .schedule-badge {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #374151;
}

/* Carousel Card */
.carousel-card .program-title {
    font-size: 1.35rem;
    line-height: 1.35;
}

/* Responsive Adjustments for Light Theme */
@media (max-width: 1100px) {
    body.light-theme .main-feature {
        grid-template-columns: 1fr;
    }
    body.light-theme .main-feature .feature-content {
        order: 2;
        border-right: none;
        border-top: 1px solid #ececec;
    }
    body.light-theme .main-feature .video-embed-container {
        order: 1;
        min-height: 300px;
    }
}

/* Light Theme Modal Styles */
body.light-theme .news-modal-content {
    background: #ffffff;
    color: #111827;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border: 2px solid #e5e7eb;
}

body.light-theme .news-modal-content span {
    color: #6b7280 !important;
}

body.light-theme .news-modal-content span:hover {
    color: #111827 !important;
}

body.light-theme #modalNewsTitle {
    color: #111827;
}

body.light-theme #modalNewsTime {
    color: #6b7280;
}

body.light-theme #modalNewsContent {
    color: #374151;
}

body.light-theme .ticker-modal-content {
    background: linear-gradient(135deg, #ff6b35, #ff8555);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

body.light-theme .ticker-modal-content span {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.light-theme .ticker-modal-content span:hover {
    color: #fff !important;
}

body.light-theme #modalTickerMessage {
    color: #fff;
}

