/* =============================================
   LA RADIO DJ - Premium Dark & Gold Theme Styles
   ============================================= */
:root {
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-card: rgba(12, 12, 12, 0.85);
    --bg-glass: rgba(16, 16, 16, 0.6);
    --text-primary: #f0efe8;
    --text-secondary: #8a8880;
    --text-muted: #555550;
    --accent-gold: #d4a017;
    --accent-gold-light: #f5c843;
    --accent-amber: #b8860b;
    --accent-orange: #e89b0c;
    --accent-gradient: linear-gradient(135deg, #f5c843, #d4a017, #b8860b);
    --glass-border: rgba(212, 160, 23, 0.15);
    --shadow-glow: 0 0 40px rgba(212, 160, 23, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-primary: 'Unbounded', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

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

.highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hidden {
    display: none !important;
}

/* Background Particles */
.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-gold);
    opacity: 0.1;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.1;
    }

    90% {
        opacity: 0.1;
    }

    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.4rem;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(212, 160, 23, 0.5));
}

.logo-icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 0 8px rgba(212, 160, 23, 0.5));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 0.90rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

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

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.8rem;
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 24px 40px;
    position: relative;
    overflow: hidden;
    gap: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-2%, -2%) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 0.5rem;
    letter-spacing: 2px;
    color: var(--accent-gold-light);
    margin-bottom: 24px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 7vw, 5.0rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-highlight {
    display: block;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(212, 160, 23, 0.3));
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 440px;
    line-height: 1.7;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--accent-gradient);
    color: #0a0a0a;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.5);
}

.cta-icon {
    width: 20px;
    height: 20px;
}

/* Hero Visual - Logo */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-logo-container {
    position: relative;
    width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(212, 160, 23, 0.3));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-logo-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.06) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

/* Vinyl Record (kept for playing state) */
.vinyl-container {
    position: relative;
    width: 340px;
    height: 340px;
}

.vinyl {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, #151515 20%, #0a0a0a 40%, #151515 42%, #0a0a0a 60%, #151515 62%, #0a0a0a 80%, #151515 82%);
    position: relative;
    animation: vinylSpin 4s linear infinite;
    animation-play-state: paused;
    box-shadow: 0 0 60px rgba(212, 160, 23, 0.2), inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.vinyl.spinning {
    animation-play-state: running;
}

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

.vinyl-groove {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 160, 23, 0.08);
}

.vinyl-groove-1 {
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
}

.vinyl-groove-2 {
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
}

.vinyl-groove-3 {
    top: 35%;
    left: 35%;
    width: 30%;
    height: 30%;
}

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.4);
}

.vinyl-label-text {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.9rem;
    color: #0a0a0a;
    letter-spacing: 1px;
}

.vinyl-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.06) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Player Section */
.player-section {
    padding: 20px 0 80px;
    position: relative;
    z-index: 2;
}

.player-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-glow);
}

.player-bg-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: none;
    pointer-events: none;
}

/* Now Playing */
.now-playing {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.now-playing-art {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mini-vinyl {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle, #1e1e1e 30%, #111111 60%, #1e1e1e 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: vinylSpin 3s linear infinite;
    animation-play-state: paused;
}

.mini-vinyl.spinning {
    animation-play-state: running;
}

.mini-vinyl-inner {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-gradient);
}

.now-playing-info {
    flex: 1;
}

.now-playing-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-gold-light);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.live-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    animation: livePulse 1.5s ease-in-out infinite;
}

.now-playing-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.now-playing-artist {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Equalizer */
.equalizer-container {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
    height: 80px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.equalizer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    height: 100%;
    width: 100%;
}

.eq-bar {
    flex: 1;
    max-width: 8px;
    min-height: 4px;
    border-radius: 4px 4px 2px 2px;
    background: var(--accent-gradient);
    transition: height 0.15s ease;
    opacity: 0.3;
}

.eq-bar.active {
    opacity: 1;
    animation: eqBounce var(--eq-speed, 0.8s) ease-in-out infinite alternate;
}

@keyframes eqBounce {
    0% {
        height: var(--eq-min, 8px);
    }

    100% {
        height: var(--eq-max, 70px);
    }
}

/* Canvas Visualizer */
.audio-visualizer {
    width: 100%;
    height: 60px;
    margin-bottom: 24px;
    border-radius: var(--radius-sm);
    position: relative;
    z-index: 1;
}

/* Player Controls */
.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.play-btn-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Spinning gradient ring */
.play-spinner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 3px;
    background: conic-gradient(from 0deg,
            #f5c843,
            #d4a017,
            #b8860b,
            transparent 40%,
            transparent 60%,
            #b8860b,
            #d4a017,
            #f5c843);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: spinRing 3s linear infinite;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.play-btn-wrapper:hover .play-spinner {
    opacity: 1;
}

.play-btn.playing~.play-spinner,
.play-btn-wrapper:has(.play-btn.playing) .play-spinner {
    opacity: 1;
    animation: spinRing 1.5s linear infinite;
}

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

/* Pulse rings — visible when playing */
.play-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 160, 23, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.play-btn-wrapper:has(.play-btn.playing) .play-ring {
    animation: pulseRing 3s ease-out infinite;
}

.play-ring-2 {
    animation-delay: 1s !important;
}

.play-ring-3 {
    animation-delay: 2s !important;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* The button itself — glassmorphic dark with gold icon */
.play-btn {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid rgba(212, 160, 23, 0.25);
    background: rgba(10, 10, 20, 0.85);
    backdrop-filter: blur(12px);
    color: var(--accent-gold-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 0 30px rgba(212, 160, 23, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.play-btn:hover {
    transform: scale(1.06);
    border-color: rgba(212, 160, 23, 0.5);
    box-shadow:
        0 0 50px rgba(212, 160, 23, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    color: #f5c843;
}

.play-btn:active {
    transform: scale(0.96);
}

.play-btn.playing {
    border-color: rgba(212, 160, 23, 0.4);
    background: rgba(10, 10, 20, 0.9);
    box-shadow:
        0 0 40px rgba(212, 160, 23, 0.2),
        0 0 80px rgba(212, 160, 23, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.play-btn-glow {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.play-btn:hover .play-btn-glow {
    opacity: 0.6;
}

.play-btn.playing .play-btn-glow {
    opacity: 1;
    animation: playGlowPulse 2s ease-in-out infinite;
}

@keyframes playGlowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.play-icon,
.pause-icon {
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 0 6px rgba(212, 160, 23, 0.4));
}

/* Volume Control */
.volume-control {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.volume-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.volume-btn:hover {
    color: var(--text-primary);
}

.volume-slider-container {
    position: relative;
    width: 160px;
    height: 6px;
}

.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-gold);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(212, 160, 23, 0.5);
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-gold);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(212, 160, 23, 0.5);
}

.volume-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 75%;
    background: var(--accent-gradient);
    border-radius: 3px;
    pointer-events: none;
    z-index: 1;
}

.volume-value {
    font-size: 0.8rem;
    color: var(--text-secondary);
    min-width: 36px;
    text-align: center;
    font-family: var(--font-primary);
    font-weight: 500;
}

/* Schedule Section */
.schedule-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold-light);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.schedule-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.schedule-card:hover {
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.schedule-card:hover .schedule-indicator {
    opacity: 1;
}

.schedule-indicator {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition);
}

.schedule-day {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    min-width: 90px;
    color: var(--accent-gold-light);
}

.schedule-info {
    flex: 1;
}

.schedule-show {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.schedule-time {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Rules Section */
.rules-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.rules-intro {
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.rules-intro strong {
    color: var(--accent-gold-light);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.rule-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.rule-card:hover {
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.rule-number {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
    min-width: 36px;
}

.rule-content {
    flex: 1;
}

.rule-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.rule-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rule-list li {
    position: relative;
    padding-left: 18px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.rule-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 700;
}

.rule-list li strong {
    color: var(--text-primary);
}

.rule-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.rule-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--font-primary);
}

.rule-tag.accepted {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

.rule-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 28px;
    background: #25d366;
    color: white;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 0.5rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.rules-footer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.rules-signature {
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.rules-signature strong {
    color: var(--accent-gold-light);
}

/* About Section */
.about-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-tag,
.about-content .section-title {
    text-align: left;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 36px;
    margin-top: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-card {
    text-align: center;
    padding: 20px 16px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: rgba(212, 160, 23, 0.3);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

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

/* About Visual */
.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.about-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(212, 160, 23, 0.25));
}

.dj-graphic {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dj-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-glow);
}

.dj-circle::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(212, 160, 23, 0.1);
    animation: ringPulse 3s ease-in-out infinite;
}

.dj-circle::after {
    content: '';
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    border: 1px solid rgba(184, 134, 11, 0.08);
    animation: ringPulse 3s ease-in-out infinite 0.5s;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
}

.dj-emoji {
    font-size: 4rem;
    filter: drop-shadow(0 0 20px rgba(212, 160, 23, 0.3));
}

.floating-notes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.note {
    position: absolute;
    font-size: 1.4rem;
    animation: floatNote 4s ease-in-out infinite;
    opacity: 0.6;
}

.note-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.note-2 {
    top: 5%;
    right: 15%;
    animation-delay: 1s;
}

.note-3 {
    bottom: 15%;
    left: 5%;
    animation-delay: 2s;
}

.note-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes floatNote {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
        opacity: 1;
    }
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-brand .logo-text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(212, 160, 23, 0.3));
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold-light);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--text-primary);
    border-color: rgba(212, 160, 23, 0.3);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        flex-direction: column;
        padding: 90px 24px 30px;
        text-align: center;
        gap: 30px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .vinyl-container {
        width: 240px;
        height: 240px;
    }

    .vinyl-label {
        width: 60px;
        height: 60px;
    }

    .hero-logo-container {
        width: 240px;
        height: 240px;
    }

    .player-card {
        padding: 24px;
        border-radius: var(--radius-lg);
    }

    .now-playing {
        flex-wrap: wrap;
        gap: 12px;
    }

    .play-btn {
        width: 72px;
        height: 72px;
    }

    .play-btn-wrapper {
        width: 100px;
        height: 100px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content .section-tag,
    .about-content .section-title {
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-image-container {
        width: 220px;
        height: 220px;
    }

    .dj-circle {
        width: 150px;
        height: 150px;
    }

    .dj-emoji {
        font-size: 3rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    /* Rules section responsive */
    .rules-section {
        padding: 60px 0;
    }

    .rules-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .rule-card {
        padding: 20px;
        gap: 14px;
    }

    .rule-number {
        font-size: 1.5rem;
        min-width: 28px;
    }

    .rules-intro {
        font-size: 0.95rem;
        margin-bottom: 32px;
        padding: 0 8px;
    }

    .rule-tags {
        gap: 6px;
    }

    .rule-tag {
        padding: 4px 10px;
        font-size: 0.72rem;
    }

    .whatsapp-btn {
        padding: 10px 22px;
        font-size: 0.9rem;
    }

    .history-section {
        padding: 18px;
    }

    .dj-info {
        padding: 14px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .volume-slider-container {
        width: 100px;
    }

    .rule-card {
        flex-direction: column;
        gap: 8px;
        padding: 18px;
    }

    .rule-number {
        font-size: 1.3rem;
    }

    .rule-title {
        font-size: 0.95rem;
    }

    .rule-list li {
        font-size: 0.85rem;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-desc {
        font-size: 0.9rem;
    }

    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Scrollbar */

/* Album Art */
.album-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
}

.now-playing-art {
    position: relative;
}

.now-playing-art .mini-vinyl {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 28px;
    height: 28px;
    box-shadow: 0 0 8px rgba(212, 160, 23, 0.4);
}

.now-playing-art .mini-vinyl .mini-vinyl-inner {
    width: 8px;
    height: 8px;
}

/* DJ Info */
.dj-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.dj-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

.dj-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dj-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-orange);
    text-transform: uppercase;
}

.dj-name {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
}

/* History / Recently Played */
.history-section {
    margin-top: 24px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.history-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.history-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.history-item:hover {
    background: rgba(212, 160, 23, 0.06);
}

.history-number {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--accent-gold-light);
    min-width: 24px;
    font-size: 0.8rem;
}

.history-track {
    flex: 1;
}

/* History Pagination */
.history-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--glass-border);
}

.page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.page-btn:hover:not(:disabled) {
    border-color: var(--accent-gold);
    color: var(--text-primary);
    background: rgba(212, 160, 23, 0.12);
}

.page-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.page-info {
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 50px;
    text-align: center;
}

::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(212, 160, 23, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 160, 23, 0.5);
}

::selection {
    background: rgba(212, 160, 23, 0.3);
    color: white;
}

/* =============================================
   Install App Banner
   ============================================= */
.install-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.install-banner.visible {
    transform: translateY(0);
    pointer-events: all;
}

.install-banner-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 600px;
    margin: 16px auto;
    padding: 14px 20px;
    background: rgba(12, 12, 12, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 16px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

.install-banner-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
}

.install-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.install-banner-text strong {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--text-primary);
}

.install-banner-text span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.install-banner-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 10px;
    background: var(--accent-gradient);
    color: #0a0a0a;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.install-banner-btn:hover {
    transform: scale(1.05);
}

.install-banner-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.2s ease;
}

.install-banner-close:hover {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .install-banner-inner {
        margin: 10px 12px;
        padding: 12px 16px;
        gap: 10px;
    }

    .install-banner-icon {
        width: 36px;
        height: 36px;
    }
}

/* =============================================
   Sticky Player Bar
   ============================================= */
.sticky-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.sticky-player.visible {
    transform: translateY(0);
    pointer-events: all;
}

.sticky-player-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 24px;
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(24px);
    border-top: 1px solid rgba(212, 160, 23, 0.15);
}

/* Song Info */
.sticky-player-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.sticky-art {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #111;
}

.sticky-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sticky-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sticky-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-artist {
    font-size: 0.72rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Controls */
.sticky-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.sticky-play-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(212, 160, 23, 0.3);
    background: rgba(212, 160, 23, 0.1);
    color: var(--accent-gold-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.sticky-play-btn:hover {
    background: rgba(212, 160, 23, 0.2);
    border-color: rgba(212, 160, 23, 0.5);
    transform: scale(1.05);
}

.sticky-play-btn svg {
    width: 20px;
    height: 20px;
}

.sticky-volume {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sticky-vol-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 4px;
    transition: color 0.2s ease;
}

.sticky-vol-btn:hover {
    color: var(--text-primary);
}

.sticky-vol-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.sticky-vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-gold);
    cursor: pointer;
}

.sticky-vol-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-gold);
    cursor: pointer;
    border: none;
}

/* Live Badge */
.sticky-live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    color: var(--accent-gold-light);
    flex-shrink: 0;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.2);
}

.sticky-live-badge .live-dot {
    width: 6px;
    height: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .sticky-player-inner {
        padding: 8px 16px;
        gap: 10px;
    }

    .sticky-volume {
        display: none;
    }

    .sticky-live-badge {
        display: none;
    }

    .sticky-art {
        width: 36px;
        height: 36px;
    }

    .sticky-play-btn {
        width: 38px;
        height: 38px;
    }

    .sticky-title {
        font-size: 0.78rem;
    }
}
