/* General Body and Layout */
body {
    background-color: #f0f2f5;
}

.container.page-content {
    display: grid;
    grid-template-columns: 200px 1fr 300px;
    gap: 20px;
    padding-top: 20px;
}

.left-sidebar, .right-sidebar {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.main-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 10px 0;
}

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

/* Player Section */
.player-section .player-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.radio-logo-main {
    width: 100px;
    height: 100px;
    border-radius: 8px;
}

.player-header h1 {
    font-size: 2rem;
    margin: 0;
}

.player-header .tagline {
    font-size: 1rem;
    color: #666;
}

.audio-player-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-button {
    background-color: #1877f2;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
}

.player-info {
    flex-grow: 1;
}

.now-playing {
    font-weight: 500;
    margin-bottom: 10px;
    /* Temporarily hidden as requested */
    display: none !important;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-control input[type="range"] {
    width: 150px;
}

/* Radio Info Section */
.radio-info {
    margin-top: 30px;
}

.station-about,
.station-freq {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
    margin: 24px 0;
}

.station-about h2,
.station-freq h2 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #222;
}

.station-about p {
    margin: 0;
    color: #444;
    line-height: 1.6;
    font-size: 15px;
}

.station-freq ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.station-freq li {
    background: #f1f3f5;
    border-radius: 999px;
    padding: 6px 14px;
    font-weight: 600;
    font-size: 13px;
    color: #2d3748;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1);
}

.station-freq li strong {
    margin-right: 6px;
    color: #4c51bf;
}

.description-card, .social-card, .frequencies-card, .comments-section {
    margin-bottom: 20px;
}

.radio-info h2, .radio-info h3 {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
}

.social-icon.facebook { background-color: #1877f2; }
.social-icon.instagram { background-color: #e4405f; }
.social-icon.twitter { background-color: #1da1f2; }
.social-icon.youtube { background-color: #ff0000; }
.social-icon.tiktok { background-color: #000; }

.frequencies-list {
    list-style: none;
    padding: 0;
    column-count: 2;
}

/* Right Sidebar */
.sidebar-widget {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.sidebar-widget h3 {
    font-size: 1.1rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.contact-widget p {
    margin: 5px 0;
}

.mobile-app-widget .app-links {
    display: flex;
    gap: 10px;
}

.mobile-app-widget img {
    height: 40px;
}

/* Responsive */
@media (max-width: 1200px) {
    .container.page-content {
        grid-template-columns: 1fr 300px; /* Remove left sidebar */
        grid-template-areas:
            "main right"
            "left right";
    }
    .left-sidebar { display: none; }
}

@media (max-width: 992px) {
    .container.page-content {
        grid-template-columns: 1fr; /* Stack main and right sidebar */
        grid-template-areas:
            "main"
            "right";
    }
}

@media (max-width: 768px) {
    .frequencies-list {
        column-count: 1;
    }
    .audio-player {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==============================================
   Magic FM Specific Styles
   ============================================== */

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 15px;
    padding: 5px 0;
    font-size: 13px;
    color: #666;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .current {
    color: #333;
    font-weight: 500;
}

/* Hero Section */
.radio-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    color: white;
}

.radio-main-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.radio-logo-container {
    position: relative;
}

.radio-main-logo {
    width: 140px;
    height: auto;
    max-height: 140px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.live-indicator {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4757;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.1);
    }
    100% { 
        opacity: 1; 
        transform: scale(1);
    }
}

.radio-title-section h1 {
    font-size: 1.6rem;
    margin: 0 0 6px 0;
    font-weight: 700;
}

.radio-slogan {
    font-size: 0.9rem;
    margin: 0 0 8px 0;
    opacity: 0.9;
    font-style: italic;
}

.radio-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.tag {
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.radio-stats {
    display: flex;
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stat-icon {
    font-size: 16px;
}

.stat-value {
    font-size: 18px;
    font-weight: bold;
}

.stat-label {
    font-size: 12px;
    opacity: 0.8;
}

/* Player Card */
.main-player-section {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: center;
}

.player-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: center;
}

.player-ad-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.player-ad-content {
    width: 100%;
    text-align: center;
}

.ad-label-small {
    font-size: 10px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.player-ad-banner {
    max-width: 100%;
    min-height: 50px;
}

.ad-placeholder-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px dashed rgba(255,255,255,0.3);
}

.ad-icon {
    font-size: 20px;
    opacity: 0.7;
}

.ad-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ad-text div:first-child {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

.ad-size {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
}

.current-track-info {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
}

.track-artwork {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
}

.track-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.track-artwork:hover .play-overlay {
    opacity: 1;
}

.main-play-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
}

.track-details {
    flex: 1;
}

.now-playing-label {
    font-size: 10px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
    /* Temporarily hidden as requested */
    display: none !important;
}

.current-track-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

.current-track-artist {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.track-time {
    font-size: 10px;
    opacity: 0.7;
}

/* Player Controls */
.player-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.primary-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.control-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 8px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.volume-section {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.volume-label {
    font-size: 12px;
    opacity: 0.8;
    white-space: nowrap;
}

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

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.volume-display {
    font-size: 10px;
    opacity: 0.8;
    min-width: 30px;
}

.stream-quality {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.stream-quality label {
    font-size: 12px;
    opacity: 0.8;
    white-space: nowrap;
}

.stream-quality select {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 11px;
}

.stream-quality option {
    background: #333;
    color: white;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

/* About Section */
.about-section {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.about-section h2 {
    color: #333;
    margin-bottom: 12px;
    font-size: 18px;
}

.about-content p {
    line-height: 1.4;
    color: #666;
    margin-bottom: 12px;
    font-size: 13px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.highlight-item {
    text-align: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 20px;
    margin-bottom: 8px;
}

.highlight-item h3 {
    font-size: 12px;
    margin-bottom: 6px;
    color: #333;
}

.highlight-item p {
    font-size: 11px;
    color: #666;
    margin: 0;
}

/* Schedule Section */
.schedule-section {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.schedule-section h2 {
    color: #333;
    margin-bottom: 12px;
    font-size: 18px;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.schedule-item {
    display: flex;
    align-items: center;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.schedule-item.current {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.schedule-item:hover:not(.current) {
    background: #e9ecef;
    transform: translateX(5px);
}

.schedule-item .time {
    font-weight: 600;
    min-width: 100px;
    font-size: 12px;
}

.schedule-item .show {
    font-weight: 600;
    flex: 1;
    margin: 0 10px;
    font-size: 14px;
}

.schedule-item .host {
    font-size: 12px;
    opacity: 0.8;
}

/* Playlist Section */
.playlist-section {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.playlist-section h2 {
    color: #333;
    margin-bottom: 12px;
    font-size: 18px;
}

.playlist-header {
    display: grid;
    grid-template-columns: 50px 1fr 1fr 40px;
    gap: 8px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 6px;
    font-weight: 600;
    font-size: 11px;
    color: #666;
    margin-bottom: 8px;
}

.recent-tracks {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.track-item {
    display: grid;
    grid-template-columns: 50px 1fr 1fr 40px;
    gap: 8px;
    padding: 8px;
    background: white;
    border: 1px solid #eee;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-items: center;
}

.track-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.track-time {
    font-weight: 600;
    color: #667eea;
    font-size: 12px;
}

.track-name {
    font-weight: 500;
    color: #333;
    font-size: 13px;
}

.track-artist {
    color: #666;
    font-size: 12px;
}

.track-action {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #ddd;
    transition: color 0.3s ease;
}

.track-action:hover {
    color: #e91e63;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-card {
    background: white;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: #333;
    margin-bottom: 12px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
}

/* Contact Card */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.contact-icon {
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Frequencies Card */
.frequencies-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.freq-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 6px;
}

.city {
    font-weight: 500;
    color: #333;
    font-size: 13px;
}

.frequency {
    font-weight: 600;
    color: #667eea;
    font-size: 12px;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-link:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.social-icon {
    font-size: 20px;
    width: 30px;
    text-align: center;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.copy {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.share-icon {
    font-size: 16px;
}

/* Ad Container */
.ad-container {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed #ddd;
}

.ad-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.ad-content {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
}

.ad-placeholder {
    color: #999;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .radio-main-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .radio-title-section h1 {
        font-size: 1.8rem;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 768px) {
    .radio-hero-section {
        padding: 12px;
    }
    
    .radio-main-logo {
        width: 110px;
        max-height: 110px;
    }
    
    .radio-title-section h1 {
        font-size: 1.4rem;
    }
    
    .main-player-section {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .player-card {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .player-ad-card {
        min-height: 60px;
    }
    
    .player-controls {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
    
    .current-track-info {
        flex-direction: column;
        text-align: center;
    }
    
    .playlist-header,
    .track-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .track-action {
        justify-self: center;
    }
    
    .schedule-item {
        flex-direction: column;
        text-align: center;
        gap: 2px;
    }
    
    .schedule-item .time,
    .schedule-item .show,
    .schedule-item .host {
        margin: 0;
    }
    
    .radio-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-section,
    .schedule-section,
    .playlist-section {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .radio-title-section h1 {
        font-size: 1.4rem;
    }
    
    .radio-tags {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .info-card {
        padding: 12px;
    }
    
    .about-section,
    .schedule-section,
    .playlist-section {
        padding: 12px;
    }
    
    .radio-hero-section {
        padding: 12px;
    }
}

/* ==============================================
   Dark Mode Styles
   ============================================== */

/* Dark Mode Toggle */
.dark-mode-toggle {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.dark-mode-checkbox {
    display: none;
}

.dark-mode-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.dark-mode-inner {
    position: relative;
    width: 50px;
    height: 24px;
    background: #ccc;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-right: 8px;
}

.dark-mode-switch {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.dark-mode-checkbox:checked + .dark-mode-label .dark-mode-inner {
    background: #667eea;
}

.dark-mode-checkbox:checked + .dark-mode-label .dark-mode-switch {
    transform: translateX(26px);
}

.dark-mode-text {
    font-size: 18px;
    transition: all 0.3s ease;
}

.dark-mode-checkbox:checked + .dark-mode-label .dark-mode-text {
    filter: brightness(1.2);
}

/* Dark Mode Theme Variables */
:root {
    --bg-primary: #f0f2f5;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --text-primary: #333333;
    --text-secondary: #666666;
    --border-color: #eeeeee;
    --shadow-light: rgba(0,0,0,0.1);
    --shadow-medium: rgba(0,0,0,0.15);
    --header-bg: #ffffff;
    --gradient-start: #667eea;
    --gradient-end: #764ba2;
}

[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-card: #3a3a3a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --border-color: #555555;
    --shadow-light: rgba(0,0,0,0.3);
    --shadow-medium: rgba(0,0,0,0.5);
    --header-bg: #2d2d2d;
    --gradient-start: #4a5c96;
    --gradient-end: #5a3d7a;
}

/* Apply Dark Mode Variables with smooth transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

header {
    background-color: var(--header-bg);
    box-shadow: 0 2px 4px var(--shadow-light);
}

header .container a {
    color: var(--text-primary);
}

header nav ul li a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: var(--text-primary);
}

.main-content, .left-sidebar, .right-sidebar {
    background-color: var(--bg-secondary);
    box-shadow: 0 1px 3px var(--shadow-light);
}

/* Radio Hero Section Dark Mode */
.radio-hero-section {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

/* Cards Dark Mode */
.about-section, .schedule-section, .playlist-section, .info-card {
    background: var(--bg-card);
    color: var(--text-primary);
    box-shadow: 0 2px 10px var(--shadow-light);
}

.about-section h2, .schedule-section h2, .playlist-section h2, .info-card h3 {
    color: var(--text-primary);
    border-bottom-color: var(--border-color);
}

.about-content p {
    color: var(--text-secondary);
}

/* Highlight Items Dark Mode */
.highlight-item {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.highlight-item h3 {
    color: var(--text-primary);
}

.highlight-item p {
    color: var(--text-secondary);
}

/* Schedule Dark Mode */
.schedule-item {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.schedule-item:hover:not(.current) {
    background: var(--border-color);
}

.schedule-item .host {
    color: var(--text-secondary);
}

/* Playlist Dark Mode */
.playlist-header {
    background: var(--bg-primary);
    color: var(--text-secondary);
}

.track-item {
    background: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.track-item:hover {
    background: var(--bg-primary);
}

.track-artist {
    color: var(--text-secondary);
}

/* Frequency Items Dark Mode */
.freq-item {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.city {
    color: var(--text-primary);
}

/* Social Links Dark Mode */
.social-link {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.social-link:hover {
    background: var(--border-color);
}

/* Contact Items Dark Mode */
.contact-item {
    color: var(--text-primary);
}

.contact-info a {
    color: #667eea;
}

/* Share Buttons Dark Mode */
.share-btn.copy {
    background: var(--bg-primary);
    color: var(--text-primary);
    border-color: var(--border-color);
}

/* Ad Container Dark Mode */
.ad-container {
    background: var(--bg-primary);
    border-color: var(--border-color);
}

.ad-content {
    background: var(--bg-card);
}

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

.ad-label {
    color: var(--text-secondary);
}

/* Player Ad Card Dark Mode */
.player-ad-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

[data-theme="dark"] .player-ad-card {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.ad-placeholder-small {
    background: rgba(255,255,255,0.05);
    border: 1px dashed rgba(255,255,255,0.3);
}

[data-theme="dark"] .ad-placeholder-small {
    background: rgba(0,0,0,0.2);
    border: 1px dashed rgba(255,255,255,0.2);
}

/* Player Card Dark Mode */
.player-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

[data-theme="dark"] .player-card {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Responsive adjustments for dark mode toggle */
@media (max-width: 768px) {
    .dark-mode-toggle {
        margin-left: 10px;
        margin-top: 10px;
    }
    
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    header nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    header nav ul {
        margin: 0;
    }
}
