body {
    background: #040816;
    color: #f5efe5;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background-image:
        radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 4px 4px;
}

/* HERO SECTION */
.music-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 42px 80px;
    text-align: center;
    position: relative;
}

.music-hero-eyebrow {
    color: #dca85b;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.music-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.music-hero-title .accent {
    background: linear-gradient(135deg, #f3be69, #dca85b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.music-hero-description {
    color: rgba(245,239,229,0.7);
    font-size: 18px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
}

.music-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: rgba(245,239,229,0.5);
    font-size: 14px;
}

.music-hero-meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #dca85b;
    opacity: 0.7;
}

/* STREAMING LINKS SECTION */
.streaming-section {
    padding: 60px 42px 120px;
    max-width: 900px;
    margin: 0 auto;
}

.streaming-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
}

.streaming-grid > .streaming-card {
    width: 100%;
}

.streaming-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(220,168,91,0.06), rgba(220,168,91,0.02));
    border: 1px solid rgba(220,168,91,0.12);
    border-radius: 16px;
    text-decoration: none;
    color: #f5efe5;
    transition: all 0.35s ease;
}

.streaming-card:hover {
    background: linear-gradient(135deg, rgba(220,168,91,0.12), rgba(220,168,91,0.04));
    border-color: rgba(220,168,91,0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.streaming-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    font-size: 24px;
}

.streaming-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.streaming-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: #f5efe5;
    letter-spacing: 0.02em;
}

.streaming-card-action {
    color: rgba(245,239,229,0.5);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.streaming-card:hover .streaming-card-action {
    color: #dca85b;
}

/* RELEASES SECTION */
.releases-section {
    padding: 80px 42px 120px;
    max-width: 900px;
    margin: 0 auto;
}

.releases-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: #dca85b;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.release-card {
    background: linear-gradient(135deg, rgba(220,168,91,0.06), rgba(220,168,91,0.02));
    border: 1px solid rgba(220,168,91,0.12);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.35s ease;
}

.release-card:hover {
    border-color: rgba(220,168,91,0.25);
    transform: translateY(-3px);
}

.release-card-cover {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1;
    border-radius: 12px;
    margin: 0 auto 24px;
    object-fit: cover;
    border: 1px solid rgba(220,168,91,0.15);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    transition: transform 0.35s ease;
}

.release-card:hover .release-card-cover {
    transform: scale(1.03);
}

.release-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: #f5efe5;
    margin-bottom: 6px;
}

.release-card-meta {
    color: rgba(245,239,229,0.5);
    font-size: 14px;
    margin-bottom: 20px;
}

.release-card-link {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid rgba(220,168,91,0.3);
    border-radius: 10px;
    color: #dca85b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.release-card-link:hover {
    background: rgba(220,168,91,0.1);
    border-color: #dca85b;
}

/* ABOUT ARTIST SECTION */
.artist-about {
    padding: 80px 42px 120px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.artist-about-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: #dca85b;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.artist-about-text {
    color: rgba(245,239,229,0.7);
    font-size: 17px;
    line-height: 1.9;
    font-style: italic;
}

.artist-about-text strong {
    color: #f5efe5;
    font-style: normal;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .music-hero {
        padding: 100px 24px 60px;
    }

    .streaming-section {
        padding: 40px 24px 80px;
    }

    .streaming-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .streaming-card {
        padding: 22px 24px;
    }

    .releases-section {
        padding: 60px 24px 80px;
    }

    .releases-title {
        font-size: 32px;
    }

    .releases-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .artist-about {
        padding: 60px 24px 80px;
    }

    .artist-about-title {
        font-size: 28px;
    }
}
