:root {
    --gold: #D4AF37;
    --gold-light: #F0D060;
    --gold-dark: #B8960F;
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-elevated: #1a1a1a;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: #e5e5e5;
    scroll-behavior: smooth;
}
.font-display {
    font-family: 'Playfair Display', serif;
}
.text-gold { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }
.border-gold { border-color: var(--gold); }
.bg-gold { background-color: var(--gold); }
.bg-gold-dark { background-color: var(--gold-dark); }
.bg-card { background-color: var(--bg-card); }
.bg-elevated { background-color: var(--bg-elevated); }
.ring-gold { --tw-ring-color: var(--gold); }
.hover-gold:hover { color: var(--gold-light); border-color: var(--gold-light); }
.hover-bg-gold:hover { background-color: var(--gold-dark); }
.focus-ring-gold:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
.gradient-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-gold-bg { background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light)); }
.shadow-gold { box-shadow: 0 0 20px rgba(212, 175, 55, 0.15); }
.shadow-gold-hover:hover { box-shadow: 0 0 30px rgba(212, 175, 55, 0.25); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Player container */
#player { width: 100%; height: 100%; border-radius: 8px; overflow: hidden; }
#player iframe { border-radius: 8px; }

/* Page fade-in */
.page-fade { animation: fadeUp 0.4s ease forwards; }
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(16px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Playlist card glow */
.playlist-card { transition: all 0.3s ease; cursor: pointer; }
.playlist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}
.playlist-card.active-playlist {
    border-color: var(--gold) !important;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* Sticky player */
#sticky-player { transition: transform 0.3s ease, opacity 0.3s ease; }

/* Catalog / artist cards */
.catalog-card { transition: all 0.3s ease; }
.catalog-card:hover { transform: translateY(-4px); box-shadow: 0 0 25px rgba(212, 175, 55, 0.15); }

/* Mobile nav */
.mobile-nav { transition: max-height 0.4s ease, opacity 0.3s ease; max-height: 0; opacity: 0; overflow: hidden; }
.mobile-nav.open { max-height: 500px; opacity: 1; }

/* Nav link active */
.nav-link.active { color: var(--gold) !important; border-bottom-color: var(--gold) !important; }

/* Loading spinner */
.spinner {
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-top: 2px solid var(--gold);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Responsive player */
@media (max-width: 640px) {
    #player-container { width: 80px; height: 45px; }
    #player { width: 100%; height: 100%; }
    #player iframe { width: 100% !important; height: 100% !important; }
    #now-playing-info { font-size: 0.7rem; padding: 0 0.5rem; }
    #sticky-player { padding: 0.25rem 0.5rem; }
    #sticky-player .player-controls button { font-size: 0.75rem; padding: 0.25rem; }
}
@media (min-width: 641px) and (max-width: 768px) {
    #player-container { width: 120px; height: 68px; }
}
@media (min-width: 769px) {
    #player-container { width: 180px; height: 101px; }
}

/* Form styling */
input, textarea {
    background: var(--bg-card);
    border: 1px solid #2a2a2a;
    color: #e5e5e5;
    transition: border-color 0.3s ease;
}
input:focus, textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}
input::placeholder, textarea::placeholder { color: #666; }

/* Hero overlay */
.hero-overlay { background: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.95) 100%); }

/* Home page background image (fixed, behind everything) */
body.page-home {
    background-image: linear-gradient(180deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.95) 40%, var(--bg-dark) 100%), url('https://picsum.photos/1920/1400?random=99');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Stats counter */
.stat-number { font-size: 2.5rem; font-weight: 700; font-family: 'Playfair Display', serif; }

/* Team cards */
.team-card { transition: all 0.3s ease; }
.team-card:hover { transform: translateY(-4px); }

/* Footer social links */
.social-link { transition: all 0.3s ease; }
.social-link:hover { color: var(--gold); transform: translateY(-2px); }

/* Track list (radio page) */
.track-row { transition: background 0.2s ease; cursor: pointer; }
.track-row:hover { background: rgba(212,175,55,0.08); }
.track-row.playing { background: rgba(212,175,55,0.12); color: var(--gold-light); }
