:root {
    --bg-color: #0a0a0a;
    --text-color: #f5f5f5;
    --accent-color: #d4af37;
    /* Gold */
    --accent-glow: rgba(212, 175, 55, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Background effects */
.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 30%, #1a1a1a 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, #111 0%, transparent 40%);
    opacity: 0.5;
}

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

.logo img {
    min-height: 70px;
    max-height: 100px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.7;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Sections */
section {
    min-height: 100vh;
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#artist {
    padding-top: 220px;
    /* Extra padding to clear the fixed nav */
}

/* Artist Section (Home) */
#artist {
    display: grid;
    grid-template-columns: 0.6fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.artist-img-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    aspect-ratio: 1 / 1;
}

.artist-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(30%);
    transition: var(--transition);
    cursor: pointer;
}

.artist-img-container:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.bio-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.bio-text {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
}

.bio-text p {
    margin-bottom: 1.5rem;
}

/* Listen Section */
#listen {
    text-align: center;
}

.player-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    max-width: 1200px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.covers-container {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.set-cover {
    width: 400px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.set-cover:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.track-info {
    margin-bottom: 2rem;
}

.track-info h2 {
    font-size: 2rem;
    color: var(--accent-color);
}

.current-track-name {
    font-style: italic;
    opacity: 0.8;
    margin-top: 0.5rem;
    min-height: 1.5rem;
}

/* Custom Audio Player */
.controls {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--accent-color);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 0 20px var(--accent-glow);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--accent-glow);
}

.progress-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: var(--accent-color);
    border-radius: 3px;
    position: absolute;
}

.time-display {
    font-size: 0.8rem;
    font-family: monospace;
}

/* Social Links */
.social-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.social-btn {
    padding: 1rem 2rem;
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-btn:hover {
    border-color: var(--accent-color);
    background: rgba(212, 175, 55, 0.1);
}

/* Contact Section */
#contact {
    text-align: center;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.05));
}

.contact-info {
    margin: 2rem auto;
    max-width: 600px;
    font-size: 1.2rem;
}

.contact-email {
    display: block;
    font-size: 2rem;
    color: var(--accent-color);
    margin: 1rem 0;
    font-weight: bold;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    transform: scale(0.8);
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
}

.lightbox-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 968px) {
    #artist {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bio-content h1 {
        font-size: 3rem;
    }

    .bio-text {
        margin: 0 auto;
    }

    .social-grid {
        flex-wrap: wrap;
    }

    .set-cover {
        width: 300px;
        height: 300px;
    }

    .covers-container {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .bio-content h1 {
        font-size: 2.5rem;
    }

    .player-card {
        padding: 1.5rem;
    }

    .nav-links {
        display: none;
        /* Mobile menu would go here */
    }

    .set-cover {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }

    .covers-container {
        gap: 1rem;
        width: 100%;
    }
}