/* =========================================================
   STORMWAVE MUSIC LABEL - PREMIUM MASTER CSS
   ========================================================= */

/* 1. Genel Ayarlar ve S�f�rlama */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #050507; /* Simsiyah yerine �ok derin bir gece mavisi/siyah� */
    color: #f4f4f5;
    line-height: 1.6;
    overflow-x: hidden;
}

/* 2. Cam Efektli (Glassmorphism) Navigasyon */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(5, 5, 7, 0.7);
    backdrop-filter: blur(15px); /* Arkay� flula�t�ran o premium Apple efekti */
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 1.3rem;
    text-decoration: none;
    border: 0;
    box-shadow: none;
    display: inline-block;
    background: none;
    color: #e4e4e7;
}

.logo__text {
    background: linear-gradient(90deg, #ffffff, #6b7280);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo:hover,
.logo:visited,
.logo:focus,
.logo:focus-visible,
.logo:active {
    text-decoration: none;
}

nav a {
    color: #a1a1aa;
    text-decoration: none;
    margin-left: 2.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    nav a:hover, nav a.active {
        color: #ffffff;
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.5); /* Men�de parlayan hover efekti */
    }

/* 3. Hero Section (G�rseller Art�k G�z�k�yor!) */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Kapkaranl�k perdeyi kald�rd�k, g�rsel art�k net! */
    background: linear-gradient(to bottom, rgba(5, 5, 7, 0.3), rgba(5, 5, 7, 1)), url('https://images.unsplash.com/photo-1459749411175-04bf5292ceea?q=80&w=1920&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
}

.page-header {
    background: linear-gradient(to bottom, rgba(5, 5, 7, 0.5), rgba(5, 5, 7, 1)), url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?q=80&w=1920&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
}

/* 4. Canl� ve Metalik Yaz� Tipleri */
.label-tag {
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: #38bdf8; /* S�n�k gri yerine, hafif elektrik mavisi dokunu� */
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.artist-name {
    font-size: 5.5rem;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* 5. Aktif ve Parlayan Butonlar */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(45deg, #2563eb, #3b82f6, #60a5fa); /* Elektrik Mavisi Canl� Buton */
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    border: none;
}

    .btn-primary:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 30px rgba(37, 99, 235, 0.5); /* �st�ne gelince parlar ve b�y�r */
    }

.btn-secondary {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
    margin-top: 1rem;
}

    .btn-secondary:hover {
        background-color: #ffffff;
        color: #050507;
        transform: translateY(-5px);
    }

/* 6. ��erik ve Kart Tasar�mlar� (Daha Derin ve Modern) */
.bio-section, .contact-section {
    padding: 8rem 10%;
}

h2, h3 {
    font-weight: 800;
}

/* Artists page — roster block (extra top space so title isn’t clipped under fixed nav / animation) */
.artist-grid-section {
    padding: clamp(6.5rem, 12vw, 10rem) 10% clamp(7rem, 12vw, 11rem);
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.artist-roster-heading {
    font-size: clamp(1.85rem, 4.5vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-align: center;
    width: 100%;
    max-width: 100%;
    color: #fafafa;
    line-height: 1.3;
    margin: 0 0 clamp(2.5rem, 5vw, 4rem);
    padding-top: 0.5em;
    box-sizing: border-box;
}

/* Softer motion so the heading isn’t clipped while fade-up runs */
.artist-grid-section.fade-up {
    animation-name: fadeInUpSoft;
}

@keyframes fadeInUpSoft {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.artist-card {
    display: block;
    text-decoration: none;
    border-radius: 16px; /* Daha yumu�ak k��eler */
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.artist-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.artist-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(56, 189, 248, 0.15); /* �zerine gelince mavi aura verir */
}

    .artist-card:hover .artist-image {
        transform: scale(1.08);
    }

.artist-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(transparent, rgba(5, 5, 7, 0.95) 80%);
    color: #ffffff;
}

    .artist-info h3 {
        font-size: 2rem;
        letter-spacing: -1px;
        margin-bottom: 0.5rem;
    }

    .artist-info p {
        color: #38bdf8;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        opacity: 0.8;
        transform: translateY(10px);
        transition: all 0.4s ease;
    }

.artist-card:hover .artist-info p {
    opacity: 1;
    transform: translateY(0);
}

/*
 * Roster cards: .artist-card-body stays in normal flow (not .artist-info, which is
 * absolute and collapses without a sized photo). Photo is a fixed-ratio strip on top.
 */
.artist-card.artist-card--roster {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    aspect-ratio: unset;
    height: 100%;
}

.artist-card--roster .artist-card-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
    overflow: hidden;
    background: #141416;
}

.artist-card--roster .artist-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
}

.artist-card--roster:hover .artist-card-photo img {
    transform: scale(1.05);
}

.artist-card.artist-card--roster .artist-card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 0;
    padding: 0.7rem 0.65rem 0.75rem;
    color: #ffffff;
    background: linear-gradient(165deg, #221a2e 0%, #16161a 50%, #0f0f12 100%);
    border-radius: 0;
    box-sizing: border-box;
}

.artist-card.artist-card--roster .artist-card-body h3 {
    font-size: 0.92rem;
    letter-spacing: -0.02em;
    margin: 0 0 0.22rem;
    line-height: 1.2;
}

/* Roster: compact square grid + equal-height cards (same row stretches to tallest).
   auto-fit (not auto-fill) collapses empty tracks so the row stays centered on wide viewports. */
.artist-grid.artist-grid--square {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, 176px);
    gap: 0.85rem;
    justify-content: center;
    justify-items: stretch;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.artist-grid.artist-grid--square .artist-card.artist-card--roster {
    width: 100%;
    max-width: 176px;
    margin: 0;
    min-height: 0;
    align-self: stretch;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    min-width: 11rem;
    overflow: hidden;
}

.artist-grid.artist-grid--square .artist-card--roster:hover {
    transform: translateY(-4px);
}

/* Badge: purple pill, top-left */
.artist-grid.artist-grid--square .artist-card-badge {
    position: absolute;
    top: 0.45rem;
    left: 0.45rem;
    right: auto;
    z-index: 2;
    padding: 0.25rem 0.5rem;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f5f3ff;
    background: linear-gradient(135deg, #5b21b6 0%, #a855f7 55%, #7c3aed 100%);
    border-radius: 999px;
    box-shadow: 0 2px 12px rgba(91, 33, 182, 0.5);
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.artist-card-genre {
    color: #a1a1aa !important;
    font-size: 0.65rem !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0.02em !important;
    margin-bottom: 0.35rem !important;
    opacity: 0.95 !important;
    transform: none !important;
}

.artist-grid.artist-grid--square .artist-card--roster .artist-card-genre {
    color: #7dd3fc !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    font-size: 0.52rem !important;
    line-height: 1.25 !important;
}

.artist-card-cta {
    color: #38bdf8 !important;
    font-size: 0.6rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
    margin-bottom: 0 !important;
    opacity: 0.9 !important;
    transform: none !important;
}

.artist-grid.artist-grid--square .artist-card--roster .artist-card-body h3 {
    font-size: 0.82rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.2rem;
    line-height: 1.15;
}

.artist-grid.artist-grid--square .artist-card--roster .artist-card-cta {
    font-size: 0.48rem !important;
    letter-spacing: 0.1em !important;
}

@media (max-width: 400px) {
    .artist-grid.artist-grid--square {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 188px;
    }

    .artist-grid.artist-grid--square .artist-card--roster {
        max-width: 188px;
        justify-self: center;
    }
}

.artist-grid.artist-grid--square .artist-card--roster:hover .artist-card-genre,
.artist-grid.artist-grid--square .artist-card--roster:hover .artist-card-cta {
    opacity: 1;
}

/* 7. Spotify Alan� ve Formlar */
.spotify-embed-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #000;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    overflow: hidden;
}

input, select, textarea {
    transition: all 0.3s ease;
}

    input:focus, select:focus, textarea:focus {
        outline: none;
        border-color: #38bdf8 !important; /* Forma t�klay�nca mavi yanar */
        box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
    }

/* Contact page � grid children must shrink so name fields don�t overflow */
.contact-page-grid > div {
    min-width: 0;
}

.contact-form-name-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.contact-form-name-row input {
    width: 100%;
    min-width: 0;
}

@media (max-width: 520px) {
    .contact-form-name-row {
        grid-template-columns: 1fr;
    }
}

/* 8. Kurumsal Footer */
footer {
    padding: 5rem 10% 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    background-color: #030304;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.legal-links a {
    color: #a1a1aa;
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

    .legal-links a:hover {
        color: #38bdf8;
    }

/* 9. YEN� CSS AN�MASYONU (G�R�NMEZL�K SORUNUNU K�KTEN ��ZEN KOD!) */
/* Sayfa y�klenir y�klenmez her �ey yumu�ak�a a�a��dan yukar� gelir, JS gerektirmez. */
.fade-up {
    animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 10. Mobil Uyumluluk */
@media (max-width: 768px) {
    .artist-name {
        font-size: 3rem;
    }

    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    nav {
        margin-top: 1rem;
    }

        nav a {
            margin: 0 0.8rem;
            font-size: 0.75rem;
        }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .legal-links a {
        margin: 0 1rem;
    }
}

/* =========================================================
   ARTIST PROFILE PAGE (hero + Popular + Links template)
   ========================================================= */

.artist-profile-page {
    --profile-bg: #0a0a0a;
    background-color: var(--profile-bg);
    color: #f4f4f5;
}

.artist-profile-main {
    padding-top: 4.25rem;
}

/* Top bar � artist name / Contact */
.artist-page-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--profile-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.artist-page-topbar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.artist-page-topbar__brand {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    flex-wrap: wrap;
    min-width: 0;
}

.artist-page-topbar__back {
    font-size: 0.8rem;
    font-weight: 600;
    color: #71717a;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.artist-page-topbar__back:hover {
    color: #e4e4e7;
}

.artist-page-topbar__logo {
    text-decoration: none;
    font-size: 1.05rem;
    letter-spacing: 2px;
}

.artist-page-topbar__nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #a1a1aa;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
    transition: color 0.2s ease;
}

.artist-page-topbar__nav a:hover {
    color: #fafafa;
}

/* Hero + Popular grid */
.profile-hero-band {
    padding: 3rem 6% 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-hero-grid {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 380px);
    gap: 3rem;
    align-items: start;
}

.profile-kicker {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #e8c547;
    margin-bottom: 1rem;
}

.profile-display-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: clamp(2.75rem, 6vw, 4.25rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 1.25rem;
    background: none;
    -webkit-text-fill-color: #ffffff;
    text-shadow: none;
}

.profile-tagline {
    color: #a1a1aa;
    font-size: 1.05rem;
    line-height: 1.55;
    max-width: 28rem;
    margin-bottom: 2rem;
}

.profile-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.profile-btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.75rem;
    border-radius: 999px;
    background: #e8c547;
    color: #0a0a0a;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.profile-btn-gold:hover {
    background: #f0d060;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(232, 197, 71, 0.25);
}

.profile-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.5rem;
    border-radius: 999px;
    background: transparent;
    color: #fafafa;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.profile-btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-2px);
}

/* Popular sidebar */
.profile-popular {
    background: var(--profile-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem 1.35rem 1.25rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.profile-popular-listeners {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1ed760;
    margin-bottom: 1rem;
}

.profile-popular-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.profile-popular-disclaimer {
    font-size: 0.72rem;
    line-height: 1.45;
    color: #71717a;
    margin-bottom: 1.25rem;
}

.profile-popular-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.profile-popular-row {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.65rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-popular-row:first-of-type {
    border-top: none;
    padding-top: 0;
}

.profile-popular-art {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    background: var(--profile-bg);
}

.profile-popular-track {
    font-size: 0.9rem;
    font-weight: 500;
    color: #f4f4f5;
    line-height: 1.35;
}

.profile-explicit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.2rem;
    margin-left: 0.25rem;
    font-size: 0.65rem;
    font-weight: 700;
    color: #a1a1aa;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    vertical-align: middle;
}

.profile-popular-plays {
    font-size: 0.8rem;
    color: #71717a;
    font-variant-numeric: tabular-nums;
}

.profile-section-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #fafafa;
}

.profile-section-heading--center {
    text-align: center;
}

.profile-bio-wrap {
    padding: 2.5rem 6% 3.5rem;
    max-width: 640px;
    margin: 0 auto;
}

/* About � same visual language as Popular panel */
.profile-bio-card {
    background: var(--profile-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem 1.35rem 1.35rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.profile-bio-kicker {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1ed760;
    margin-bottom: 1rem;
}

.profile-bio-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.65rem, 4vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.profile-bio-note {
    font-size: 0.72rem;
    line-height: 1.45;
    color: #71717a;
    margin-bottom: 1.25rem;
}

.profile-bio-rows {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 0.25rem;
}

.profile-bio-row {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.65;
    color: #d4d4d8;
    margin: 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-bio-row:first-child {
    border-top: none;
    padding-top: 0.85rem;
}

.profile-bio-row strong {
    color: #ffffff;
    font-weight: 600;
}

.profile-bio-row em {
    color: #fafafa;
    font-style: italic;
}

.profile-inline-link--spotify {
    color: #1ed760;
    border-bottom-color: rgba(30, 215, 96, 0.4);
}

.profile-inline-link--spotify:hover {
    color: #1fdf64;
    border-bottom-color: rgba(31, 223, 100, 0.55);
}

.profile-inline-link {
    color: #e8c547;
    text-decoration: none;
    border-bottom: 1px solid rgba(232, 197, 71, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.profile-inline-link:hover {
    color: #f0d060;
    border-bottom-color: rgba(240, 208, 96, 0.6);
}

/* Links grid */
.profile-links-section {
    padding: 3rem 6% 5rem;
    max-width: 900px;
    margin: 0 auto;
}

.profile-links-section__title {
    margin-bottom: 2rem;
}

.profile-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 601px) {
    .profile-link-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

.profile-link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    background: var(--profile-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.profile-link-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--profile-bg);
    transform: translateY(-2px);
}

.profile-link-card--muted {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

.profile-link-card--muted:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.08);
}

.profile-link-card__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-link-card__icon--spotify {
    background: #1ed760;
    color: #000;
}

.profile-link-card__icon--instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
    color: #fff;
}

.profile-link-card__icon--x {
    background: #fff;
    color: #000;
}

.profile-link-card__icon--youtube {
    background: #ff0000;
    color: #fff;
}

.profile-link-card__icon--email {
    background: rgba(232, 197, 71, 0.2);
    color: #e8c547;
    border: 1px solid rgba(232, 197, 71, 0.35);
}

.profile-link-card__text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.profile-link-card__title {
    font-weight: 600;
    font-size: 1rem;
    color: #fafafa;
}

.profile-link-card__sub {
    font-size: 0.85rem;
    color: #71717a;
    word-break: break-word;
}

.artist-profile-page .profile-music-section,
.artist-profile-page .profile-booking-section {
    background-color: var(--profile-bg) !important;
}

.artist-profile-page .spotify-embed-container {
    background-color: var(--profile-bg);
    border-color: rgba(255, 255, 255, 0.08);
}

/* Spotify artist ID line (representation card) */
.artist-profile-page .profile-rep-meta {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #52525b;
    margin: 1rem 0 0;
    line-height: 1.5;
    font-variant-numeric: tabular-nums;
}

.artist-profile-page .profile-rep-meta code {
    font-family: ui-monospace, "Cascadia Code", "SF Mono", Menlo, Consolas, monospace;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #a1a1aa;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    margin-left: 0.25rem;
}

.artist-profile-page footer {
    background-color: var(--profile-bg);
    border-top-color: rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
    .profile-hero-grid {
        grid-template-columns: 1fr;
    }

    .profile-popular {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .profile-links-grid {
        grid-template-columns: 1fr;
    }

    .artist-page-topbar__inner {
        padding: 1rem 5%;
    }
}

/* Artist profile — embed + legal trust strip */
.artist-profile-page .profile-embed-disclaimer {
    max-width: 800px;
    margin: 1rem auto 0;
    padding: 0 1rem;
    font-size: 0.72rem;
    line-height: 1.55;
    color: #71717a;
    text-align: center;
}

.artist-profile-page .profile-legal-strip {
    max-width: 720px;
    margin: 2.5rem auto 0;
    padding: 2rem 6% 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.artist-profile-page .profile-legal-strip p {
    font-size: 0.75rem;
    line-height: 1.65;
    color: #71717a;
    margin: 0 0 0.9rem;
}

.artist-profile-page .profile-legal-strip p a {
    color: #a1a1aa;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.artist-profile-page .profile-legal-strip p a:hover {
    color: #e4e4e7;
}

.artist-profile-page .profile-legal-strip__lead {
    color: #d4d4d8;
    font-weight: 600;
}

.artist-profile-page .profile-legal-strip__copyright {
    text-align: center;
    margin: 1.35rem 0 0;
    padding-bottom: 2.25rem;
    font-size: 0.8rem;
    color: #52525b;
}

.artist-profile-page .profile-legal-strip__copyright a {
    color: #71717a;
    text-decoration: none;
}

.artist-profile-page .profile-legal-strip__copyright a:hover {
    color: #a1a1aa;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Legal documents — Privacy & Terms */
body.legal-page {
    background-color: #0a0a0c;
    color: #e4e4e7;
    min-height: 100vh;
}

.legal-main {
    padding: 6.75rem 6% 3.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.legal-back-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.25rem;
    margin-bottom: 1.5rem;
}

.legal-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #a1a1aa;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.legal-back-link:hover {
    color: #38bdf8;
}

.legal-back-link--muted {
    font-weight: 500;
    color: #71717a;
    font-size: 0.8125rem;
}

.legal-back-link--muted:hover {
    color: #a1a1aa;
}

.legal-document {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.045) 0%, rgba(18, 18, 22, 0.97) 38%, #0a0a0e 100%);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.legal-document__header {
    padding: 2.35rem 2.25rem 1.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.legal-document__kicker {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #38bdf8;
    margin: 0 0 0.65rem;
}

.legal-document__title {
    font-size: clamp(1.85rem, 4.2vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.15;
    margin: 0 0 0.6rem;
    color: #fafafa;
}

.legal-document__meta {
    margin: 0;
    font-size: 0.9rem;
    color: #71717a;
}

.legal-document__body {
    padding: 2rem 2.25rem 2.25rem;
}

.legal-document__intro {
    color: #a1a1aa;
    font-size: 1.02rem;
    line-height: 1.75;
    margin: 0 0 2rem;
}

.legal-document__section {
    margin-bottom: 1.75rem;
}

.legal-document__section:last-of-type {
    margin-bottom: 0;
}

.legal-document__section h2 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #f4f4f5;
    margin: 0 0 0.6rem;
    letter-spacing: -0.02em;
}

.legal-document__section p {
    margin: 0;
    color: #a1a1aa;
    font-size: 0.9375rem;
    line-height: 1.72;
}

.legal-document__section p + p {
    margin-top: 0.65rem;
}

.legal-document__section a {
    color: #7dd3fc;
    text-decoration: none;
    border-bottom: 1px solid rgba(125, 211, 252, 0.35);
    transition: color 0.2s, border-color 0.2s;
}

.legal-document__section a:hover {
    color: #bae6fd;
    border-bottom-color: rgba(186, 230, 253, 0.55);
}

.legal-document__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    padding: 1.35rem 2.25rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(0, 0, 0, 0.28);
}

.legal-document__footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
}

.legal-document__footer-links a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-document__footer-links a:hover {
    color: #e4e4e7;
}

.legal-document__footer-sep {
    color: #3f3f46;
    user-select: none;
}

.legal-back-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.4);
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.legal-back-cta:hover {
    background: rgba(56, 189, 248, 0.18);
    border-color: rgba(56, 189, 248, 0.6);
    color: #7dd3fc;
}

.legal-page .legal-page-copyright {
    text-align: center;
    margin-top: 0;
    padding-top: 0;
}

.legal-page .legal-page-copyright p {
    color: #52525b;
    font-size: 0.8rem;
    margin: 0;
}

@media (max-width: 520px) {
    .legal-main {
        padding-left: 5%;
        padding-right: 5%;
    }

    .legal-document__header,
    .legal-document__body,
    .legal-document__footer {
        padding-left: 1.35rem;
        padding-right: 1.35rem;
    }

    .legal-document__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .legal-back-cta {
        width: 100%;
        box-sizing: border-box;
    }
}
