@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Theme Colors */
    --bg-dark: #070b19;
    --bg-deep: #03060f;
    --primary-gold: #fbbf24;
    --primary-gold-rgb: 251, 191, 36;
    --secondary-gold: #f59e0b;
    --accent-sky: #38bdf8;
    
    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    
    /* Layout styling */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: rgba(251, 191, 36, 0.2);
    border-radius: 4px;
    transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(251, 191, 36, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(251, 191, 36, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(56, 189, 248, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.5) 0%, var(--bg-deep) 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
}

/* Glassmorphism Classes */
.glass-nav {
    background: rgba(7, 11, 25, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card-premium:hover {
    transform: translateY(-6px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 20px 40px -15px rgba(251, 191, 36, 0.15);
}

.glass-card-premium:hover::before {
    opacity: 1;
}

.glass-player {
    background: rgba(3, 6, 15, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

/* Text Gradient Effect */
.text-gradient-gold {
    background: linear-gradient(135deg, #fff 30%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-full-gold {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

.animate-float-slow {
    animation: float 8s ease-in-out infinite;
}

/* Glow Effects */
.logo-glow {
    filter: drop-shadow(0 0 15px rgba(var(--primary-gold-rgb), 0.2));
    transition: filter 0.5s ease;
}

.logo-glow:hover {
    filter: drop-shadow(0 0 25px rgba(var(--primary-gold-rgb), 0.5));
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(var(--primary-gold-rgb), 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(var(--primary-gold-rgb), 0.5);
    }
}

.animate-pulse-glow {
    animation: pulse-glow 3s infinite ease-in-out;
}

/* On Air Indicator */
.on-air-dot {
    width: 10px;
    height: 10px;
    background-color: #ef4444;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #ef4444;
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        transform: scale(1.1);
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
}

/* Equalizer Animation for Player */
.bar {
    width: 3px;
    height: 16px;
    background: var(--primary-gold);
    border-radius: 3px;
    margin: 0 1.5px;
    animation: eq-bars 1.2s infinite ease-in-out alternate;
    transform-origin: bottom;
}

.bar:nth-child(1) { animation-delay: 0.1s; }
.bar:nth-child(2) { animation-delay: 0.3s; }
.bar:nth-child(3) { animation-delay: 0.5s; }

.paused .bar {
    animation-play-state: paused;
    height: 3px !important;
}

@keyframes eq-bars {
    0% { height: 4px; }
    100% { height: 20px; }
}

/* Custom Range Slider for Volume */
input[type=range] {
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: var(--primary-gold);
    box-shadow: 0 0 8px rgba(var(--primary-gold-rgb), 0.5);
    margin-top: -5px;
    transition: transform 0.2s;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

/* Organic Wave Shape Fill */
.organic-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.organic-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.organic-wave .shape-fill {
    fill: var(--bg-dark);
}

/* Styled Scrollbars/Active indicators for lists */
.list-item-hover {
    transition: all 0.3s ease;
}

.list-item-hover:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(4px);
}