:root {
    --bg-primary: #020202;
    --bg-secondary: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --white-muted: rgba(255, 255, 255, 0.6);
    --accent: #d4af37;
    --gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --black-2: #050505;
    --black-4: #0a0a0a;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', 'Inter', sans-serif; }

html { scroll-behavior: smooth; }

body { 
    background: radial-gradient(circle at center, #111 0%, #000 100%);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Luxury Glass Navigation */
#main-nav {
    width: 100%;
    padding: 20px 5%;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.5);
}

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 32px; filter: drop-shadow(0 0 10px var(--gold-glow)); }
.nav-logo span { font-weight: 800; letter-spacing: 0.2rem; text-transform: uppercase; font-size: 0.9rem; }
.nav-hamburger { display: none; }


.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { 
    text-decoration: none; 
    color: var(--white-muted); 
    font-size: 0.7rem; 
    text-transform: uppercase; 
    letter-spacing: 0.15rem; 
    transition: all 0.3s ease; 
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta {
    background: var(--gold);
    color: #000;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: all 0.3s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(212,175,55,0.2); }

/* Common Layout Elements */
section { padding: 8rem 10%; position: relative; }

.section-eyebrow {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-sub {
    color: var(--white-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 4rem;
}

.gold { color: var(--gold); }

/* Music Hero */
.music-hero {
    padding: 12rem 10% 6rem;
    text-align: center;
    background: linear-gradient(0deg, #000 0%, #0a0a0a 100%);
}

.music-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--white-muted);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    border-color: var(--gold);
    color: var(--gold);
}

/* Music Grid */
.music-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.music-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}

.music-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: rgba(255,255,255,0.05);
}

.music-card-cover {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.music-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.music-card:hover .music-card-cover img { transform: scale(1.05); }

.music-card-play {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.music-card:hover .music-card-play { opacity: 1; }

.play-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.music-card:hover .play-icon { transform: scale(1); }

.music-card-info { padding: 1.5rem; }
.music-card-type { font-size: 0.65rem; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; letter-spacing: 0.1em; }
.music-card-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.music-card-artist { font-size: 0.9rem; color: var(--white-muted); margin-bottom: 1.5rem; }

.music-card-links { display: flex; flex-wrap: wrap; gap: 8px; }
.stream-pill {
    font-size: 0.6rem;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white-muted);
    border: 1px solid var(--glass-border);
    padding: 4px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.stream-pill:hover { border-color: var(--gold); color: var(--gold); }

/* Artist Hero */
.artist-hero {
    height: 80vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 10%;
    overflow: hidden;
}

.artist-hero-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
}

.artist-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 95% center;
    filter: brightness(0.6) grayscale(20%);
}

.artist-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #000 30%, transparent 75%),
                linear-gradient(0deg, #000 10%, transparent 40%);
}

.artist-hero-content { max-width: 450px; z-index: 2; }
.artist-hero-content h1 { font-size: clamp(3rem, 5vw, 5rem); line-height: 0.95; margin-bottom: 2rem; font-weight: 900; text-transform: uppercase; letter-spacing: -3px; }
.artist-hero-content p { font-size: 1.1rem; color: var(--white-muted); margin-bottom: 2.5rem; max-width: 420px; }

.hero-actions { display: flex; gap: 20px; }
.btn-primary { background: var(--gold); color: #000; border: none; padding: 15px 35px; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.1rem; cursor: pointer; border-radius: 4px; text-decoration: none; transition: all 0.3s ease; display: inline-block; }
.btn-outline { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 15px 35px; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.1rem; cursor: pointer; border-radius: 4px; text-decoration: none; transition: all 0.3s ease; display: inline-block; }
.btn-primary:hover { background: #fff; box-shadow: 0 15px 30px rgba(212,175,55,0.3); }
.btn-outline:hover { background: var(--gold); color: #000; }

.artist-stats { display: flex; gap: 40px; margin-top: 4rem; }
.artist-stat { display: flex; flex-direction: column; }
.artist-stat span { font-size: 1.5rem; font-weight: 800; color: #fff; }
.artist-stat small { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.2rem; color: var(--gold); }

/* Video Walls */
.video-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.video-card {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
}

.video-card-thumb { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: transform 0.6s ease; }
.video-card:hover .video-card-thumb { transform: scale(1.05); opacity: 0.8; }

.video-card-overlay {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 60%);
}

.coming-soon-badge {
    align-self: flex-start;
    background: var(--gold);
    color: #000;
    padding: 4px 10px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.video-card-title { font-size: 1.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: -0.5px; }
.video-card-artist { font-size: 0.8rem; color: var(--white-muted); }

/* Email Section */
.email-section { text-align: center; background: #050505; border-top: 1px solid var(--glass-border); }
.email-form { display: flex; max-width: 500px; margin: 3rem auto 1.5rem; gap: 10px; }
.email-form input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); padding: 15px 20px; border-radius: 4px; color: #fff; font-size: 0.9rem; }
.email-form input:focus { border-color: var(--gold); outline: none; }
.email-note { font-size: 0.7rem; color: var(--white-muted); }

/* Footer */
footer { padding: 6rem 10% 3rem; background: #000; border-top: 1px solid var(--glass-border); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 6rem; }
.footer-brand img { height: 40px; margin-bottom: 2rem; }
.footer-brand p { color: var(--white-muted); font-size: 0.9rem; max-width: 300px; }
.footer-col h4 { text-transform: uppercase; letter-spacing: 0.2rem; font-size: 0.8rem; margin-bottom: 2rem; color: var(--gold); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 1rem; }
.footer-col a { text-decoration: none; color: var(--white-muted); font-size: 0.85rem; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid var(--glass-border); padding-top: 3rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.75rem; color: var(--white-muted); }
.social-links { display: flex; gap: 20px; }
.social-links a { color: var(--white-muted); text-decoration: none; font-size: 0.75rem; font-weight: 700; transition: color 0.3s ease; }
.social-links a:hover { color: var(--gold); }

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media(max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; }

}

@media(max-width: 1024px) {
    /* Fluid Typography */
    .section-title { font-size: 2.2rem; line-height: 1.2; }
    .artist-hero-content h1 { font-size: clamp(3rem, 12vw, 4.5rem); line-height: 0.95; letter-spacing: -2px; margin-bottom: 1.5rem; }
    .artist-hero-content p { font-size: 1.1rem; }
    
    /* Layout & Spacing */
    section { padding: 5rem 5%; }
    .artist-hero { display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; padding: 40vh 5% 4rem; height: auto; min-height: 100vh; }
    .artist-hero-bg::after {
        background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, #000 100%);
    }
    .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 14px 20px; }
    .artist-stats { margin-top: 3rem; gap: 25px; flex-wrap: wrap; }
    
    /* Overriding Inline Hardcoded 2-Column Grids dynamically safely */
    div[style*="display:grid"][style*="1fr 1fr"],
    div[style*="display: grid"][style*="1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    
    /* Overriding Inline Hardcoded Flexible Video Grids */
    div[style*="display:grid"][style*="repeat"],
    div[style*="display: grid"][style*="repeat"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Footer adjustments */
    .footer-top { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-brand p { margin: 0 auto; }
    .footer-bottom { flex-direction: column; gap: 2rem; text-align: center; }
    
    /* Mobile Navigation Drawer Fixes */
    .nav-hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .nav-hamburger span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--gold);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .nav-hamburger.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .nav-hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-hamburger.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }


    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
        border-bottom: 1px solid var(--glass-border);
        text-align: center;
        box-shadow: 0 15px 30px rgba(0,0,0,0.8);
    }
    
    .nav-links.open {
        display: flex !important;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-cta.open {
        display: block !important;
        width: 80%;
        margin: 1rem auto 0 auto;
        text-align: center;
    }
}


