:root {
    /* Pwani FM Brand Colors - Radio Red & Gold Theme */
    --primary-color: #dc2626;
    --primary-dark: #991b1b;
    --secondary-color: #f59e0b;
    --accent-color: #f59e0b;
    --radio-red: #dc2626;
    --radio-gold: #f59e0b;
    --radio-orange: #ff8500;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-md) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.nav-brand {
    display: flex;
    align-items: center;
    color: var(--text-primary);
    font-weight: 700;
}

.logo {
    width: 45px;
    height: 45px;
    margin-right: var(--spacing-sm);
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 2px solid rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
}

.logo:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: var(--bg-secondary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation Radio Player */
.nav-radio-player {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: 
        linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 102, 204, 0.2);
    border-radius: 16px;
    padding: var(--spacing-sm) var(--spacing-md);
    margin-left: var(--spacing-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-width: 280px;
}

.nav-radio-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.nav-radio-player:hover::before {
    left: 100%;
}

.nav-player-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.nav-live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-pulse {
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: navPulse 2s infinite;
}

@keyframes navPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

.nav-live-indicator .live-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: #ef4444;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(239, 68, 68, 0.3);
}

.nav-track-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-frequency {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 102, 204, 0.3);
}

.nav-now-playing {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.nav-player-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.nav-play-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: 
        radial-gradient(circle, var(--primary-color) 0%, var(--primary-dark) 70%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(0, 102, 204, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 
        0 6px 20px rgba(0, 102, 204, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.nav-play-btn.playing {
    background: 
        radial-gradient(circle, #ef4444 0%, #dc2626 70%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    box-shadow: 
        0 4px 15px rgba(239, 68, 68, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-btn-ripple {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation: navRipple 2s linear infinite;
    opacity: 0;
}

.nav-play-btn.playing .nav-btn-ripple {
    opacity: 1;
}

@keyframes navRipple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.nav-volume-control {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-volume-icon {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-volume-slider {
    width: 60px;
    height: 3px;
    border-radius: 2px;
    background: rgba(107, 114, 128, 0.3);
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.nav-volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.5);
}

.nav-volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
}

.nav-equalizer {
    display: flex;
    gap: 2px;
    align-items: end;
    height: 20px;
    margin-left: var(--spacing-xs);
}

.nav-eq-bar {
    width: 2px;
    background: linear-gradient(to top, var(--primary-color), var(--accent-color));
    border-radius: 1px;
    animation: navEqualizer 1.5s ease-in-out infinite;
    opacity: 0.6;
}

.nav-eq-bar:nth-child(1) {
    height: 8px;
    animation-delay: 0s;
}

.nav-eq-bar:nth-child(2) {
    height: 12px;
    animation-delay: 0.2s;
}

.nav-eq-bar:nth-child(3) {
    height: 16px;
    animation-delay: 0.4s;
}

.nav-eq-bar:nth-child(4) {
    height: 10px;
    animation-delay: 0.6s;
}

@keyframes navEqualizer {
    0%, 100% {
        transform: scaleY(0.3);
        opacity: 0.4;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.nav-play-btn.playing ~ .nav-equalizer .nav-eq-bar {
    animation-play-state: running;
}

.nav-equalizer .nav-eq-bar {
    animation-play-state: paused;
}

/* Modern Hero Section with Coastal Theme */
.hero {
    min-height: 60vh;
    background: 
        linear-gradient(135deg, #006994 0%, #004d6b 50%, #003850 100%),
        radial-gradient(ellipse at center, rgba(0, 150, 200, 0.3) 0%, transparent 70%);
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(80px + var(--spacing-md)) 0 var(--spacing-md) 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="waves" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0 50 Q25 25 50 50 T100 50" stroke="rgba(255,255,255,0.1)" fill="none" stroke-width="2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23waves)"/></svg>') repeat,
        radial-gradient(circle at 20% 80%, rgba(52, 211, 153, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.2) 0%, transparent 50%);
    animation: wavesFloat 20s ease-in-out infinite;
}

@keyframes wavesFloat {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-5px); }
    50% { transform: translateX(10px) translateY(5px); }
    75% { transform: translateX(-5px) translateY(10px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    animation: float 3s ease-in-out infinite;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
}

.brand-highlight {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: var(--spacing-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern Live Player */
.live-player-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.player-status {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.9rem;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.frequency-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.now-playing-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.song-details .label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 4px;
}

.song-details .song-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.song-details .artist {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Equalizer Animation */
.equalizer {
    display: flex;
    gap: 3px;
    align-items: end;
    height: 30px;
}

.equalizer .bar {
    width: 3px;
    background: white;
    border-radius: 2px;
    animation: equalizer 1.5s ease-in-out infinite;
}

.equalizer .bar:nth-child(1) { animation-delay: 0s; }
.equalizer .bar:nth-child(2) { animation-delay: 0.2s; }
.equalizer .bar:nth-child(3) { animation-delay: 0.4s; }
.equalizer .bar:nth-child(4) { animation-delay: 0.6s; }

@keyframes equalizer {
    0%, 100% { height: 5px; }
    50% { height: 25px; }
}

.player-controls-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.control-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.play-btn-modern {
    width: 60px;
    height: 60px;
    border: none;
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    box-shadow: var(--shadow-lg);
}

.play-btn-modern:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.play-btn-modern.playing {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.volume-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-left: auto;
}

.volume-slider-container {
    width: 80px;
}

.volume-slider {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: none;
}

/* Hero Decorative Elements */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Glassmorphic Ocean Live Status - Youthful Colors */
.live-status {
    background: 
        linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 30%, #45b7d1 60%, #96ceb4 100%),
        radial-gradient(ellipse at center, rgba(255, 107, 107, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.3) 0%, transparent 60%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.live-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="ocean-waves" x="0" y="0" width="200" height="100" patternUnits="userSpaceOnUse"><path d="M0 50 Q50 25 100 50 T200 50" stroke="rgba(255,255,255,0.2)" fill="none" stroke-width="2"/><path d="M0 60 Q40 35 80 60 T160 60" stroke="rgba(255,107,107,0.3)" fill="none" stroke-width="1.5"/><path d="M0 40 Q60 15 120 40 T240 40" stroke="rgba(78,205,196,0.25)" fill="none" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23ocean-waves)"/></svg>') repeat,
        radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(78, 205, 196, 0.3) 0%, transparent 50%);
    animation: oceanFlow 15s ease-in-out infinite;
}

@keyframes oceanFlow {
    0%, 100% {
        transform: translateX(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-20px) scale(1.1);
        opacity: 0.8;
    }
}

.status-info {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%),
        radial-gradient(circle at 30% 30%, rgba(255, 107, 107, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(78, 205, 196, 0.2) 0%, transparent 50%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: var(--spacing-2xl);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 60px rgba(52, 211, 153, 0.1);
    position: relative;
    overflow: hidden;
}

.status-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%),
        radial-gradient(circle at 70% 30%, rgba(52, 211, 153, 0.1) 0%, transparent 50%);
    animation: glassShimmer 8s ease-in-out infinite;
}

@keyframes glassShimmer {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-50px);
    }
    50% {
        opacity: 0.6;
        transform: translateX(50px);
    }
}

/* Ocean Bubbles Effect */
.status-info::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 2px, transparent 3px),
        radial-gradient(circle at 80% 20%, rgba(52, 211, 153, 0.2) 1px, transparent 2px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 3px, transparent 4px);
    background-size: 80px 80px, 120px 120px, 100px 100px;
    animation: bubbles 20s linear infinite;
    opacity: 0.4;
}

@keyframes bubbles {
    0% {
        transform: translateY(100px) rotate(0deg);
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

.live-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    text-align: center;
}

.live-indicator .pulse {
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.live-indicator span {
    color: #ef4444;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.current-show {
    text-align: center;
}

.current-show h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.current-show p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.listener-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    text-align: center;
}

.listener-count i {
    color: #34d399;
    font-size: 1.2rem;
    text-shadow: 0 0 15px rgba(52, 211, 153, 0.5);
}

.listener-count span {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.listener-count::after {
    content: 'listeners';
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Modern Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    letter-spacing: -0.02em;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Modern About Section */
.about {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-text {
    padding: var(--spacing-xl);
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    line-height: 1.3;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    color: var(--text-secondary);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.stat {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat h4 {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.stat p {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

/* Programs Section */
.programs {
    padding: 5rem 0;
    background: #f8f9fa;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-time {
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.program-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.host {
    font-weight: 600;
    color: #667eea;
}

/* News Section */
.news {
    padding: 5rem 0;
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.category {
    background: #667eea;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.date {
    color: #666;
    font-size: 0.9rem;
}

.news-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.news-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #764ba2;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: #667eea;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #764ba2;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.submit-btn {
    background: #667eea;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #764ba2;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Mobile Sticky Radio Player - Only visible on mobile devices */
.mobile-radio-player {
    display: none; /* Hidden by default on desktop */
    position: fixed;
    top: 70px; /* Below header */
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.mobile-radio-player.hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-radio-player:not(.hidden) {
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.mobile-player-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
}

.mobile-player-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.mobile-live-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.15);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.mobile-pulse {
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    animation: mobilePulse 2s infinite;
}

@keyframes mobilePulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.4); 
        opacity: 0.6; 
    }
}

.mobile-station-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
    flex: 1;
}

.mobile-frequency {
    font-size: 13px;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
    line-height: 1;
}

.mobile-show-name {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
}

.mobile-player-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-play-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.mobile-play-btn:active {
    transform: scale(0.95);
}

.mobile-play-btn.playing {
    background: #ffd700;
    color: var(--primary-dark);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.mobile-volume-btn,
.mobile-close-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    flex-shrink: 0;
}

.mobile-volume-btn:active,
.mobile-close-btn:active {
    transform: scale(0.9);
    background: rgba(255, 255, 255, 0.2);
}

.mobile-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.mobile-volume-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.mobile-volume-panel.active {
    max-height: 50px;
}

.mobile-volume-slider-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
}

.mobile-volume-slider-container i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    flex-shrink: 0;
}

.mobile-volume-slider {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.mobile-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #ffd700;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.mobile-volume-slider::-webkit-slider-thumb:active {
    transform: scale(1.2);
}

.mobile-volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #ffd700;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-radio-player {
        min-width: 240px;
    }
    
    .nav-radio-player .nav-now-playing {
        max-width: 100px;
    }
    
    .nav-volume-slider {
        width: 50px;
    }
}

/* Show mobile player on tablets and mobile devices */
@media (max-width: 1024px) {
    .mobile-radio-player {
        display: block !important;
        position: fixed;
        top: 70px; /* Stick below fixed header */
        z-index: 999;
    }
    
    .nav-radio-player {
        display: none !important; /* Hide desktop player on mobile */
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-radio-player {
        display: none;
    }
    
    /* Enhanced mobile navigation */
    .navbar {
        padding: 0 var(--spacing-md);
    }
    
    .nav-brand h1 {
        font-size: 1.3rem;
    }
    
    .logo {
        width: 40px;
        height: 40px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: left;
        transition: 0.3s;
        padding: var(--spacing-lg) 0;
        z-index: 998;
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 0;
    }
    
    .nav-menu a {
        display: block;
        padding: var(--spacing-md) var(--spacing-lg);
        color: var(--text-primary);
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-color);
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: var(--bg-secondary);
        padding-left: calc(var(--spacing-lg) + 10px);
    }
    
    /* Enhanced hero section for mobile */
    .hero {
        padding: 90px var(--spacing-md) var(--spacing-3xl);
        text-align: center;
        min-height: 70vh;
    }
    
    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-subtitle {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
    }
    
    .hero-description {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
        margin-bottom: var(--spacing-2xl);
    }
    
    /* Enhanced section spacing */
    .about, .programs, .news, .contact {
        padding: var(--spacing-3xl) 0;
    }
    
    .section-header {
        margin-bottom: var(--spacing-2xl);
        padding: 0 var(--spacing-md);
    }
    
    .section-header h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: var(--spacing-lg);
    }
    
    .section-header p {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    }
    
    /* Enhanced about section */
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .about-text {
        padding: var(--spacing-md);
        order: 2;
    }
    
    .about-image {
        order: 1;
        padding: 0 var(--spacing-md);
    }
    
    .about-image img {
        border-radius: var(--radius-lg);
    }
    
    /* Enhanced live status */
    .status-info {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
        padding: var(--spacing-xl);
        margin: 0 var(--spacing-md);
        border-radius: var(--radius-xl);
    }
    
    /* Enhanced stats */
    .stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: var(--spacing-lg);
        margin-top: var(--spacing-xl);
    }
    
    .stat {
        padding: var(--spacing-lg);
    }
    
    .stat h4 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    /* Enhanced program grid */
    .program-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .program-card {
        padding: var(--spacing-xl);
        border-radius: var(--radius-lg);
    }
    
    .program-time {
        font-size: 0.9rem;
        margin-bottom: var(--spacing-md);
    }
    
    .program-card h3 {
        font-size: clamp(1.2rem, 4vw, 1.4rem);
        margin-bottom: var(--spacing-md);
    }
    
    /* Enhanced news grid */
    .news-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .news-card {
        border-radius: var(--radius-lg);
        overflow: hidden;
    }
    
    .news-content {
        padding: var(--spacing-xl);
    }
    
    .news-card h3 {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
    }
    
    /* Enhanced contact section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        padding: 0 var(--spacing-md);
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
        margin-bottom: var(--spacing-xl);
    }
    
    .contact-item {
        padding: var(--spacing-lg);
        background: var(--bg-secondary);
        border-radius: var(--radius-lg);
        margin-bottom: var(--spacing-md);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: var(--spacing-md);
        font-size: 1rem;
        border-radius: var(--radius-md);
    }
    
    .submit-btn {
        padding: var(--spacing-md) var(--spacing-xl);
        font-size: 1.1rem;
        border-radius: var(--radius-md);
    }
    
    /* Enhanced footer */
    .footer {
        padding: var(--spacing-3xl) 0 var(--spacing-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
        padding: 0 var(--spacing-md);
    }
    
    .footer-section {
        padding: var(--spacing-lg);
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--radius-lg);
    }
    
    .social-links {
        justify-content: center;
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
    }
    
    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .program-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.section-header {
    animation: fadeInUp 0.8s ease-out;
}

.program-card,
.news-card {
    animation: bounceIn 0.6s ease-out;
}

.about-text {
    animation: slideInFromLeft 0.8s ease-out;
}

.about-image {
    animation: slideInFromRight 0.8s ease-out;
}

.futuristic-player {
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Futuristic Radio Player */
.player-glass {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%),
        radial-gradient(circle at 30% 30%, rgba(52, 211, 153, 0.3) 0%, transparent 50%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Holographic Display */
.holographic-display {
    position: relative;
    text-align: center;
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(52, 211, 153, 0.1) 50%, transparent 70%),
        radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 14px;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.holo-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(52, 211, 153, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52, 211, 153, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: hologramFlicker 3s ease-in-out infinite;
}

@keyframes hologramFlicker {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.frequency-display {
    position: relative;
    z-index: 2;
}

.freq-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #34d399;
    text-shadow: 0 0 20px rgba(52, 211, 153, 0.5);
    display: block;
    font-family: 'Inter', sans-serif;
}

.freq-unit {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 1px;
}

.wave-animation {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
}

.wave {
    width: 2px;
    height: 20px;
    background: linear-gradient(to top, #34d399, #10b981);
    border-radius: 1px;
    animation: waveMotion 1.5s ease-in-out infinite;
}

.wave:nth-child(1) { animation-delay: 0s; }
.wave:nth-child(2) { animation-delay: 0.2s; }
.wave:nth-child(3) { animation-delay: 0.4s; }

@keyframes waveMotion {
    0%, 100% { height: 8px; opacity: 0.4; }
    50% { height: 25px; opacity: 1; }
}

/* Status Row */
.status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.live-indicator-futuristic {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.pulse-ring {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #ef4444;
    border-radius: 50%;
    animation: pulseRing 2s linear infinite;
}

.pulse-ring.delay-1 { animation-delay: 0.4s; }
.pulse-ring.delay-2 { animation-delay: 0.8s; }

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.live-text {
    font-weight: 800;
    color: #ef4444;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-left: 30px;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.signal-strength {
    display: flex;
    gap: 3px;
    align-items: end;
}

.signal-bar {
    width: 4px;
    background: linear-gradient(to top, #34d399, #10b981);
    border-radius: 2px;
    animation: signalPulse 1.5s ease-in-out infinite;
}

.signal-bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.signal-bar:nth-child(2) { height: 12px; animation-delay: 0.1s; }
.signal-bar:nth-child(3) { height: 16px; animation-delay: 0.2s; }
.signal-bar:nth-child(4) { height: 20px; animation-delay: 0.3s; }
.signal-bar:nth-child(5) { height: 24px; animation-delay: 0.4s; }

@keyframes signalPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Now Playing Futuristic */
.now-playing-futuristic {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.track-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.track-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.track-artist {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.spectrum-analyzer {
    display: flex;
    gap: 3px;
    align-items: end;
    height: 40px;
}

.spectrum-bar {
    width: 3px;
    background: linear-gradient(to top, #3b82f6, #1d4ed8);
    border-radius: 1.5px;
    animation: spectrum 1.2s ease-in-out infinite;
}

.spectrum-bar:nth-child(1) { animation-delay: 0s; }
.spectrum-bar:nth-child(2) { animation-delay: 0.1s; }
.spectrum-bar:nth-child(3) { animation-delay: 0.2s; }
.spectrum-bar:nth-child(4) { animation-delay: 0.3s; }
.spectrum-bar:nth-child(5) { animation-delay: 0.4s; }
.spectrum-bar:nth-child(6) { animation-delay: 0.5s; }
.spectrum-bar:nth-child(7) { animation-delay: 0.6s; }
.spectrum-bar:nth-child(8) { animation-delay: 0.7s; }

@keyframes spectrum {
    0%, 100% { height: 5px; }
    50% { height: 35px; }
}

/* Control Panel */
.control-panel {
    text-align: center;
}

.control-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.control-btn-futuristic {
    position: relative;
    width: 42px;
    height: 42px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
    font-size: 0.9rem;
}

.control-btn-futuristic:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 211, 153, 0.3);
    border-color: rgba(52, 211, 153, 0.5);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.control-btn-futuristic:hover .btn-glow {
    left: 100%;
}

.play-btn-futuristic {
    position: relative;
    width: 64px;
    height: 64px;
    background: 
        radial-gradient(circle, #34d399 0%, #10b981 70%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border: 2px solid rgba(52, 211, 153, 0.5);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 25px rgba(52, 211, 153, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.play-btn-futuristic:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 40px rgba(52, 211, 153, 0.6),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
}

.play-btn-futuristic.playing {
    background: 
        radial-gradient(circle, #ef4444 0%, #dc2626 70%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 
        0 0 30px rgba(239, 68, 68, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
}

.btn-core {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.energy-ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: energyPulse 2s linear infinite;
}

.energy-ring {
    width: 90%;
    height: 90%;
}

.energy-ring.ring-2 {
    width: 110%;
    height: 110%;
    animation-delay: 1s;
}

@keyframes energyPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Volume Control Futuristic */
.volume-control-futuristic {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.volume-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.volume-track {
    position: relative;
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.volume-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, #34d399, #10b981);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.volume-slider-futuristic {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.volume-particles {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.particle {
    width: 3px;
    height: 3px;
    background: #34d399;
    border-radius: 50%;
    animation: particleFloat 2s ease-in-out infinite;
}

.particle:nth-child(1) { animation-delay: 0s; }
.particle:nth-child(2) { animation-delay: 0.3s; }
.particle:nth-child(3) { animation-delay: 0.6s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-15px) scale(1.2);
        opacity: 1;
    }
}

.volume-value {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

/* Coastal Waves Effect */
.coastal-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    overflow: hidden;
    pointer-events: none;
}

.wave-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.1), transparent);
    border-radius: 50% 50% 0 0;
    animation: coastalWave 8s ease-in-out infinite;
}

.wave-layer.wave-1 {
    animation-delay: 0s;
    opacity: 0.6;
}

.wave-layer.wave-2 {
    animation-delay: 2s;
    opacity: 0.4;
    height: 80%;
}

.wave-layer.wave-3 {
    animation-delay: 4s;
    opacity: 0.2;
    height: 60%;
}

@keyframes coastalWave {
    0%, 100% {
        transform: translateX(-100%) skewX(0deg);
    }
    50% {
        transform: translateX(100%) skewX(-5deg);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #764ba2;
}
