/* Persistent Player Styles */
.persistent-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.95), rgba(139, 92, 246, 0.95));
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    min-width: 300px;
    max-width: 400px;
    transition: all 0.3s ease;
}

.persistent-player:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

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

.player-info {
    flex: 1;
    min-width: 0;
}

.player-info .song-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-info .song-artist {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

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

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

.control-btn:active {
    transform: scale(0.95);
}

#persistent-audio {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .persistent-player {
        bottom: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
    
    .player-mini {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .player-controls {
        justify-content: center;
    }
}

/* Floating Popup Button */
.floating-popup-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating-popup-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.floating-popup-btn:active {
    transform: scale(0.95);
}

.floating-popup-btn .tooltip {
    position: absolute;
    left: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.floating-popup-btn:hover .tooltip {
    opacity: 1;
}

/* Mobile responsive for floating button */
@media (max-width: 768px) {
    .floating-popup-btn {
        bottom: 80px;
        left: 15px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .floating-popup-btn .tooltip {
        left: 60px;
        font-size: 11px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --storm-blue: #1886D2;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --light-bg: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: #334155;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-storm: linear-gradient(135deg, #1886D2 0%, #667eea 50%, #764ba2 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body.loaded {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Header */
.header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo i {
    font-size: 2rem;
    color: var(--storm-blue);
    animation: pulse 2s infinite;
}

.logo h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}

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

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--storm-blue);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--storm-blue);
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: var(--gradient-storm);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.hero-text h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1;
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    min-width: 150px;
}

.stat-item i {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-item span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stat-item small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Now Playing Section */
.now-playing-section {
    padding: 4rem 0;
    background: var(--darker-bg);
}

.now-playing-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.track-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.track-artwork {
    width: 100px;
    height: 100px;
    background: var(--gradient-storm);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.track-details {
    flex: 1;
}

.track-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.track-artist {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.track-album {
    font-size: 1rem;
    color: var(--text-muted);
}

.track-actions {
    display: flex;
    gap: 1rem;
}

.track-action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--light-bg);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.track-action-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.track-action-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.station-messages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.station-message {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.station-message i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.station-message span {
    color: var(--text-secondary);
}

/* Player Section */
.player-section {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.player-container {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.player-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.stream-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    animation: pulse 2s infinite;
}

.status-dot.online {
    background: #10b981;
}

.status-dot.offline {
    background: #ef4444;
    animation: none;
}

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

.audio-player-wrapper {
    background: linear-gradient(145deg, #1a1a2e, #16213e, #0f3460);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 
        0 20px 60px rgba(15, 52, 96, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.audio-player-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(239, 68, 68, 0.1) 60deg,
        rgba(59, 130, 246, 0.1) 120deg,
        rgba(34, 197, 94, 0.1) 180deg,
        rgba(168, 85, 247, 0.1) 240deg,
        rgba(251, 146, 60, 0.1) 300deg,
        transparent 360deg
    );
    animation: rotate 20s linear infinite;
}

.audio-player-wrapper::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 18px;
    z-index: 1;
}

.audio-player-wrapper > * {
    position: relative;
    z-index: 2;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.player-controls {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 1rem;
}

.refresh-btn {
    background: linear-gradient(135deg, #e94560, #ff6b6b);
    border: none;
    border-radius: 15px;
    padding: 1rem 2rem;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 
        0 10px 25px rgba(233, 69, 96, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.refresh-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(233, 69, 96, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.refresh-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.refresh-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.refresh-btn:hover i {
    transform: rotate(360deg);
}

.refresh-btn.spinning i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Enhanced MediaElement.js styling - Embedded Cyberpunk Theme */
.mejs__container {
    background: transparent !important;
    border-radius: 15px !important;
    box-shadow: none !important;
    border: none !important;
    padding: 1rem 0 !important;
    position: relative !important;
}

.mejs__controls {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95)) !important;
    border-radius: 25px !important;
    backdrop-filter: blur(20px) !important;
    border: 3px solid transparent !important;
    background-image: linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)), 
                      linear-gradient(45deg, #ff006e, #8338ec, #3b82f6, #10b981) !important;
    background-origin: border-box !important;
    background-clip: padding-box, border-box !important;
    padding: 1.5rem !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 
        0 0 50px rgba(255, 0, 110, 0.5),
        0 0 100px rgba(131, 56, 236, 0.3),
        inset 0 0 30px rgba(59, 130, 246, 0.2) !important;
}

.mejs__controls::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 0, 110, 0.3), 
        rgba(131, 56, 236, 0.3),
        rgba(59, 130, 246, 0.3),
        rgba(16, 185, 129, 0.3),
        transparent) !important;
    animation: neonSweep 4s infinite;
}

@keyframes neonSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.mejs__controls > div {
    position: relative !important;
    z-index: 2 !important;
}

.mejs__button > button {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(15, 51, 96, 0.9)) !important;
    border: 2px solid #ff006e !important;
    border-radius: 50% !important;
    margin: 0 12px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    width: 55px !important;
    height: 55px !important;
    box-shadow: 
        0 0 20px rgba(255, 0, 110, 0.5),
        inset 0 0 15px rgba(255, 0, 110, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    color: #ff006e !important;
}

.mejs__button > button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.6), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.mejs__button > button:hover::before {
    width: 120%;
    height: 120%;
}

.mejs__button > button:hover {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.9), rgba(131, 56, 236, 0.9)) !important;
    transform: scale(1.15) translateY(-4px) !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 110, 0.8),
        0 0 60px rgba(131, 56, 236, 0.4),
        inset 0 0 25px rgba(255, 0, 110, 0.5) !important;
    border-color: #ff006e !important;
    color: #ffffff !important;
}

.mejs__playpause-button > button {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 46, 0.9)) !important;
    border: 2px solid #10b981 !important;
    box-shadow: 
        0 0 20px rgba(16, 185, 129, 0.5),
        inset 0 0 15px rgba(16, 185, 129, 0.3) !important;
    color: #10b981 !important;
}

.mejs__playpause-button > button:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(5, 150, 105, 0.9)) !important;
    box-shadow: 
        0 0 30px rgba(16, 185, 129, 0.8),
        0 0 60px rgba(5, 150, 105, 0.4),
        inset 0 0 25px rgba(16, 185, 129, 0.5) !important;
    border-color: #10b981 !important;
    color: #ffffff !important;
}

.mejs__time {
    color: #ff006e !important;
    font-weight: 800 !important;
    text-shadow: 
        0 0 10px rgba(255, 0, 110, 0.8),
        0 0 20px rgba(255, 0, 110, 0.5) !important;
    font-size: 1rem !important;
    font-family: 'Courier New', monospace !important;
    letter-spacing: 2px !important;
}

.mejs__time-rail {
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 46, 0.8)) !important;
    border-radius: 40px !important;
    height: 16px !important;
    margin: 0 25px !important;
    box-shadow: 
        inset 0 6px 12px rgba(0, 0, 0, 0.8),
        0 0 0 2px rgba(255, 0, 110, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

.mejs__time-rail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 0, 110, 0.2) 0%, 
        transparent 25%, 
        rgba(131, 56, 236, 0.2) 50%,
        transparent 75%,
        rgba(59, 130, 246, 0.2) 100%);
    animation: neonPulse 3s infinite;
}

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

.mejs__time-total {
    background: rgba(10, 10, 10, 0.9) !important;
    border-radius: 40px !important;
}

.mejs__time-current {
    background: linear-gradient(90deg, #ff006e, #8338ec, #3b82f6) !important;
    border-radius: 40px !important;
    height: 16px !important;
    box-shadow: 
        0 0 30px rgba(255, 0, 110, 0.8),
        inset 0 0 15px rgba(255, 255, 255, 0.3) !important;
    position: relative !important;
}

.mejs__time-current::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 0, 110, 0.9)) !important;
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(255, 0, 110, 0.8),
        0 0 40px rgba(255, 0, 110, 0.4);
    border: 3px solid #ff006e;
    animation: neonGlow 2s infinite;
}

@keyframes neonGlow {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(255, 0, 110, 0.8),
            0 0 40px rgba(255, 0, 110, 0.4);
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(255, 0, 110, 1),
            0 0 60px rgba(255, 0, 110, 0.6);
    }
}

.mejs__time-hovered {
    background: linear-gradient(90deg, rgba(255, 0, 110, 0.3), rgba(131, 56, 236, 0.3)) !important;
    border-radius: 40px !important;
}

.mejs__time-handle {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 0, 110, 0.9)) !important;
    border: 3px solid #ff006e !important;
    border-radius: 50% !important;
    width: 24px !important;
    height: 24px !important;
    top: -4px !important;
    box-shadow: 
        0 0 25px rgba(255, 0, 110, 0.8),
        inset 0 0 15px rgba(255, 255, 255, 0.5) !important;
    cursor: grab !important;
    animation: neonGlow 2s infinite;
}

.mejs__time-handle:active {
    cursor: grabbing !important;
    transform: scale(1.2) !important;
}

.mejs__volume-button > button {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 46, 0.9)) !important;
    border: 2px solid #fbbf24 !important;
    box-shadow: 
        0 0 20px rgba(251, 191, 36, 0.5),
        inset 0 0 15px rgba(251, 191, 36, 0.3) !important;
    color: #fbbf24 !important;
}

.mejs__volume-button > button:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.9), rgba(245, 158, 11, 0.9)) !important;
    box-shadow: 
        0 0 30px rgba(251, 191, 36, 0.8),
        0 0 60px rgba(245, 158, 11, 0.4),
        inset 0 0 25px rgba(251, 191, 36, 0.5) !important;
    border-color: #fbbf24 !important;
    color: #ffffff !important;
}

.mejs__horizontal-volume-slider {
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 46, 0.8)) !important;
    border-radius: 40px !important;
    border: 2px solid rgba(251, 191, 36, 0.3) !important;
    box-shadow: inset 0 6px 12px rgba(0, 0, 0, 0.8) !important;
}

.mejs__horizontal-volume-total {
    background: rgba(10, 10, 10, 0.9) !important;
    border-radius: 40px !important;
}

.mejs__horizontal-volume-current {
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #fde047) !important;
    border-radius: 40px !important;
    box-shadow: 
        0 0 20px rgba(251, 191, 36, 0.6),
        inset 0 0 15px rgba(255, 255, 255, 0.3) !important;
}

/* Add neon glow effect to active controls */
.mejs__button.mejs__playpause-button.mejs__play > button,
.mejs__button.mejs__playpause-button.mejs__pause > button {
    animation: playGlow 2s infinite;
}

@keyframes playGlow {
    0%, 100% { 
        box-shadow: 
            0 0 30px rgba(16, 185, 129, 0.8),
            0 0 60px rgba(16, 185, 129, 0.4),
            inset 0 0 25px rgba(16, 185, 129, 0.5) !important;
    }
    50% { 
        box-shadow: 
            0 0 40px rgba(16, 185, 129, 1),
            0 0 80px rgba(16, 185, 129, 0.6),
            inset 0 0 35px rgba(16, 185, 129, 0.7) !important;
    }
}

/* Simple Custom Audio Player Styling */
.custom-player {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 46, 0.95));
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255, 0, 110, 0.3);
    box-shadow: 
        0 0 30px rgba(255, 0, 110, 0.3),
        inset 0 0 20px rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Loading Indicator */
.loading-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    color: #ff006e;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 0, 110, 0.3);
    border-top: 3px solid #ff006e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-indicator span {
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Player Controls */
.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.control-btn {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(15, 51, 96, 0.9));
    border: 2px solid #ff006e;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    color: #ff006e;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 15px rgba(255, 0, 110, 0.3),
        inset 0 0 10px rgba(255, 0, 110, 0.2);
}

.control-btn:hover {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.9), rgba(131, 56, 236, 0.9));
    transform: scale(1.1);
    box-shadow: 
        0 0 25px rgba(255, 0, 110, 0.6),
        inset 0 0 15px rgba(255, 0, 110, 0.4);
    color: #ffffff;
}

.play-btn {
    border-color: #10b981;
    color: #10b981;
    box-shadow: 
        0 0 15px rgba(16, 185, 129, 0.3),
        inset 0 0 10px rgba(16, 185, 129, 0.2);
}

.play-btn:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(5, 150, 105, 0.9));
    box-shadow: 
        0 0 25px rgba(16, 185, 129, 0.6),
        inset 0 0 15px rgba(16, 185, 129, 0.4);
}

.pause-btn {
    border-color: #fbbf24;
    color: #fbbf24;
    box-shadow: 
        0 0 15px rgba(251, 191, 36, 0.3),
        inset 0 0 10px rgba(251, 191, 36, 0.2);
}

.pause-btn:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.9), rgba(245, 158, 11, 0.9));
    box-shadow: 
        0 0 25px rgba(251, 191, 36, 0.6),
        inset 0 0 15px rgba(251, 191, 36, 0.4);
}

.refresh-btn {
    border-color: #8b5cf6;
    color: #8b5cf6;
    box-shadow: 
        0 0 15px rgba(139, 92, 246, 0.3),
        inset 0 0 10px rgba(139, 92, 246, 0.2);
}

.refresh-btn:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(124, 58, 237, 0.9));
    box-shadow: 
        0 0 25px rgba(139, 92, 246, 0.6),
        inset 0 0 15px rgba(139, 92, 246, 0.4);
}

.refresh-btn.spinning i {
    animation: spin 1s linear infinite;
}

/* Progress Bar */
.player-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    background: rgba(10, 10, 10, 0.7);
    border-radius: 20px;
    height: 12px;
    margin-bottom: 1rem;
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, #ff006e, #8338ec, #3b82f6);
    border-radius: 20px;
    height: 100%;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.5);
}

.time-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ff006e;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(255, 0, 110, 0.5);
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.separator {
    opacity: 0.6;
}

/* Hide the default audio element */
#radio-audio {
    display: none;
}

/* Recent Songs Section */
.recent-songs-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-family: 'Bebas Neue', cursive;
}

.recent-songs-grid {
    display: grid;
    gap: 1rem;
}

.recent-song-item {
    background: var(--dark-bg);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.recent-song-item:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.recent-song-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.song-info {
    flex: 1;
}

.song-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.song-artist {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.song-time {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--dark-bg);
}

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

.feature-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 1.5rem;
    color: var(--storm-blue);
}

.footer-logo h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Notifications */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1001;
}

.notification.show {
    transform: translateX(0);
}

/* Page Hero */
.page-hero {
    padding: 6rem 0 2rem;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    text-align: center;
    margin-top: 80px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* About Page Styles */
.about-content {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-main h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-main h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.about-main p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.mission-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
}

.value-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.mission-image {
    font-size: 8rem;
    color: var(--primary-color);
    text-align: center;
    opacity: 0.8;
}

.team-section {
    padding: 4rem 0;
}

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

.team-member {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.member-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.equipment-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

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

.equipment-item {
    background: rgba(30, 41, 59, 0.8);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.equipment-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.equipment-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* Playlist Page Styles */
.playlist-controls {
    padding: 2rem 0;
    background: var(--light-bg);
}

.controls-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.current-playing-section {
    padding: 2rem 0;
}

.current-playing-card {
    background: var(--gradient-storm);
    padding: 2rem;
    border-radius: 1rem;
    color: white;
}

.current-playing-header h3 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.current-track-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.track-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.track-details .track-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.track-details .track-artist {
    font-size: 1.1rem;
    opacity: 0.9;
}

.track-details .track-album {
    font-size: 0.9rem;
    opacity: 0.8;
}

.track-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: right;
}

.track-genre {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.9rem;
}

.recent-plays {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.playlist-grid {
    display: grid;
    gap: 1rem;
}

.playlist-item {
    background: var(--light-bg);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.playlist-item:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary-color);
}

.track-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 30px;
}

.playlist-item .track-info {
    flex: 1;
}

.playlist-item .track-title {
    font-weight: 700;
    color: var(--text-primary);
}

.playlist-item .track-artist {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.playlist-item .track-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.playlist-item .track-time {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.track-genre-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

.archive-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.archive-dates {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.archive-date {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.date-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.date-header h3 {
    color: var(--primary-color);
    margin: 0;
}

.total-songs {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.archive-songs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.archive-song {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.5rem 0;
}

.archive-song .song-time {
    color: var(--text-muted);
    font-size: 0.9rem;
    min-width: 60px;
}

.archive-song .song-title {
    font-weight: 500;
    color: var(--text-primary);
    min-width: 200px;
}

.archive-song .song-artist {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.top-tracks-section {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.top-tracks-grid {
    display: grid;
    gap: 1rem;
}

.top-track-item {
    background: var(--light-bg);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.top-track-item:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary-color);
}

.track-rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 30px;
}

.top-track-item .track-info {
    flex: 1;
}

.top-track-item .track-title {
    font-weight: 700;
    color: var(--text-primary);
}

.top-track-item .track-artist {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.track-plays {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.submit-btn {
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--error-color);
    color: var(--error-color);
}

.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
}

.social-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.social-section p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

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

.social-card {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.social-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.social-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.social-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.faq-section {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(99, 102, 241, 0.1);
}

.faq-question h3 {
    margin: 0;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
}

/* Sidebar Styles */
.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.sidebar-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-card li:last-child {
    border-bottom: none;
}

.sidebar-card li strong {
    color: var(--text-primary);
}

.sidebar-card li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Loading spinner */
.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--darker-bg);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid var(--border-color);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h2 {
        font-size: 3rem;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
    }
    
    .now-playing-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .track-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .track-actions {
        justify-content: center;
    }
    
    .player-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .fallback-links {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        min-width: auto;
    }
    
    .track-title {
        font-size: 1.5rem;
    }
    
    .track-artist {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
