/* =============================================
   LA RADIO DJ - Premium Dark Theme Styles
   ============================================= */
:root {
    --bg-primary: #06060e;
    --bg-secondary: #0c0c1a;
    --bg-card: rgba(15, 15, 30, 0.8);
    --bg-glass: rgba(20, 20, 40, 0.6);
    --text-primary: #f0f0ff;
    --text-secondary: #8888aa;
    --text-muted: #555570;
    --accent-purple: #a855f7;
    --accent-purple-light: #c084fc;
    --accent-cyan: #06b6d4;
    --accent-pink: #ec4899;
    --accent-gradient: linear-gradient(135deg, #a855f7, #06b6d4);
    --glass-border: rgba(168, 85, 247, 0.15);
    --shadow-glow: 0 0 40px rgba(168, 85, 247, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', 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-purple);
    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(6, 6, 14, 0.9);
    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;
}

.logo-icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 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: 500;
    font-size: 0.95rem;
    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(6, 6, 14, 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-purple);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(168, 85, 247, 0.08) 0%, transparent 50%), radial-gradient(circle at 70% 60%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
    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(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--accent-purple-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(3rem, 7vw, 5.5rem);
    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(168, 85, 247, 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: white;
    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(168, 85, 247, 0.3);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.5);
}

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

/* Vinyl Record */
.hero-visual {
    position: relative;
    z-index: 2;
}

.vinyl-container {
    position: relative;
    width: 340px;
    height: 340px;
}

.vinyl {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, #1a1a2e 20%, #0d0d1a 40%, #1a1a2e 42%, #0d0d1a 60%, #1a1a2e 62%, #0d0d1a 80%, #1a1a2e 82%);
    position: relative;
    animation: vinylSpin 4s linear infinite;
    animation-play-state: paused;
    box-shadow: 0 0 60px rgba(168, 85, 247, 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(168, 85, 247, 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(168, 85, 247, 0.4);
}

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

.vinyl-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 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: 40px 0 100px;
    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: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.03) 0%, transparent 60%);
    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, #2a2a4e 30%, #1a1a2e 60%, #2a2a4e 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-purple-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 {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: var(--accent-gradient);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 30px rgba(168, 85, 247, 0.4);
}

.play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 40px rgba(168, 85, 247, 0.6);
}

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

.play-btn-glow {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: var(--accent-gradient);
    opacity: 0;
    filter: blur(15px);
    transition: var(--transition);
    z-index: -1;
}

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

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

@keyframes playGlow {

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

    50% {
        opacity: 0.6;
        transform: scale(1.15);
    }
}

.play-icon,
.pause-icon {
    width: 32px;
    height: 32px;
}

/* 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-purple);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-purple);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(168, 85, 247, 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-purple-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(168, 85, 247, 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-purple-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-purple-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(168, 85, 247, 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-cyan);
    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: 700;
    font-size: 1rem;
    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-purple-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(168, 85, 247, 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;
}

.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(168, 85, 247, 0.1);
    animation: ringPulse 3s ease-in-out infinite;
}

.dj-circle::after {
    content: '';
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    border: 1px solid rgba(6, 182, 212, 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(168, 85, 247, 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-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-purple-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(168, 85, 247, 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: 100px 24px 60px;
        text-align: center;
        gap: 40px;
    }

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

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

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

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

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

    .listener-count {
        width: 100%;
        justify-content: center;
    }

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

    .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(168, 85, 247, 0.4);
}

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

/* Listener Count */
.listener-count {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-purple-light);
    white-space: nowrap;
    flex-shrink: 0;
}

.listener-icon {
    font-size: 0.9rem;
}

/* 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(168, 85, 247, 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-purple);
}

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

.dj-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    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(168. 85, 247, 0.06);
}

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

.history-track {
    flex: 1;
}

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

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

::-webkit-scrollbar-thumb {
    background: rgba(168, 85, 247, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(168, 85, 247, 0.5);
}

::selection {
    background: rgba(168, 85, 247, 0.3);
    color: white;
}