/* ===================================
   WEST COAST UNDERGROUND RADIO - MOBILE APP UI
   Flutter-Inspired Design System
   =================================== */

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

:root {
    /* Mobile App Color Palette */
    --washington-blue: #1E88E5;
    --oregon-green: #43A047;
    --california-red: #E53935;
    --pure-black: #0D0D0D;
    --card-dark: #1A1A1A;
    --card-darker: #242424;
    --text-primary: #FFFFFF;
    --text-secondary: #B3B3B3;
    --inactive-gray: #757575;
    --bottom-nav-bg: #121212;
    
    /* Neon Colors from Logo */
    --neon-cyan: #00FFFF;
    --neon-green: #00FF00;
    --neon-pink: #FF00FF;
    --neon-yellow: #FFFF00;
    
    /* Gradients */
    --gradient-header: linear-gradient(90deg, #00FFFF, #00FF00, #FF00FF);
    --gradient-west-coast: linear-gradient(135deg, #00FFFF, #00FF00, #FF00FF);
    --gradient-neon: linear-gradient(90deg, #00FFFF, #00FF00);
    
    /* Typography */
    --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: var(--font-system);
    background-color: var(--pure-black);
    background-image: url('images/hip-hop-graffiti-background.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: -1;
    pointer-events: none;
}

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

/* ===================================
   HEADER / APP BAR
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 3px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
}

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

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--neon-cyan);
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--neon-cyan);
}

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

.nav-menu li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-menu li a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.nav-menu li a.active {
    color: var(--california-red);
}

/* ===================================
   MAIN PLAYER SECTION (HOME)
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 40px;
    background: transparent;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    width: 100%;
    max-width: 600px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Album Artwork Section */
.album-art-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px;
}

.album-art-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6), 0 0 60px rgba(0, 255, 0, 0.4), 0 10px 40px rgba(0, 0, 0, 0.6);
    background: var(--card-dark);
    border: 3px solid var(--neon-cyan);
}

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

/* Play Button Overlay */
.album-listen-button-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.album-play-symbol {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    color: var(--pure-black);
    background: var(--neon-cyan);
    border: 3px solid var(--neon-green);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px var(--neon-cyan), 0 0 60px var(--neon-green), 0 4px 20px rgba(0, 255, 255, 0.8);
}

.album-play-symbol:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px var(--neon-cyan), 0 0 80px var(--neon-green), 0 6px 30px rgba(0, 255, 255, 1);
    background: var(--neon-green);
}

.album-play-symbol i {
    font-size: 32px;
}

/* NOW PLAYING Label */
.live-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.live-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--california-red);
    text-transform: uppercase;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--california-red);
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* Track Info */
.song-info {
    margin-bottom: 25px;
}

.track-display {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.artist-display {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Reactions Bar */
.reactions-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
}

.reaction-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.reaction-btn:hover {
    transform: scale(1.1);
    color: var(--california-red);
}

.reaction-btn.active {
    color: var(--california-red);
}

.reaction-btn i {
    font-size: 28px;
}

.reaction-count {
    font-size: 14px;
    font-weight: 600;
}

/* Artist Panel (Expandable) */
.artist-info-section {
    margin-top: 40px;
    background: rgba(36, 36, 36, 0.9);
    border-radius: 15px;
    padding: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

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

.artist-info-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.expand-icon {
    color: var(--neon-cyan);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

.artist-info-section.expanded .expand-icon {
    transform: rotate(180deg);
}

.artist-info-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.artist-info-section.expanded .artist-info-content {
    max-height: 1000px;
}

.artist-bio {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.artist-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.artist-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid var(--neon-cyan);
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.artist-social-link:hover {
    background: var(--neon-cyan);
    color: var(--pure-black);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 0, 0.4);
}

.artist-social-link i {
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

.artist-social-link:hover i {
    color: var(--pure-black);
    filter: none;
}

.book-artist-btn {
    width: 100%;
    padding: 15px;
    background: var(--neon-green);
    color: var(--pure-black);
    border: 3px solid var(--neon-cyan);
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.6), 0 0 30px rgba(0, 255, 255, 0.4);
}

.book-artist-btn:hover {
    background: var(--neon-cyan);
    border-color: var(--neon-green);
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8), 0 0 50px rgba(0, 255, 0, 0.6);
}

/* ===================================
   UP NEXT SECTION
   =================================== */

.coming-next {
    position: relative;
    padding: 60px 20px;
    background: transparent;
}

.coming-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    pointer-events: none;
}

.coming-next > .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.next-track-container {
    max-width: 600px;
    margin: 0 auto;
}

.next-track-card {
    display: flex;
    gap: 15px;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.next-track-card:hover {
    background: rgba(42, 42, 42, 0.95);
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6), 0 0 40px rgba(0, 255, 0, 0.4);
}

.next-track-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.next-track-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.next-track-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.next-track-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

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

/* ===================================
   BOTTOM NAVIGATION (MOBILE)
   =================================== */

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bottom-nav-bg);
    border-top: 1px solid #2a2a2a;
    display: none;
    z-index: 999;
}

.bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--inactive-gray);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 20px;
}

.bottom-nav-item i {
    font-size: 24px;
}

.bottom-nav-item.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.bottom-nav-item:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* ===================================
   HAMBURGER MENU
   =================================== */

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

/* Menu items in order */
.nav-menu li:nth-child(1) a::before { content: ""; }
.nav-menu li:nth-child(2) a::before { content: ""; }
.nav-menu li:nth-child(3) a::before { content: ""; }
.nav-menu li:nth-child(4) a::before { content: ""; }
.nav-menu li:nth-child(5) a::before { content: ""; }
.nav-menu li:nth-child(6) a::before { content: ""; }

/* ===================================
   LYRICS FLOATING BUTTON
   =================================== */

.lyrics-fab {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--neon-green);
    border: 3px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-black);
    font-size: 24px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.6), 0 0 30px rgba(0, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 998;
}

.lyrics-fab:hover {
    transform: scale(1.1);
    background: var(--neon-cyan);
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8), 0 0 50px rgba(0, 255, 0, 0.6);
}

/* ===================================
   SUBMIT TRACK PAGE
   =================================== */

.submit-track-section {
    padding: 120px 20px 60px;
    min-height: 100vh;
    background: var(--pure-black);
}

.submit-track-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-darker);
    border-radius: 15px;
    padding: 40px;
}

.submit-track-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    background: var(--gradient-west-coast);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--card-dark);
    border: 2px solid #2a2a2a;
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-system);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--washington-blue);
}

.required {
    color: var(--california-red);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--neon-cyan);
    color: var(--pure-black);
    border: 3px solid var(--neon-green);
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 0, 0.4);
}

.submit-btn:hover {
    background: var(--neon-green);
    border-color: var(--neon-cyan);
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8), 0 0 50px rgba(0, 255, 0, 0.6);
}

/* ===================================
   GLASS MORPHISM OVERLAYS
   =================================== */

.glass-overlay {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===================================
   ANIMATIONS
   =================================== */

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

.fade-in {
    animation: fadeIn 0.5s ease;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--pure-black);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 4px solid transparent;
        border-image: var(--gradient-header) 1;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .bottom-nav {
        display: block;
    }
    
    .hero {
        padding-bottom: 100px;
    }
    
    .album-art-frame {
        max-width: 300px;
    }
    
    .lyrics-fab {
        bottom: 80px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .album-art-frame {
        max-width: 280px;
    }
    
    .track-display {
        font-size: 18px;
    }
    
    .artist-display {
        font-size: 16px;
    }
    
    .reactions-bar {
        gap: 20px;
    }
    
    .reaction-btn i {
        font-size: 24px;
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--washington-blue);
    outline-offset: 2px;
}

/* ===================================
   DARK THEME THROUGHOUT
   =================================== */

.card {
    background: var(--card-darker);
    border-radius: 12px;
    padding: 20px;
}

.card-dark {
    background: var(--card-dark);
}

/* ===================================
   EXISTING SECTIONS (PRESERVED)
   =================================== */

.about,
.request,
.contact,
.footer {
    position: relative;
    background: transparent;
    padding: 80px 20px;
}

.about::before,
.request::before,
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
    pointer-events: none;
}

.about > .container,
.request > .container,
.contact > .container {
    position: relative;
    z-index: 1;
}

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

.about-image {
    border-radius: 15px;
    overflow: hidden;
}

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

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

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(36, 36, 36, 0.9);
    border-left: 4px solid var(--neon-cyan);
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.feature i {
    font-size: 28px;
    color: var(--neon-cyan);
    min-width: 28px;
    filter: drop-shadow(0 0 8px var(--neon-cyan));
}

.feature h4 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.feature p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.request-form-wrapper,
.contact-form-wrapper {
    background: rgba(36, 36, 36, 0.9);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.info-card {
    background: rgba(36, 36, 36, 0.9);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid var(--neon-cyan);
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.info-card i {
    font-size: 36px;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.info-card h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

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

.footer {
    border-top: 4px solid transparent;
    border-image: var(--gradient-header) 1;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

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

.footer-links h4,
.footer-connect h4 {
    font-size: 16px;
    color: var(--washington-blue);
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

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

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

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

.footer-links a:hover {
    color: var(--washington-blue);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-social a,
.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    color: var(--neon-cyan);
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.footer-social a:hover,
.social-icon:hover {
    background: var(--neon-cyan);
    color: var(--pure-black);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 0, 0.4);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    padding-top: 30px;
    border-top: 1px solid #2a2a2a;
}

@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Events Section */
.upcoming-events {
    position: relative;
    padding: 80px 20px;
    background: transparent;
}

.upcoming-events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
    pointer-events: none;
}

.upcoming-events > .container {
    position: relative;
    z-index: 1;
}

.events-grid {
    display: grid;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.event-card {
    background: rgba(36, 36, 36, 0.9);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6), 0 0 40px rgba(0, 255, 0, 0.4), 0 10px 30px rgba(0, 0, 0, 0.5);
}

.event-flyer {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.event-flyer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card-content {
    padding: 25px;
}

.event-date {
    display: inline-block;
    padding: 8px 16px;
    background: var(--washington-blue);
    border-radius: 8px;
    margin-bottom: 15px;
}

.event-month,
.event-day,
.event-year {
    font-weight: 700;
    color: var(--text-primary);
}

.event-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.event-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.event-info-item i {
    color: var(--washington-blue);
    font-size: 16px;
}

.event-ticket-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--neon-green);
    color: var(--pure-black);
    border: 3px solid var(--neon-cyan);
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.6), 0 0 25px rgba(0, 255, 255, 0.4);
}

.event-ticket-btn:hover {
    background: var(--neon-cyan);
    border-color: var(--neon-green);
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8), 0 0 40px rgba(0, 255, 0, 0.6);
}

/* Existing compatibility styles */
.now-playing {
    display: none;
}

.vinyl-effect {
    display: none;
}

.hero-background,
.hero-overlay,
.hero-bottom-fade {
    display: none;
}

.hero-logo-container {
    display: none;
}

.hero-subtitle {
    display: none;
}

.listen-live-wrapper {
    margin-top: 30px;
}

.current-track {
    display: none;
}

.artist-info-loading,
.artist-info-display,
.artist-info-error,
.artist-info-no-data {
    padding: 20px;
    text-align: center;
}

.artist-sidebar {
    display: none;
}

.request-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

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

.contact-card {
    background: rgba(36, 36, 36, 0.9);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.contact-card i {
    font-size: 40px;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.contact-card h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.contact-card a {
    color: var(--oregon-green);
    text-decoration: none;
    font-size: 16px;
}

.contact-card a:hover {
    color: var(--washington-blue);
}

.social-links {
    background: rgba(36, 36, 36, 0.9);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.social-links h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.request-subtitle,
.contact-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.request-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group select {
    width: 100%;
    padding: 15px;
    background: var(--card-dark);
    border: 2px solid #2a2a2a;
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-system);
    font-size: 16px;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--washington-blue);
}

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

#formStatus,
#requestFormStatus {
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 15px;
    text-align: center;
}

.view-all-events-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--neon-cyan);
    color: var(--pure-black);
    font-weight: 700;
    text-decoration: none;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 3px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 0, 0.4);
}

.view-all-events-btn:hover {
    background: var(--neon-green);
    border-color: var(--neon-cyan);
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8), 0 0 50px rgba(0, 255, 0, 0.6);
}

.no-events-message {
    text-align: center;
    padding: 60px 20px;
}

.no-events-message i {
    font-size: 64px;
    color: var(--washington-blue);
    opacity: 0.5;
    margin-bottom: 20px;
}

.no-events-message h3 {
    color: var(--text-primary);
    font-size: 24px;
    margin-bottom: 10px;
}

.no-events-message p {
    color: var(--text-secondary);
}

.events-loading {
    text-align: center;
    padding: 40px;
}

.events-loading i {
    font-size: 48px;
    color: var(--washington-blue);
    animation: spin 1s linear infinite;
}

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

.copyright-year::after {
    content: "2024";
}
