:root {
    --bg-primary: #020202;
    --bg-secondary: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #d4af37;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

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

/* Luxury Glass Navigation */
header {
    width: 100%;
    padding: 25px 0;
    position: fixed;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.nav-menu a:hover { color: var(--accent); letter-spacing: 0.25rem; }

/* The Central Emblem */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main-emblem {
    width: 450px;
    height: 450px;
    background: url('../assets/emblem.png') no-repeat center center;
    background-size: contain;
    filter: drop-shadow(0 0 80px rgba(212, 175, 55, 0.15));
    opacity: 0.9;
    animation: floating 6s infinite ease-in-out;
}

@keyframes floating {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.02); }
}

.main-logo-text {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1.2rem;
    text-transform: uppercase;
    margin-top: 20px;
    color: var(--accent);
}

/* Artist & Discography Styling */
.artist-page { padding: 150px 10%; }

.artist-header {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.artist-main-photo {
    width: 400px;
    height: 400px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

.artist-info h1 { font-size: 4rem; letter-spacing: 0.5rem; text-transform: uppercase; margin-bottom: 20px; }
.artist-info p { color: var(--text-secondary); font-size: 1.1rem; max-width: 600px; }

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

.album-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 20px;
    transition: all 0.3s ease;
}

.album-card:hover { border-color: var(--accent); transform: translateY(-5px); }

.album-art { width: 100%; aspect-ratio: 1/1; background-color: #222; margin-bottom: 15px; }

.album-card h3 { font-size: 0.9rem; letter-spacing: 0.1rem; text-transform: uppercase; }
