/* Digital West Radio - Main Styles */
:root {
    --neon-red: rgb(255, 50, 80);
    --neon-blue: rgb(0, 180, 255);
    --neon-pink: rgb(255, 100, 150);
    --neon-yellow: rgb(255, 220, 0);
    --neon-orange: rgb(255, 140, 50);
    --beer-amber: rgb(255, 180, 50);
    --bar-dark: rgb(15, 10, 20);
    --bar-mid: rgb(30, 20, 35);
    --white: rgb(255, 255, 255);
    --text-primary: rgb(255, 255, 255);
    --text-secondary: rgb(180, 170, 190);
    --text-accent: rgb(255, 220, 0);
    --bg-primary: rgb(15, 10, 20);
    --bg-secondary: rgb(25, 18, 30);
    --bg-card: rgb(20, 15, 30, 0.85);
    --bg-card-hover: rgb(35, 25, 50, 0.9);
    --border-color: rgb(80, 50, 90);
    --glow-red: 0 0 20px rgb(255, 50, 80, 0.5), 0 0 40px rgb(255, 50, 80, 0.3);
    --glow-blue: 0 0 20px rgb(0, 180, 255, 0.5), 0 0 40px rgb(0, 180, 255, 0.3);
    --glow-yellow: 0 0 20px rgb(255, 220, 0, 0.5), 0 0 40px rgb(255, 220, 0, 0.3);
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Inter', sans-serif;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1)
}

[data-theme="light"] {
    --bg-primary: rgb(250, 248, 252);
    --bg-secondary: rgb(240, 235, 245);
    --bg-card: rgb(255, 255, 255, 0.92);
    --bg-card-hover: rgb(250, 248, 255, 0.95);
    --text-primary: rgb(30, 20, 40);
    --text-secondary: rgb(80, 60, 100);
    --text-accent: rgb(200, 50, 80);
    --border-color: rgb(220, 210, 230);
    --neon-red: rgb(220, 40, 70);
    --neon-blue: rgb(0, 140, 200);
}

[data-mode="tv"] body { overflow: hidden }
[data-mode="tv"] .tv-container-DISABLED { width: 100vw; height: 100vh; max-width: 177.78vh; max-height: 56.25vw; margin: auto; position: absolute; inset: 0; display: flex; flex-direction: column }
[data-mode="tv"] .content-grid, [data-mode="tv"] footer { display: none }
[data-mode="tv"] .now-playing { max-width: 1200px; margin-left: auto; margin-right: auto; margin: 0; border-radius: 0; flex: 1; display: flex; flex-direction: column; justify-content: center }
[data-mode="tv"] .album-art { width: 350px; height: 350px }
[data-mode="tv"] .track-title { font-size: 4rem }
[data-mode="tv"] .track-artist { font-size: 2.5rem }
[data-mode="tv"] .play-button { width: 100px; height: 100px }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body { font-family: var(--font-body); background: var(--bg-primary); color: var(--text-primary); min-height: 100vh; overflow-x: hidden; transition: background 0.8s, color 0.4s; line-height: 1.6 }

/* Background */
.bg-container { position: fixed; inset: 0; z-index: -1; overflow: hidden }

.bg-scene { 
    position: absolute; 
    inset: 0; 
    background: 
        radial-gradient(ellipse 120% 80% at 30% 100%, rgb(40, 15, 25) 0%, transparent 50%),
        radial-gradient(ellipse 100% 60% at 70% 100%, rgb(25, 10, 30) 0%, transparent 45%),
        linear-gradient(180deg, rgb(8, 5, 15) 0%, rgb(15, 10, 20) 50%, rgb(20, 12, 25) 100%);
}

.bg-overlay { 
    position: absolute; 
    inset: 0; 
    background: 
        linear-gradient(135deg, rgb(255, 50, 80, 0.03) 0%, transparent 40%),
        linear-gradient(225deg, rgb(0, 180, 255, 0.02) 0%, transparent 40%),
        linear-gradient(180deg, transparent 60%, rgb(255, 80, 50, 0.05) 100%);
}

.bg-grid { 
    position: absolute; 
    inset: 0; 
    background-image: 
        linear-gradient(rgb(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgb(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(180deg, transparent 0%, rgb(0, 0, 0, 0.5) 30%, rgb(0, 0, 0, 0.3) 70%, transparent 100%);
}

.bg-neon-spots {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 15% 85%, rgb(255, 50, 80, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 85% 20%, rgb(0, 180, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgb(255, 140, 50, 0.05) 0%, transparent 30%);
    animation: neonPulse 8s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    0% { opacity: 0.6 }
    100% { opacity: 1 }
}

.bg-vignette { 
    position: absolute; 
    inset: 0; 
    background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, rgb(5, 2, 10, 0.6) 100%);
}

[data-theme="light"] .bg-scene { background: linear-gradient(180deg, rgb(250, 248, 252) 0%, rgb(245, 240, 250) 100%) }
[data-theme="light"] .bg-overlay { background: radial-gradient(ellipse at 30% 20%, rgb(255, 200, 210, 0.3) 0%, transparent 50%) }
[data-theme="light"] .bg-grid { background-image: linear-gradient(rgb(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgb(0, 0, 0, 0.03) 1px, transparent 1px); mask-image: none }
[data-theme="light"] .bg-neon-spots { opacity: 0.3 }
[data-theme="light"] .bg-vignette { background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgb(240, 235, 250, 0.5) 100%) }

/* Dedications Marquee */
.dedications-marquee { 
    background: linear-gradient(90deg, var(--neon-red), var(--neon-orange), var(--neon-pink), var(--neon-red)); 
    padding: var(--space-xs) 0; 
    overflow: hidden; 
    white-space: nowrap;
    position: relative;
}
.dedications-marquee::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 80px; background: linear-gradient(90deg, var(--neon-red), transparent); z-index: 1 }
.dedications-marquee::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 80px; background: linear-gradient(270deg, var(--neon-red), transparent); z-index: 1 }
.marquee-content { 
    display: inline-flex; 
    animation: marqueeScroll 60s linear infinite;
    padding-left: 100%;
}
@keyframes marqueeScroll { 0% { transform: translateX(0) } 100% { transform: translateX(-50%) } }
.dedication-item { 
    display: inline-flex; 
    align-items: center; 
    gap: var(--space-sm); 
    padding: 0 var(--space-xl); 
    font-size: 0.85rem; 
    color: var(--white); 
    font-weight: 500;
}
.dedication-item svg { width: 14px; height: 14px; fill: var(--white); flex-shrink: 0 }
.dedication-item .song { font-weight: 700 }
.dedication-item .person { font-style: italic; color: rgb(255, 255, 255, 0.9) }

/* Header */
header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: var(--space-lg) var(--space-xl); 
    position: relative; 
    z-index: 10;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.logo-section { display: flex; align-items: center; gap: var(--space-md) }
.logo { 
    display: flex; 
    align-items: center; 
    justify-content: center;
}
.logo-image {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgb(255, 50, 80, 0.5));
}
.logo-text { 
    font-family: var(--font-display); 
    font-size: 2.5rem; 
    letter-spacing: 3px; 
    color: var(--neon-red); 
    text-shadow: 0 0 20px rgb(255, 50, 80, 0.6); 
    line-height: 1;
}
.station-name h1 { 
    font-family: var(--font-heading); 
    font-size: 1.5rem; 
    font-weight: 600; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    color: var(--text-primary); 
    margin-bottom: 2px;
}
.station-name .tagline { 
    font-size: 0.8rem; 
    color: var(--text-secondary); 
    letter-spacing: 1px;
}

.header-controls { display: flex; align-items: center; gap: var(--space-md); flex-wrap: wrap }
.request-button { 
    display: flex; 
    align-items: center; 
    gap: var(--space-sm); 
    background: linear-gradient(135deg, var(--neon-red), var(--neon-orange)); 
    border: none; 
    border-radius: 6px; 
    padding: var(--space-sm) var(--space-md); 
    cursor: pointer; 
    color: var(--white); 
    font-family: var(--font-body); 
    font-weight: 600; 
    font-size: 0.9rem; 
    transition: all var(--transition-smooth); 
    box-shadow: 0 4px 15px rgb(255, 80, 50, 0.3);
}
.request-button:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgb(255, 80, 50, 0.5) }
.request-button svg { width: 18px; height: 18px; fill: currentColor }
.cast-button { 
    display: flex; 
    align-items: center; 
    gap: var(--space-sm); 
    background: transparent; 
    border: 2px solid var(--neon-blue); 
    border-radius: 6px; 
    padding: var(--space-sm) var(--space-md); 
    cursor: pointer; 
    color: var(--neon-blue); 
    font-family: var(--font-body); 
    font-size: 0.9rem; 
    transition: all var(--transition-smooth);
}
.cast-button:hover { background: var(--neon-blue); color: var(--bar-dark) }
.cast-button svg { width: 20px; height: 20px; fill: currentColor }
.cast-button.casting { background: var(--neon-blue); color: var(--bar-dark) }

.theme-toggle { display: flex; align-items: center; gap: var(--space-sm) }
.theme-toggle-label { font-size: 0.75rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px }
.toggle-switch { 
    position: relative; 
    width: 60px; 
    height: 30px; 
    background: var(--bg-card); 
    border-radius: 15px; 
    cursor: pointer; 
    border: 2px solid var(--border-color); 
    transition: all var(--transition-smooth);
}
.toggle-switch::before { 
    content: ''; 
    position: absolute; 
    top: 2px; 
    left: 2px; 
    width: 22px; 
    height: 22px; 
    background: linear-gradient(135deg, var(--neon-red), var(--neon-orange)); 
    border-radius: 50%; 
    transition: all var(--transition-smooth); 
    box-shadow: 0 0 10px rgb(255, 100, 50, 0.5);
}
[data-theme="light"] .toggle-switch::before { transform: translateX(30px); background: linear-gradient(135deg, var(--neon-yellow), var(--beer-amber)) }
.toggle-switch .theme-icon { position: absolute; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; transition: opacity var(--transition-fast) }
.toggle-switch .moon-icon { left: 6px; fill: var(--neon-blue); opacity: 1 }
.toggle-switch .sun-icon { right: 6px; fill: var(--neon-yellow); opacity: 0.4 }
[data-theme="light"] .toggle-switch .moon-icon { opacity: 0.4 }
[data-theme="light"] .toggle-switch .sun-icon { opacity: 1 }

/* Main Content */
main { max-width: 1400px; margin: 0 auto; padding: var(--space-xl) }

/* Now Playing Section */
.now-playing { max-width: 1200px; margin-left: auto; margin-right: auto; 
    position: relative; 
    background: var(--bg-card); 
    border-radius: 16px; 
    padding: var(--space-xl); 
    margin-bottom: var(--space-xl); 
    border: 1px solid rgb(255, 100, 80, 0.3); 
    box-shadow: 0 0 40px rgb(255, 80, 50, 0.1), inset 0 1px 0 rgb(255, 255, 255, 0.05); 
    overflow: hidden; 
    backdrop-filter: blur(20px);
}
.now-playing::before { 
    content: 'NOW PLAYING'; 
    position: absolute; 
    top: var(--space-md); 
    left: var(--space-lg); 
    font-family: var(--font-display); 
    font-size: 0.9rem; 
    letter-spacing: 4px; 
    color: var(--neon-red); 
    text-shadow: 0 0 10px rgb(255, 50, 80, 0.8); 
    animation: neonFlicker 3s ease-in-out infinite;
}
@keyframes neonFlicker { 0%, 100% { opacity: 1 } 50% { opacity: 0.8 } 92% { opacity: 1 } 93% { opacity: 0.4 } 94% { opacity: 1 } }
.now-playing::after { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    height: 2px; 
    background: linear-gradient(90deg, transparent, var(--neon-red), var(--neon-orange), var(--neon-blue), transparent);
}

.now-playing-header { 
    display: flex; 
    align-items: center; 
    gap: var(--space-md); 
    margin-bottom: var(--space-lg); 
    margin-top: var(--space-lg); 
    flex-wrap: wrap;
}
.live-indicator { 
    display: flex; 
    align-items: center; 
    gap: var(--space-xs); 
    background: rgb(255, 50, 80, 0.2); 
    padding: var(--space-xs) var(--space-md); 
    border-radius: 4px; 
    border: 1px solid var(--neon-red);
}
.live-dot { 
    width: 8px; 
    height: 8px; 
    background: #ff3250; 
    border-radius: 50%; 
    box-shadow: 0 0 10px var(--neon-red); 
    animation: livePulse 1s ease-in-out infinite;
}
@keyframes livePulse { 0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--neon-red) } 50% { opacity: 0.5; box-shadow: 0 0 20px var(--neon-red) } }
.live-text { font-family: var(--font-display); font-size: 0.8rem; color: var(--neon-red); letter-spacing: 3px; text-shadow: 0 0 8px rgb(255, 50, 80, 0.8) }
.show-info { font-size: 1rem; color: var(--text-secondary) }
.show-info strong { color: var(--neon-orange); text-shadow: 0 0 8px rgb(255, 140, 50, 0.5) }

.now-playing-content { display: grid; grid-template-columns: auto 1fr auto; gap: var(--space-xl); align-items: center }

.album-art { 
    position: relative; 
    width: 220px; 
    height: 220px; 
    border-radius: 8px; 
    overflow: hidden; 
    box-shadow: 0 10px 40px rgb(0, 0, 0, 0.5), 0 0 30px rgb(255, 80, 50, 0.2); 
    border: 2px solid rgb(255, 255, 255, 0.1);
}
.album-art img { width: 100%; height: 100%; object-fit: cover }
.album-art .vinyl-overlay { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(135deg, rgb(255, 255, 255, 0.15) 0%, transparent 50%, rgb(0, 0, 0, 0.2) 100%); 
    pointer-events: none;
}
.album-art .now-playing-indicator { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    padding: var(--space-sm); 
    background: linear-gradient(transparent, rgb(0, 0, 0, 0.85)); 
    display: flex; 
    align-items: flex-end; 
    justify-content: center; 
    gap: 3px; 
    height: 50px;
}
.album-art .eq-bar { 
    width: 4px; 
    background: var(--neon-orange); 
    border-radius: 2px; 
    box-shadow: 0 0 6px var(--neon-orange); 
    animation: eqBounce 0.5s ease-in-out infinite alternate;
}
.album-art .eq-bar:nth-child(1) { height: 15px; animation-delay: 0s }
.album-art .eq-bar:nth-child(2) { height: 25px; animation-delay: 0.1s }
.album-art .eq-bar:nth-child(3) { height: 18px; animation-delay: 0.2s }
.album-art .eq-bar:nth-child(4) { height: 30px; animation-delay: 0.3s }
.album-art .eq-bar:nth-child(5) { height: 22px; animation-delay: 0.4s }
.album-art .eq-bar:nth-child(6) { height: 28px; animation-delay: 0.5s }
.album-art .eq-bar:nth-child(7) { height: 16px; animation-delay: 0.6s }
@keyframes eqBounce { 0% { transform: scaleY(0.3) } 100% { transform: scaleY(1) } }
.paused .eq-bar { animation-play-state: paused; opacity: 0.4 }

.track-info { display: flex; flex-direction: column; gap: var(--space-sm) }
.track-title { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3rem); font-weight: 600; color: var(--white); letter-spacing: 1px }
.track-artist { font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: var(--neon-orange); font-weight: 500; text-shadow: 0 0 15px rgb(255, 140, 50, 0.4) }
.track-album { font-size: 1rem; color: var(--text-secondary); font-style: italic }

.player-controls { display: flex; flex-direction: column; align-items: center; gap: var(--space-md) }
.play-button { 
    width: 70px; 
    height: 70px; 
    border-radius: 50%; 
    border: 3px solid var(--neon-red); 
    background: transparent; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: var(--glow-red); 
    transition: all var(--transition-smooth);
}
.play-button:hover { background: #ff3250; box-shadow: 0 0 40px rgb(255, 50, 80, 0.7) }
.play-button:hover svg { fill: var(--bar-dark) }
.play-icon, .pause-icon { width: 28px; height: 28px; fill: var(--neon-red); transition: fill var(--transition-fast) }
.pause-icon { display: none }
.playing .play-icon { display: none }
.playing .pause-icon { display: block }



















/* Content Grid */
.content-grid { display: grid; grid-template-columns: repeat(2, 1fr); max-width: 1200px; margin: 0 auto; gap: var(--space-lg) }
.card { 
    background: var(--bg-card); 
    border-radius: 12px; 
    padding: var(--space-lg); 
    border: 1px solid var(--border-color); 
    transition: all var(--transition-smooth); 
    backdrop-filter: blur(20px);
}
.card:hover { border-color: rgb(255, 100, 80, 0.5); box-shadow: 0 0 30px rgb(255, 80, 50, 0.1) }
.card-header { 
    display: flex; 
    align-items: center; 
    gap: var(--space-sm); 
    margin-bottom: var(--space-lg); 
    padding-bottom: var(--space-md); 
    border-bottom: 1px solid var(--border-color);
}
.card-icon { width: 22px; height: 22px; fill: var(--neon-blue); filter: drop-shadow(0 0 6px rgb(0, 180, 255, 0.6)) }
.card-title { 
    font-family: var(--font-heading); 
    font-size: 1.2rem; 
    font-weight: 500; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    color: var(--neon-blue); 
    text-shadow: 0 0 10px rgb(0, 180, 255, 0.4);
}

/* Track List */
.track-list { display: flex; flex-direction: column; gap: var(--space-sm) }
.track-item { 
    display: flex; 
    align-items: center; 
    gap: var(--space-md); 
    padding: var(--space-sm); 
    border-radius: 8px; 
    transition: all var(--transition-fast); 
    cursor: pointer;
}
.track-item:hover { background: rgb(255, 100, 80, 0.1); border-left: 2px solid var(--neon-orange) }
.track-thumb { width: 50px; height: 50px; border-radius: 4px; overflow: hidden; flex-shrink: 0; box-shadow: 0 2px 10px rgb(0, 0, 0, 0.3) }
.track-thumb img { width: 100%; height: 100%; object-fit: cover }
.track-details { flex: 1; min-width: 0 }
.track-details .name { font-weight: 600; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 0.95rem }
.track-details .artist { font-size: 0.8rem; color: var(--text-secondary) }
.track-time { font-size: 0.75rem; color: var(--neon-blue); font-family: var(--font-heading); letter-spacing: 1px }

/* Schedule List */
.schedule-list { display: flex; flex-direction: column; gap: var(--space-sm) }
.schedule-item { 
    display: grid; 
    grid-template-columns: 90px 1fr; 
    gap: var(--space-md); 
    padding: var(--space-sm); 
    border-radius: 8px; 
    transition: all var(--transition-fast);
}
.schedule-item:hover { background: rgb(0, 180, 255, 0.1) }
.schedule-item.active { background: rgb(255, 100, 80, 0.15); border-left: 2px solid var(--neon-orange) }
.schedule-time { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 500; color: var(--neon-orange); letter-spacing: 1px }
.schedule-details .show-name { font-weight: 600; margin-bottom: 2px; font-size: 0.95rem }
.schedule-details .dj-name { font-size: 0.8rem; color: var(--text-secondary) }

/* Footer */
footer { 
    margin-top: var(--space-xl); 
    padding: var(--space-xl); 
    background: rgb(12, 8, 18, 0.95); 
    border-top: 1px solid var(--border-color); 
    backdrop-filter: blur(20px);
}
.footer-content { max-width: 1400px; margin: 0 auto }
.footer-top { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: var(--space-xl); 
    margin-bottom: var(--space-xl); 
    padding-bottom: var(--space-xl); 
    border-bottom: 1px solid var(--border-color);
}
.footer-section h4 { 
    font-family: var(--font-heading); 
    font-size: 1rem; 
    font-weight: 500; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    color: var(--neon-red); 
    text-shadow: 0 0 8px rgb(255, 50, 80, 0.5); 
    margin-bottom: var(--space-md);
}
.footer-section p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8 }
.footer-link { 
    font-size: 0.9rem; 
    color: var(--text-secondary); 
    line-height: 2; 
    text-decoration: none; 
    display: block; 
    cursor: pointer; 
    background: none; 
    border: none; 
    padding: 0; 
    font-family: var(--font-body); 
    text-align: left; 
    transition: color var(--transition-fast);
}
.footer-link:hover { color: var(--neon-orange) }
.footer-logo { 
    font-family: var(--font-display); 
    font-size: 1.3rem; 
    letter-spacing: 4px; 
    color: var(--neon-red); 
    text-shadow: 0 0 10px rgb(255, 50, 80, 0.6); 
    margin-bottom: var(--space-sm);
}
.footer-tagline { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: var(--space-md) }

.social-links { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-bottom: var(--space-md) }
.social-link { 
    width: 38px; 
    height: 38px; 
    border-radius: 6px; 
    background: transparent; 
    border: 1px solid var(--border-color); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: all var(--transition-smooth); 
    text-decoration: none;
}
.social-link:hover { border-color: var(--neon-blue); box-shadow: var(--glow-blue) }
.social-link svg { width: 18px; height: 18px; fill: var(--text-secondary); transition: fill var(--transition-fast) }
.social-link:hover svg { fill: var(--neon-blue) }

.app-badges { display: flex; gap: var(--space-sm); flex-wrap: wrap }
.app-badge {
     
    display: flex; 
    align-items: center; 
    gap: var(--space-sm); 
    padding: var(--space-sm) var(--space-md); 
    background: rgb(255, 255, 255, 0.05); 
    border: 1px solid var(--border-color); 
    border-radius: 8px; 
    text-decoration: none; 
    transition: all var(--transition-smooth);
}
.app-badge:hover { background: rgb(255, 255, 255, 0.1); border-color: var(--neon-blue) }
.app-badge svg { width: 24px; height: 24px; fill: var(--text-secondary) }
.app-badge-text { display: flex; flex-direction: column }
.app-badge-text .small { font-size: 0.6rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px }
.app-badge-text .store { font-size: 0.85rem; color: var(--text-primary); font-weight: 600 }

.footer-bottom { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: var(--space-md);
}
.copyright { font-size: 0.8rem; color: var(--text-secondary) }
.powered-by { font-size: 0.75rem; color: var(--text-secondary); margin-top: var(--space-xs) }
.powered-by a { color: var(--neon-blue); text-decoration: none }
.powered-by a:hover { text-decoration: underline }

/* Modals */
.modal { 
    position: fixed; 
    inset: 0; 
    background: rgb(0, 0, 0, 0.8); 
    backdrop-filter: blur(10px); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    z-index: 1000; 
    opacity: 0; 
    visibility: hidden; 
    transition: all var(--transition-smooth);
    padding: var(--space-md);
}
.modal.active { opacity: 1; visibility: visible }
.modal-content { 
    background: var(--bg-secondary); 
    border-radius: 16px; 
    padding: var(--space-xl); 
    max-width: 500px; 
    width: 100%; 
    max-height: 90vh; 
    overflow-y: auto; 
    position: relative; 
    border: 1px solid var(--border-color); 
    box-shadow: 0 20px 60px rgb(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform var(--transition-smooth);
}
.modal.active .modal-content { transform: translateY(0) }
.modal-content.large { max-width: 700px }
.modal-close { 
    position: absolute; 
    top: var(--space-md); 
    right: var(--space-md); 
    background: none; 
    border: none; 
    cursor: pointer; 
    padding: var(--space-xs);
}
.modal-close svg { width: 24px; height: 24px; fill: var(--text-secondary); transition: fill var(--transition-fast) }
.modal-close:hover svg { fill: var(--neon-red) }
.modal-content h3 { 
    font-family: var(--font-heading); 
    font-size: 1.5rem; 
    font-weight: 600; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    color: var(--neon-orange); 
    margin-bottom: var(--space-lg);
}
.modal-body { color: var(--text-secondary); line-height: 1.8 }
.modal-body h4 { 
    font-family: var(--font-heading); 
    font-size: 1.1rem; 
    color: var(--text-primary); 
    margin: var(--space-lg) 0 var(--space-sm);
}
.modal-body h4:first-child { margin-top: 0 }
.modal-body p { margin-bottom: var(--space-sm) }
.modal-body a { color: var(--neon-blue) }
.legal-date { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: var(--space-lg) }

/* Request Form */
.request-form { display: flex; flex-direction: column; gap: var(--space-md) }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md) }
.form-group { display: flex; flex-direction: column; gap: var(--space-xs) }
.form-group label { font-size: 0.85rem; color: var(--text-secondary); font-weight: 500 }
.form-group input, .form-group select, .form-group textarea { 
    padding: var(--space-sm) var(--space-md); 
    background: var(--bg-card); 
    border: 1px solid var(--border-color); 
    border-radius: 6px; 
    color: var(--text-primary); 
    font-family: var(--font-body); 
    font-size: 0.95rem; 
    transition: all var(--transition-fast);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { 
    outline: none; 
    border-color: var(--neon-orange); 
    box-shadow: 0 0 0 2px rgb(255, 140, 50, 0.2);
}
.form-group textarea { min-height: 80px; resize: vertical }
.submit-button { 
    background: linear-gradient(135deg, var(--neon-red), var(--neon-orange)); 
    border: none; 
    border-radius: 6px; 
    padding: var(--space-md); 
    color: var(--white); 
    font-family: var(--font-body); 
    font-weight: 600; 
    font-size: 1rem; 
    cursor: pointer; 
    transition: all var(--transition-smooth);
}
.submit-button:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgb(255, 80, 50, 0.5) }
.request-note { font-size: 0.8rem; color: var(--text-secondary); text-align: center; margin-top: var(--space-sm) }

/* Cast Options */
.cast-options { display: flex; flex-direction: column; gap: var(--space-sm) }
.cast-option { 
    display: flex; 
    align-items: center; 
    gap: var(--space-md); 
    padding: var(--space-md); 
    background: var(--bg-card); 
    border: 1px solid var(--border-color); 
    border-radius: 8px; 
    cursor: pointer; 
    transition: all var(--transition-smooth);
}
.cast-option:hover { border-color: var(--neon-blue); background: rgb(0, 180, 255, 0.1) }
.cast-option svg { width: 32px; height: 32px; fill: var(--neon-blue) }
.cast-option-text .name { font-weight: 600; margin-bottom: 2px }
.cast-option-text .desc { font-size: 0.8rem; color: var(--text-secondary) }

/* Responsive */
@media (max-width: 900px) { 
    .now-playing-content { 
        grid-template-columns: 1fr; 
        text-align: center; 
        justify-items: center;
    } 
    .track-info { align-items: center } 
}

@media (max-width: 599px) { 
    header { padding: var(--space-md); flex-direction: column; text-align: center } 
    .logo-section { flex-direction: column } 
    .header-controls { width: 100%; justify-content: center } 
    main { padding: var(--space-md) } 
    .now-playing { max-width: 1200px; margin-left: auto; margin-right: auto; padding: var(--space-md) } 
    .album-art { width: 180px; height: 180px } 
    .content-grid { grid-template-columns: 1fr } 
    .footer-top { grid-template-columns: 1fr; text-align: center } 
    .social-links { justify-content: center }
    .app-badges { justify-content: center } 
    .footer-bottom { flex-direction: column; text-align: center } 
    .form-row { grid-template-columns: 1fr } 
}

@media (max-width: 375px) { 
    .request-button span { display: none } 
    .album-art { width: 150px; height: 150px } 
}


/* Volume Slider */
.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 120px;
    height: 6px;
    background: linear-gradient(to right, var(--neon-pink) 0%, var(--neon-pink) 75%, rgba(255,255,255,0.2) 75%);
    border-radius: 3px;
    cursor: pointer;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #ff3250;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

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

.volume-slider::-moz-range-progress {
    background: #ff3250;
    height: 6px;
    border-radius: 3px;
}

.volume-slider::-moz-range-track {
    background: rgba(255,255,255,0.2);
    height: 6px;
    border-radius: 3px;
}

/* Progress Bar */
.song-progress-container {
    width: 100%;
    max-width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    margin-top: 12px;
    overflow: hidden;
}

.song-progress-fill {
    background: #ff3250 !important;
    height: 100%;
    
    border-radius: 2px;
    transition: width 1s linear;
}

/* On Air Status */
.live-indicator.off-air .live-dot {
    background: #666;
    box-shadow: none;
    animation: none;
}

.live-indicator.off-air .live-text {
    color: #666;
}

.no-shows {
    color: var(--text-secondary);
    text-align: center;
    padding: 20px;
    font-style: italic;
}

/* Volume slider complete fix */
.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 120px;
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    cursor: pointer;
    outline: none;
}

.volume-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #ff3250;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Mobile Modal Fixes */
@media (max-width: 600px) {
    .modal {
        padding: 0;
        align-items: flex-end;
    }
    .modal-content {
        max-width: 100%;
        width: 100%;
        max-height: 85vh;
        border-radius: 16px 16px 0 0;
        padding: var(--space-md);
        padding-top: var(--space-lg);
    }
    .modal-content h3 {
        font-size: 1.2rem;
        padding-right: 40px;
    }
    .modal-close {
        top: var(--space-sm);
        right: var(--space-sm);
        background: var(--bg-tertiary);
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    .modal-close svg {
        width: 20px;
        height: 20px;
    }
    .request-form input,
    .request-form textarea,
    .request-form select {
        font-size: 16px;
        padding: 12px;
    }
    .request-form button {
        padding: 14px;
        font-size: 1rem;
    }
}

/* Smaller Mobile Modal */
@media (max-width: 480px) {
    .modal {
        padding: 10px;
        align-items: center;
    }
    .modal-content {
        max-height: 80vh;
        padding: 15px;
        border-radius: 12px;
        font-size: 14px;
    }
    .modal-content h3 {
        font-size: 1rem;
        margin-bottom: 12px;
        padding-right: 30px;
    }
    .modal-close {
        top: 10px;
        right: 10px;
        width: 28px;
        height: 28px;
    }
    .modal-close svg {
        width: 16px;
        height: 16px;
    }
    .request-form {
        gap: 10px;
    }
    .form-group label {
        font-size: 12px;
        margin-bottom: 4px;
    }
    .request-form input,
    .request-form textarea,
    .request-form select {
        font-size: 14px;
        padding: 8px 10px;
    }
    .request-form textarea {
        min-height: 60px;
    }
    .submit-button {
        padding: 10px;
        font-size: 14px;
    }
    .request-note {
        font-size: 11px;
    }
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
}

/* Bigger close button on mobile */
@media (max-width: 480px) {
    .modal-close {
        width: 44px !important;
        height: 44px !important;
    }
    .modal-close svg {
        width: 28px !important;
        height: 28px !important;
    }
}

/* Mobile overflow fix */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

.dedications-marquee {
    overflow: hidden;
    max-width: 100vw;
}

/* Prevent any element from causing horizontal scroll */
header, main, footer, .now-playing, .content-grid {
    max-width: 100%;
    overflow-x: hidden;
}

/* iOS Safari specific fix */
@supports (-webkit-touch-callout: none) {
    body {
        position: relative;
        width: 100%;
    }
}


/* Content area constraints - header/footer stay full width */
main {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
}
