    :root {
            --primary-neon: #d4cec9; 
            --bg-dark: #0a0a0a;
            --text-light: #e3ab7b;
            --accent-gray: #1a1a1a;
            --input-bg: #252525;
        }

        body {
            font-family: 'Inter', 'Segoe UI', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            margin: 0;
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        /* Hero Section */
        header {
            height: 60vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background: linear-gradient(rgba(0,0,0,0.70), rgba(0,0,0,0.70)), url('../media/top-banner.png') center / cover no-repeat;
            border-bottom: 4px solid var(--primary-neon);
        }

        h1 { font-size: clamp(3rem, 10vw, 5rem); margin: 0; color: var(--primary-neon); letter-spacing: -2px; text-transform: uppercase; }
        .tagline { letter-spacing: 5px; text-transform: uppercase; font-weight: 300; color: #888; }

        /* Navigation */
        nav {
            position: sticky;
            top: 0;
            background: rgba(10, 10, 10, 0.98);
            padding: 1.2rem;
            display: flex;
            justify-content: center; 
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid #333;
        }

        .nav-brand {
            position: absolute;
            left: 30px; 
            color: var(--primary-neon);
            text-decoration: none;
            font-weight: 900;
            font-size: 1.2rem;
            letter-spacing: -1px;
            text-transform: uppercase;
            opacity: 0; 
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s;
        }

        .nav-brand.show { opacity: 1; visibility: visible; }

        nav a { color: var(--text-light); text-decoration: none; margin: 0 15px; font-weight: bold; font-size: 0.85rem; letter-spacing: 1px; transition: 0.3s; }
        nav a:hover { color: var(--primary-neon); }

        .container { max-width: 1100px; margin: auto; padding: 60px 20px; }
        section { margin-bottom: 100px; }
        h2 { font-size: 2.2rem; border-left: 4px solid var(--primary-neon); padding-left: 15px; margin-bottom: 40px; text-transform: uppercase; }

        /* Music Player */
        .player-container {
            background: var(--accent-gray);
            padding: 30px;
            border-radius: 8px;
            border: 1px solid #333;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
        }
.music-grid {
    display: flex;         /* Turns on the magic */
    flex-wrap: wrap;      /* Allows tracks to stack on mobile screens */
    gap: 20px;            /* Adds space between the players */
    justify-content: start; /* Aligns them to the left */
}

.player-container {
    flex: 1;              /* Makes both tracks take up equal width */
    min-width: 300px;     /* Prevents them from getting too squished */
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

        .track-info { flex-grow: 1; }
        .track-title { color: var(--primary-neon); font-weight: bold; font-size: 1.2rem; display: block; }
        audio { width: 100%; filter: invert(100%) hue-rotate(90deg) brightness(1.5); margin-top: 10px; }

        /* Events Table */
        .tour-table { width: 100%; border-collapse: collapse; }
        .tour-table tr { border-bottom: 1px solid #222; }
        .tour-table td { padding: 20px 10px; }
        .date { color: var(--primary-neon); font-weight: bold; width: 20%; }
        .venue { font-weight: 600; width: 30%; }
        .location { color: #888; width: 25%; }
        .time { color: #888; width: 25%; }

        @media (max-width: 768px) {
            .tour-table, .tour-table tr, .tour-table td { display: block; width: 100% !important; }
            .tour-table tr { margin-bottom: 25px; padding: 20px; background: var(--accent-gray); border: 1px solid #333; border-radius: 8px; }
            .tour-table td { padding: 4px 0; text-align: left; }
            .date { font-size: 1.3rem; border-bottom: 1px solid #333; margin-bottom: 10px; padding-bottom: 10px !important; }
            
            /* RESTORED EMOJIS FOR MOBILE */
            .location::before { content: "📍 "; }
            .time::before { content: "🕒 "; }

            .nav-brand { position: static; margin-bottom: 10px; }
            nav { flex-direction: column; }
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 15px;
        }
        .gallery-item { aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid #333; background: #000; }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(80%); transition: 0.6s; }
        .gallery-item:hover img { filter: grayscale(0%); transform: scale(1.05); }

        /* Booking Section */
        .contact-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
        .contact-link { color: var(--primary-neon); text-decoration: none; font-weight: bold; font-size: 1.2rem; display: block; margin-bottom: 20px; }

        @media (max-width: 768px) {
            .contact-flex { grid-template-columns: 1fr; }
            .contact-info { text-align: center; }
            .contact-link { font-size: 1.4rem; padding: 10px; border: 1px solid #333; border-radius: 4px; background: #111; }
        }

        input, textarea { width: 100%; padding: 15px; background: var(--input-bg); border: 1px solid #444; color: white; border-radius: 4px; box-sizing: border-box; margin-bottom: 15px; font-size: 1rem; }
        .submit-btn { background: var(--primary-neon); color: black; border: none; width: 100%; padding: 20px; font-weight: bold; cursor: pointer; text-transform: uppercase; transition: 0.3s; font-size: 1rem; }
        .submit-btn:hover { background: #ff6a2b; }

        /* Success Message Popup */
        #success-message { display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--accent-gray); border: 2px solid var(--primary-neon); padding: 40px; z-index: 2000; text-align: center; border-radius: 8px; box-shadow: 0 0 30px rgba(252, 78, 3, 0.3); }
        #success-message h3 { color: var(--primary-neon); margin-top: 0; }
        #success-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 1999; }

        /* Bio Grid */
        .bio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .bio-card {
            background: var(--accent-gray);
            border-radius: 8px;
            border: 1px solid #333;
            transition: 0.3s;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .bio-card:hover {
            border-color: var(--primary-neon);
            transform: translateY(-5px);
        }

        .member-img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            filter: grayscale(30%);
            transition: 0.5s;
            border-bottom: 1px solid #333;
        }

        .bio-card:hover .member-img {
            filter: grayscale(0%);
        }

        .bio-content {
            padding: 20px;
            flex-grow: 1;
        }

        .member-name {
            color: var(--primary-neon);
            font-size: 1.3rem;
            font-weight: 900;
            display: block;
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .member-role {
            color: #888;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .link { margin-bottom: 30px; }
        .link a { color: var(--text-light); font-size: 1.8rem; margin: 0 15px; transition: 0.3s; text-decoration: none; }
        .link a:hover { color: var(--primary-neon); transform: translateY(-3px); display: inline-block; }
		
        .playlist-link { margin-bottom: 30px; }
        .playlist-link a { color: var(--text-light); font-size: 1rem; margin: 0 15px; transition: 0.3s; text-decoration: none; }
        .playlist link a:hover { color: var(--primary-neon); transform: translateY(-3px); display: inline-block; }

        /* Footer & Socials */
        footer { text-align: center; padding: 60px 20px; background: #000; border-top: 1px solid #222; }
        .social-links { margin-bottom: 30px; }
        .social-links a { color: var(--text-light); font-size: 1.8rem; margin: 0 15px; transition: 0.3s; text-decoration: none; }
        .social-links a:hover { color: var(--primary-neon); transform: translateY(-3px); display: inline-block; }
        .copyright { font-size: 0.8rem; color: #555; text-transform: uppercase; letter-spacing: 2px; }
