@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* ── ACTIVE SECTION ───────────────────────── */

.active-section {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 100px;
    position: relative;
    text-align: center;
}

.active-section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,255,255,0.028) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.roster-title {
    font-size: clamp(88px, 16vw, 160px);
    font-weight: 700;
    letter-spacing: -6px;
    line-height: 0.86;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.55s ease forwards;
    opacity: 0;
}

.roster-sub {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.62);
    margin-bottom: 52px;
    position: relative;
    z-index: 1;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.heaven-records-roster {
    max-width: 880px;
    line-height: 2.4;
    position: relative;
    z-index: 1;
}

.artist-entry {
    font-size: clamp(17px, 2.5vw, 26px);
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.2s ease;
    display: inline;
}

a.artist-entry {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

a.artist-entry:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(255,255,255,0.35);
}

.roster-sep {
    color: rgba(255,255,255,0.42);
    font-weight: 400;
    font-size: clamp(17px, 2.5vw, 26px);
    transition: opacity 0.2s ease;
    user-select: none;
    display: inline;
    margin: 0 6px;
}

@media (min-width: 969px) {
    .heaven-records-roster:hover .artist-entry,
    .heaven-records-roster:hover .roster-sep {
        opacity: 0.1;
    }
    .heaven-records-roster .artist-entry:hover {
        opacity: 1 !important;
    }
}

.roster-count {
    margin-top: 52px;
    font-size: 9px;
    letter-spacing: 5px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* ── INACTIVE SECTION ─────────────────────── */

.inactive-section {
    width: 100%;
    padding: 72px 40px 96px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inactive-label {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 40px;
}

.inactive-roster {
    max-width: 880px;
    line-height: 2.4;
}

.inactive-entry {
    font-size: clamp(17px, 2.5vw, 26px);
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.inactive-sep {
    color: rgba(255,255,255,0.42);
    font-weight: 400;
    font-size: clamp(17px, 2.5vw, 26px);
    display: inline;
    margin: 0 6px;
    user-select: none;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

@media (min-width: 969px) {
    .inactive-roster:hover .inactive-entry,
    .inactive-roster:hover .inactive-sep {
        opacity: 0.2;
    }
    .inactive-roster .inactive-entry:hover {
        opacity: 0.85 !important;
    }
}

/* ── RESPONSIVE ───────────────────────────── */

@media (max-width: 968px) {
    .active-section { padding: 120px 32px 80px; }
    .roster-title { letter-spacing: -4px; margin-bottom: 40px; }
    .inactive-section { padding: 60px 32px 80px; }
}

@media (max-width: 768px) {
    .active-section { padding: 108px 24px 72px; }
    .roster-title { letter-spacing: -3px; }
    .inactive-section { padding: 52px 24px 72px; }
}

@media (max-width: 640px) {
    .active-section { padding: 96px 20px 64px; }
    .roster-title { letter-spacing: -2px; margin-bottom: 28px; }
    .heaven-records-roster { line-height: 2.15; }
    .roster-sub { margin-bottom: 40px; }
    .inactive-section { padding: 48px 20px 64px; }
    .inactive-roster { line-height: 2.15; }
}

@media (max-width: 480px) {
    .active-section { padding: 88px 16px 56px; }
    .roster-title { letter-spacing: -1.5px; margin-bottom: 24px; }
    .heaven-records-roster { line-height: 2.05; }
    .roster-sep { margin: 0 4px; }
    .inactive-sep { margin: 0 4px; }
    .inactive-roster { line-height: 2.05; }
}

@media (max-width: 380px) {
    .active-section { padding: 80px 14px 48px; }
    .roster-title { letter-spacing: -1px; }
    .roster-count { margin-top: 36px; }
}
