/* ================================
   JOCKS CAFE RADIO - STYLES
   90s Rave Aesthetic Made Modern
   ================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Neon Color Palette */
    --neon-pink: #ff0080;
    --neon-cyan: #00ffff;
    --neon-yellow: #ffff00;
    --neon-purple: #bd00ff;
    --neon-green: #39ff14;
    --neon-orange: #ff6600;

    /* Dark Theme */
    --bg-dark: #0a0a0f;
    /* Keeping base for fallback */
    --bg-secondary: rgba(19, 19, 26, 0.8);
    /* Semi-transparent for layering */
    --bg-card: rgba(26, 26, 36, 0.7);
    /* Glassmorphism base */
    --text-primary: #ffffff;
    --text-secondary: #b8b8c8;
    --text-muted: #6e6e80;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    --gradient-accent: linear-gradient(135deg, var(--neon-cyan), var(--neon-green));

    /* Typography */
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 20px;

    /* Effects */
    --shadow-glow: 0 0 20px rgba(255, 0, 128, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    /* Removed animation: fadeIn since we handle it via JS reveal now */
}

/* Scroll Reveal Animations */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered transition delays for grid items */
.djs-grid .dj-card:nth-child(2) {
    transition-delay: 0.1s;
}

.djs-grid .dj-card:nth-child(3) {
    transition-delay: 0.2s;
}

.recent-tracks-grid .track-card:nth-child(2) {
    transition-delay: 0.1s;
}

.recent-tracks-grid .track-card:nth-child(3) {
    transition-delay: 0.2s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.header.header-hidden {
    transform: translateY(-100%);
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.logo-img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-list a:hover,
.nav-list a.active {
    color: var(--neon-pink);
}

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

.listen-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
}

.listen-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
}

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

@keyframes pulse {

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

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--neon-pink);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.6) 0%, rgba(10, 10, 15, 0.8) 100%), url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-station-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 18px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(60px, 12vw, 120px);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 20px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.glitch {
    position: relative;
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glitch 3s infinite;
}

@keyframes glitch {

    0%,
    90%,
    100% {
        transform: translate(0);
    }

    91% {
        transform: translate(-2px, 2px);
    }

    92% {
        transform: translate(2px, -2px);
    }

    93% {
        transform: translate(-2px, -2px);
    }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn {
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--neon-cyan);
}

.btn-outline:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

.btn-small {
    padding: 10px 24px;
    font-size: 12px;
}

.hero-genres {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-genres span {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--neon-pink);
    top: 10%;
    left: 10%;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--neon-cyan);
    bottom: 20%;
    right: 10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: var(--neon-purple);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {

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

    25% {
        transform: translate(50px, 50px);
    }

    50% {
        transform: translate(-30px, 80px);
    }

    75% {
        transform: translate(60px, -40px);
    }
}

/* Now Playing Section */
.now-playing {
    padding: var(--section-padding);
    position: relative;
}

.now-playing .container {
    display: flex;
    justify-content: center;
}

.live365-embed {
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    position: relative;
}

.live365-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.live365-embed-sm {
    max-width: 300px;
    aspect-ratio: 300 / 614;
}

.now-playing-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 0, 128, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.now-playing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.now-playing-visual {
    position: relative;
    flex-shrink: 0;
}

.vinyl-spinner {
    width: 200px;
    height: 200px;
    position: relative;
}

.vinyl-disc {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, var(--bg-dark) 0%, var(--bg-dark) 30%, var(--bg-secondary) 30%, var(--bg-secondary) 35%, var(--bg-dark) 35%, var(--bg-dark) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 0, 128, 0.3);
    animation: spin 4s linear infinite;
    border: 2px solid rgba(255, 0, 128, 0.3);
}

.vinyl-disc::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
}

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

    to {
        transform: rotate(360deg);
    }
}

.equalizer {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    align-items: flex-end;
}

.equalizer .bar {
    width: 4px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: equalize 0.8s ease-in-out infinite;
}

.equalizer .bar:nth-child(2) {
    animation-delay: 0.1s;
    height: 30px;
}

.equalizer .bar:nth-child(3) {
    animation-delay: 0.2s;
    height: 25px;
}

.equalizer .bar:nth-child(4) {
    animation-delay: 0.3s;
    height: 35px;
}

.equalizer .bar:nth-child(5) {
    animation-delay: 0.4s;
    height: 22px;
}

@keyframes equalize {

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

    50% {
        transform: scaleY(1.5);
    }
}

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

.now-playing-label {
    margin-bottom: 15px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 0, 128, 0.2);
    border: 1px solid var(--neon-pink);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.now-playing-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.now-playing-artist {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* Recent Tracks Section */
.recent-tracks {
    padding: var(--section-padding);
    background: url('../images/retro_stack.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.recent-tracks::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.75);
    z-index: 1;
}

.recent-tracks .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
}

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

.now-playing-section {
    padding: var(--section-padding);
}

.recent-tracks-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.track-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.track-card:hover {
    transform: translateX(10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
}

.recent-tracks-grid-embed {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.track-card-embed {
    padding: 0;
    justify-content: center;
    overflow: hidden;
    border: 2px solid rgba(255, 0, 128, 0.5);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

.track-card-embed:hover {
    transform: none;
    border-color: rgba(255, 0, 128, 0.5);
    box-shadow: var(--shadow-card);
}

.live365-embed-played {
    width: 100%;
    max-width: 620px;
    height: auto; /* Allow aspect-ratio to control height */
}

.live365-embed-playing {
    width: 100%;
}

.desktop-player {
    max-width: 620px;
    /* Aspect ratios are defined per component type below */
}

.desktop-player.live365-embed-playing {
    aspect-ratio: 600 / 336;
}

.desktop-player.live365-embed-played {
    aspect-ratio: 600 / 550;
}

.mobile-player {
    max-width: 320px;
    aspect-ratio: 300 / 614;
    margin: 0 auto;
}

.legal-badge-container {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.legal-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--neon-green);
    border-radius: 12px;
    padding: 12px 24px;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.15);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.legal-badge:hover {
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.3);
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.6);
}

.legal-icon {
    color: var(--neon-green);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.legal-content {
    display: flex;
    flex-direction: column;
}

.legal-title {
    color: var(--neon-green);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.legal-subtitle {
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
}

.live365-brand {
    color: #ff0000; /* Live365 Red */
    font-weight: 800;
}

.live365-logo-icon {
    width: 24px;
    height: 24px;
    color: #ff0000;
    opacity: 0.8;
    margin-left: 5px;
}

.track-number {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    color: var(--neon-cyan);
    min-width: 40px;
}

.track-info {
    flex: 1;
}

.track-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.track-artist {
    font-size: 14px;
    color: var(--text-secondary);
}

.track-time {
    font-size: 14px;
    color: var(--text-muted);
    font-family: monospace;
}

/* Featured DJs Section */
.featured-djs {
    padding: var(--section-padding);
}

.djs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.dj-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.dj-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--neon-pink);
}

.dj-image {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-dark));
    overflow: hidden;
}

.dj-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dj-card:hover .dj-image img {
    transform: scale(1.1);
}

.dj-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.dj-label {
    padding: 6px 12px;
    background: rgba(255, 0, 128, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dj-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    padding: 20px 25px 10px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.dj-genre {
    padding: 0 25px 10px;
    color: var(--neon-cyan);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dj-bio {
    padding: 0 25px 25px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Shoutbox Section */
.shoutbox-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
}

.shoutbox-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 0, 128, 0.2);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card);
}

/* Genre Guide Section */
.genre-guide-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-dark) 0%, #13131a 100%);
}

.join-crew-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #13131a 0%, var(--bg-dark) 100%);
}

.join-crew-subtitle {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
    color: var(--text-secondary);
    font-size: 18px;
}

.join-crew-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.join-crew-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.join-crew-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
    border-color: var(--neon-pink);
}

.join-crew-heading {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
}

.join-crew-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.join-crew-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.join-crew-tags span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
}

.join-crew-btn {
    align-self: flex-start;
}

/* Schedule Page Styles */
.page-hero {
    padding: 150px 20px 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 900;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.schedule-section {
    padding: var(--section-padding);
}

.schedule-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.schedule-nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 12px 25px;
    border-radius: 30px;
    font-family: var(--font-display);
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.schedule-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-cyan);
    color: white;
    transform: translateY(-2px);
}

.schedule-nav-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.4);
}

.schedule-day-group {
    display: none;
    margin-bottom: 50px;
    animation: fadeIn 0.5s ease-out;
}

.schedule-day-group.active {
    display: block;
}

.schedule-day-header {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 4px solid var(--neon-pink);
    text-transform: uppercase;
}

.schedule-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 0;
}

.show-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 30px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 25px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.show-card:hover {
    border-color: var(--neon-cyan);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
}

.show-time {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--neon-cyan);
    text-align: center;
    min-width: 120px;
}

.show-day {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.show-info h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.show-dj {
    color: var(--neon-pink);
    font-weight: 600;
    margin-bottom: 8px;
}

.show-genre {
    color: var(--text-secondary);
    font-size: 14px;
}

.show-listen {
    min-width: 100px;
    text-align: right;
}

.dj-profiles {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.dj-profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.dj-profile {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dj-profile-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-dark));
    position: relative;
    overflow: hidden;
}

.dj-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dj-profile-content {
    padding: 30px;
}

.dj-profile h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.dj-profile-specialty {
    color: var(--neon-pink);
    font-weight: 600;
    margin-bottom: 15px;
}

.dj-profile-bio {
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .show-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .show-time {
        min-width: auto;
    }

    .show-listen {
        text-align: center;
    }
}


.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-size: 1.1rem;
    margin-top: -30px; /* Pull closer to title */
}

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

.genre-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.genre-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: rgba(255, 255, 255, 0.1);
}

.genre-title {
    font-family: var(--font-display);
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.text-cyan { color: var(--neon-cyan); }
.text-pink { color: var(--neon-pink); }
.text-yellow { color: var(--neon-yellow); }
.text-purple { color: var(--neon-purple); }
.text-green { color: var(--neon-green); }
.text-orange { color: var(--neon-orange); }

.genre-desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.genre-bpm {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 14px;
    letter-spacing: 1px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .shoutbox-container {
        grid-template-columns: 1fr;
    }
}

.shoutbox-form-col {
    padding: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.shoutbox-display-col {
    padding: 40px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.shout-form h3,
.shout-display-header h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 20px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Honeypot - Visually Hidden */
.security-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.math-challenge {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

#shoutList {
    flex: 1;
    overflow-y: auto;
    max-height: 350px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Custom Scrollbar */
#shoutList::-webkit-scrollbar {
    width: 6px;
}

#shoutList::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

#shoutList::-webkit-scrollbar-thumb {
    background: var(--neon-purple);
    border-radius: 3px;
}

.shout-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid var(--neon-cyan);
    animation: fadeIn 0.3s ease-in;
}

.shout-item:nth-child(even) {
    border-left-color: var(--neon-pink);
}

.shout-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 12px;
}

.shout-author {
    font-weight: 700;
    color: var(--text-primary);
}

.shout-time {
    color: var(--text-muted);
}

.shout-message {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.4;
}

.btn-submit {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-submit.success {
    background: var(--neon-green);
    color: black;
}

.section-cta {
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(255, 0, 128, 0.6), rgba(189, 0, 255, 0.6)), url('../images/abstract_art.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    mix-blend-mode: overlay;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: white;
    color: var(--neon-pink);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* App Section */
.app-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
    position: relative;
    text-align: center;
}

.app-content {
    max-width: 800px;
    margin: 0 auto;
}

.app-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-btn {
    transition: transform 0.3s ease;
    display: inline-block;
}

.app-btn:hover {
    transform: translateY(-5px);
}

.app-btn img {
    height: 60px;
    width: auto;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo img {
    height: 65px;
    width: auto;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    padding: 8px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.footer-badge img {
    height: 28px;
    width: auto;
    display: block;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

.footer-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 14px;
}

/* Radio Player Popup */
.player-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 340px;
    max-height: calc(100vh - 40px);
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 0, 128, 0.3);
    z-index: 10000;
    transform: translateY(500px);
    transition: transform 0.4s ease;
    overflow: auto;
}

.player-popup.active {
    transform: translateY(0);
}

.player-container {
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.player-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    width: 100%;
}

.player-logo img {
    height: 40px;
    width: auto;
}

.player-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.player-close:hover {
    background: rgba(255, 0, 128, 0.2);
    color: var(--neon-pink);
}

.player-visual {
    position: relative;
    margin-bottom: 20px;
}

.player-vinyl {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
}

.player-vinyl .vinyl-disc {
    width: 100%;
    height: 100%;
}

.player-vinyl .vinyl-disc.spinning {
    animation: spin 4s linear infinite;
}

.player-equalizer {
    display: flex;
    justify-content: center;
    gap: 4px;
    align-items: flex-end;
    height: 40px;
}

.player-equalizer .bar {
    width: 6px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: equalize 0.8s ease-in-out infinite;
}

.player-info {
    text-align: center;
    margin-bottom: 20px;
}

.player-status {
    margin-bottom: 10px;
}

.player-track {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 5px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.player-artist {
    font-size: 14px;
    color: var(--text-secondary);
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.control-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    flex-shrink: 0;
}

.control-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.6);
}

.pause-icon.hidden,
.play-icon.hidden {
    display: none;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.volume-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--gradient-primary);
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--gradient-primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.hidden {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        z-index: 1001;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(10px);
        padding: 120px 20px 30px;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .mobile-toggle {
        display: flex;
        position: relative;
        z-index: 1002;
        padding: 10px;
        touch-action: manipulation;
    }

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

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

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

    .listen-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
    }

    .hero {
        min-height: 80vh;
        padding: 170px 20px 60px;
    }

    body .page-hero,
    body .about-hero,
    body .listen-hero {
        padding-top: 170px;
    }

    .hero-genres {
        font-size: 10px;
    }

    .now-playing-card {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }

    .vinyl-spinner {
        width: 150px;
        height: 150px;
    }

    .now-playing-title {
        font-size: 28px;
    }

    .player-popup {
        left: 20px;
        right: 20px;
        width: auto;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }
}

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

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

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

    /* Custom Player Mobile Optimizations */
    .custom-player-card {
        padding: 16px;
    }

    .player-controls-row {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .volume-container {
        width: 100%;
        margin-top: 10px;
    }

    /* History List Mobile Optimizations */
    .history-item {
        padding: 10px;
        flex-wrap: wrap;
    }
    
    .history-time {
        font-size: 11px;
        margin-right: 10px;
    }
    
    .history-title {
        font-size: 14px;
    }
    
    .history-artist {
        font-size: 12px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Player Visibility Toggles */
.mobile-player {
    display: none;
}

.desktop-player {
    display: block;
}

/* Additional Mobile Fixes for Player Embeds */
@media (max-width: 768px) {
    .mobile-player {
        display: block;
    }

    .desktop-player {
        display: none;
    }
    
    /* Ensure aspect ratio is respected on mobile */
    .live365-embed-playing,
    .live365-embed-played {
        width: 100%;
        height: auto;
    }
    
    .hero-title {
        font-size: clamp(40px, 12vw, 60px);
    }
}

/* On Air Display */
.on-air-display {
    margin: 20px 0 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    display: inline-block;
    min-width: 300px;
    max-width: 100%;
    animation: fadeIn 0.5s ease-out;
}

.on-air-badge {
    display: inline-block;
    background: var(--neon-pink);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.on-air-title {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--neon-cyan);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.on-air-genre {
    color: var(--text-secondary);
    font-size: 14px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.now-playing-track {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: fadeIn 0.5s ease-out;
}

.track-icon {
    font-size: 18px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Custom Player Styles */
.custom-player-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--neon-cyan);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

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

.live-indicator {
    color: var(--neon-pink);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot-small {
    width: 8px;
    height: 8px;
    background: var(--neon-pink);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.station-id {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    letter-spacing: 1px;
}

.player-display {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.player-artwork-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 12px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at center, #050505 0%, #020202 45%, #000 100%),
        repeating-radial-gradient(circle at center,
            rgba(255, 255, 255, 0.12) 0px,
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px,
            transparent 3px);
    border: 2px solid rgba(0, 243, 255, 0.9);
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.6);
}

.player-artwork-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #000;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
    z-index: 3;
}

.player-artwork {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55%;
    height: 55%;
    border-radius: 50%;
    object-fit: contain;
    display: block;
    z-index: 2;
}

.custom-player-card.playing .player-artwork-wrapper {
    animation: spin 5s linear infinite;
}

.track-info-scroller {
    text-align: center;
    z-index: 2;
    position: relative;
}

.current-track-title {
    color: white;
    font-size: 18px;
    margin-bottom: 4px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.current-track-artist {
    color: var(--neon-cyan);
    font-size: 14px;
    margin: 0;
}

.visualizer-bars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-top: 15px;
    height: 20px;
    align-items: flex-end;
}

.visualizer-bars span {
    width: 4px;
    background: var(--neon-cyan);
    height: 3px;
    border-radius: 2px;
    transition: height 0.1s ease;
}

.custom-player-card.playing .visualizer-bars span {
    animation: equalize 1s infinite;
}

.custom-player-card.playing .visualizer-bars span:nth-child(odd) {
    animation-duration: 0.8s;
}
.custom-player-card.playing .visualizer-bars span:nth-child(2n) {
    animation-duration: 1.1s;
}
.custom-player-card.playing .visualizer-bars span:nth-child(3n) {
    animation-duration: 1.3s;
}

@keyframes equalize {
    0% { height: 3px; }
    50% { height: 15px; }
    100% { height: 3px; }
}

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

.main-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.main-play-btn:hover {
    background: var(--neon-cyan);
    color: black;
    box-shadow: 0 0 20px var(--neon-cyan);
}

.volume-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.volume-slider {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--neon-cyan);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.player-footer-legal {
    text-align: center;
    margin-top: 15px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

/* Custom History/Recently Played Styles */
.custom-history-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--neon-pink);
    box-shadow: 0 0 20px rgba(189, 0, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.recently-played-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.history-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--neon-cyan);
}

.history-time {
    color: var(--neon-pink);
    font-family: monospace;
    font-size: 13px;
    margin-right: 15px;
    min-width: 50px;
}

.history-track-info {
    flex-grow: 1;
}

.history-title {
    color: white;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 2px;
}

.history-artist {
    color: var(--text-secondary);
    font-size: 13px;
}

.loading-history {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    font-style: italic;
}

.history-footer-legal {
    text-align: right;
    margin-top: 15px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 10px;
}

/* Mobile Optimizations */
@media (max-width: 600px) {
    .custom-player-card, 
    .custom-history-card {
        padding: 16px;
    }

    .player-controls-row {
        gap: 10px;
    }

    .main-play-btn {
        width: 48px;
        height: 48px;
    }

    .main-play-btn svg {
        width: 24px;
        height: 24px;
    }

    .history-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px;
    }

    .history-time {
        font-size: 11px;
        opacity: 0.7;
        margin-bottom: 2px;
    }

    .history-title {
        font-size: 14px;
    }

    .history-artist {
        font-size: 12px;
    }

    /* Hero adjustments for small screens */
    .hero-title {
        font-size: clamp(40px, 12vw, 60px);
    }
    
    .hero-station-title {
        font-size: 18px;
        letter-spacing: 3px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
}

/* Ensure mobile nav is visible and clickable */
@media (max-width: 968px) {
    .nav {
        padding-top: 100px; /* Ensure content starts below header */
    }
}

/* =========================================
   Contact Page Styles
   ========================================= */
.contact-section {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.6);
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-method-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--neon-cyan);
}

.contact-method-icon {
    font-size: 24px;
}

.contact-method-text {
    color: var(--text-secondary);
}

/* =========================================
   About Page Styles
   ========================================= */
.about-hero {
    padding: 150px 20px 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
}

.about-content {
    padding: var(--section-padding);
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.about-section h2 .accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 20px;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -47px;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--neon-pink);
    box-shadow: 0 0 20px var(--neon-pink);
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    color: var(--neon-cyan);
    margin-bottom: 10px;
}

.timeline-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* =========================================
   Gallery Page Styles
   ========================================= */
.gallery-section {
    padding: var(--section-padding);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-dark));
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--neon-pink);
    box-shadow: 0 10px 40px rgba(255, 0, 128, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--text-secondary);
    font-size: 48px;
    text-align: center;
    padding: 20px;
}

.gallery-placeholder-text {
    font-size: 14px;
    margin-top: 15px;
    font-weight: 600;
}

/* =========================================
   Listen Page Styles
   ========================================= */
.listen-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 120px 20px 80px;
}

.listen-content {
    max-width: 700px;
    margin: 0 auto;
}

.listen-vinyl {
    width: 300px;
    height: 300px;
    margin: 0 auto 50px;
}

.listen-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 900;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.listen-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.listen-cta {
    margin-bottom: 60px;
}

.listen-cta .btn-primary {
    font-size: 18px;
    padding: 20px 50px;
}

.stream-info {
    padding: 60px 20px;
    background: var(--bg-secondary);
}

.stream-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stream-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stream-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.stream-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
}

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

/* =========================================
   Mobile Responsiveness Additions
   ========================================= */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .values-grid,
    .gallery-grid,
    .stream-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .listen-vinyl {
        width: 200px;
        height: 200px;
    }
}
