:root {
    --bg: #07080d;
    --bg-2: #0d1118;
    --surface: rgba(16, 19, 29, 0.78);
    --surface-strong: rgba(21, 25, 36, 0.94);
    --line: rgba(255, 255, 255, 0.12);
    --text: #f6f4ee;
    --muted: #b8bdc9;
    --soft: #7f8797;
    --gold: #d9b76b;
    --cyan: #59d9ff;
    --rose: #ff4f91;
    --shell: min(92vw, 2200px);
    --section-y: clamp(64px, 7vw, 132px);
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(7, 8, 13, 0.86), rgba(7, 8, 13, 0.98)),
        #07080d;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    width: var(--shell);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 8, 13, 0.72);
    backdrop-filter: blur(18px);
    transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(7, 8, 13, 0.92);
}

.header-shell {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(217, 183, 107, 0.52);
    border-radius: 8px;
    color: #0a0b10;
    background: linear-gradient(135deg, #f6d98e, #68ddff 58%, #ff6098);
    font-size: 12px;
}

.brand-text {
    font-size: 21px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 34px);
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.site-nav a {
    position: relative;
    padding-block: 8px;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--gold);
    transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--text);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.site-nav .nav-admin {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
}

.site-nav .nav-admin::after {
    display: none;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    margin: 4px auto;
    background: currentColor;
}

.hero {
    position: relative;
    min-height: clamp(620px, 74vh, 880px);
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    isolation: isolate;
}

.hero::before,
.subhero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(7, 8, 13, 0.92) 0%, rgba(7, 8, 13, 0.66) 42%, rgba(7, 8, 13, 0.9) 100%),
        linear-gradient(135deg, rgba(89, 217, 255, 0.18), rgba(217, 183, 107, 0.09) 46%, rgba(255, 79, 145, 0.16));
    filter: saturate(1.15);
}

.hero::after,
.subhero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(7, 8, 13, 0.18), var(--bg) 100%),
        linear-gradient(90deg, rgba(89, 217, 255, 0.14), transparent 38%, rgba(255, 79, 145, 0.16));
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(250px, 360px) minmax(300px, 0.62fr);
    align-items: center;
    gap: clamp(34px, 4.4vw, 98px);
    padding-block: clamp(58px, 6vw, 108px);
}

.hero-copy {
    max-width: 880px;
}

.eyebrow,
.kicker,
.panel-label {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.hero h1,
.subhero h1 {
    margin-bottom: 20px;
    font-size: clamp(60px, 8.2vw, 158px);
    line-height: 0.92;
}

.hero-lead,
.subhero p {
    max-width: 740px;
    color: var(--muted);
    font-size: clamp(19px, 1.35vw, 28px);
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 800;
    font-size: 14px;
}

.button-primary {
    color: #090a0f;
    border-color: transparent;
    background: linear-gradient(135deg, #f4d27d, #72dcff);
}

.button-ghost {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.button:hover {
    transform: translateY(-1px);
}

.hero-release,
.hero-panel {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(10, 13, 20, 0.64);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.hero-release {
    padding: clamp(18px, 1.5vw, 28px);
}

.cover-frame {
    width: min(100%, clamp(220px, 14vw, 320px));
    margin-inline: auto;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: #111722;
}

.cover-frame img,
.release-cover img,
.news-card img,
.video-thumb img,
.article-detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cover-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: rgba(246, 244, 238, 0.82);
    background:
        linear-gradient(135deg, rgba(217, 183, 107, 0.18), rgba(89, 217, 255, 0.12)),
        #111722;
    font-size: clamp(18px, 1.6vw, 28px);
    font-weight: 900;
}

.media-placeholder {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: grid;
    place-items: center;
    color: rgba(246, 244, 238, 0.78);
    background:
        linear-gradient(135deg, rgba(89, 217, 255, 0.12), rgba(217, 183, 107, 0.12)),
        #111722;
    font-weight: 900;
}

.cover-frame-large {
    width: min(100%, 340px);
}

.release-info {
    margin-top: 22px;
}

.release-info h2 {
    margin-bottom: 10px;
    font-size: clamp(25px, 2vw, 38px);
    line-height: 1.08;
}

.release-info p {
    color: var(--muted);
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.meta-row span {
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.05);
    font-size: 13px;
}

.hero-panel {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
    padding: clamp(20px, 2vw, 34px);
}

.hero-panel strong {
    max-width: 360px;
    display: block;
    font-size: clamp(24px, 1.7vw, 36px);
    line-height: 1.1;
}

.stream-list {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.stream-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--muted);
    background: rgba(255, 255, 255, 0.05);
}

.stream-list a:hover {
    color: var(--text);
    border-color: rgba(217, 183, 107, 0.55);
}

.stat-band {
    padding-block: clamp(28px, 3.4vw, 58px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(90deg, rgba(19, 23, 34, 0.92), rgba(8, 10, 16, 0.98));
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.stat-item {
    min-height: 116px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(18px, 2vw, 30px);
    background: rgba(8, 10, 16, 0.76);
}

.stat-item strong {
    font-size: clamp(30px, 2.8vw, 58px);
    line-height: 1;
}

.stat-item span {
    color: var(--muted);
    font-weight: 700;
}

.section-block,
.section-band {
    padding-block: var(--section-y);
}

.section-band {
    background:
        linear-gradient(90deg, rgba(89, 217, 255, 0.08), transparent 34%, rgba(217, 183, 107, 0.1)),
        #0a0d14;
    border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(28px, 3vw, 56px);
}

.section-heading h2,
.feature-wide h2 {
    margin-bottom: 0;
    font-size: clamp(34px, 3.8vw, 76px);
    line-height: 1.02;
}

.section-heading a {
    flex: 0 0 auto;
    color: var(--gold);
    font-weight: 800;
}

.release-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(174px, 220px));
    justify-content: start;
    gap: clamp(18px, 1.4vw, 30px);
}

.release-card {
    min-width: 0;
}

.release-cover {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: var(--surface-strong);
}

.release-cover img {
    transition: transform 260ms ease, filter 260ms ease;
}

.release-card:hover .release-cover img {
    transform: scale(1.035);
    filter: saturate(1.12);
}

.release-card-body {
    padding-top: 13px;
}

.release-card h3 {
    margin-bottom: 4px;
    font-size: 18px;
    line-height: 1.2;
}

.release-card p,
.release-card span {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.feature-wide {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: clamp(36px, 6vw, 120px);
}

.feature-wide p {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: clamp(18px, 1.2vw, 24px);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.tag-cloud span {
    padding: 13px 16px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    font-weight: 800;
}

.video-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
    gap: clamp(18px, 1.8vw, 34px);
}

.video-grid-large {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 390px), 520px));
}

.video-card,
.news-card,
.empty-feature {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(16, 19, 29, 0.68);
    overflow: hidden;
}

.video-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-thumb span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 13px;
    border-radius: 6px;
    color: #090a0f;
    background: var(--gold);
    font-weight: 900;
}

.video-card h3,
.video-card h2,
.video-card p {
    padding-inline: 20px;
}

.video-card h3,
.video-card h2 {
    margin: 18px 0 8px;
    font-size: 22px;
    line-height: 1.2;
}

.video-card p {
    margin-bottom: 22px;
    color: var(--muted);
}

.news-card {
    display: grid;
    grid-template-columns: minmax(150px, 0.42fr) minmax(0, 0.58fr);
    min-height: 220px;
}

.news-card > a,
.news-card > img {
    min-height: 220px;
}

.news-card > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card > div {
    padding: clamp(18px, 1.6vw, 30px);
}

.news-card span,
.article-detail span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
}

.news-card h3 {
    margin-bottom: 10px;
    font-size: clamp(21px, 1.5vw, 30px);
    line-height: 1.14;
}

.news-card p {
    color: var(--muted);
}

.empty-feature {
    max-width: 760px;
    padding: clamp(24px, 3vw, 52px);
}

.empty-feature h2,
.empty-feature h3 {
    margin-bottom: 10px;
    font-size: clamp(26px, 2.2vw, 44px);
}

.empty-feature p {
    color: var(--muted);
}

.subhero {
    position: relative;
    min-height: clamp(460px, 54vh, 660px);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.subhero-compact {
    min-height: clamp(360px, 42vh, 540px);
}

.subhero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
    align-items: center;
    gap: clamp(34px, 5vw, 96px);
}

.narrow-copy {
    max-width: 980px;
}

.lyrics,
.article-content {
    color: var(--muted);
    font-size: clamp(18px, 1.1vw, 22px);
    line-height: 1.8;
}

.article-detail {
    max-width: 1120px;
}

.article-detail img {
    width: 100%;
    max-height: 520px;
    margin-bottom: 28px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer {
    padding-block: clamp(42px, 5vw, 82px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #06070b;
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.footer-grid p {
    max-width: 560px;
    margin: 16px 0 0;
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px 26px;
    color: var(--muted);
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--gold);
}

@media (min-width: 1800px) {
    .hero-shell {
        grid-template-columns: minmax(720px, 1.22fr) minmax(270px, 340px) minmax(360px, 0.66fr);
    }

    .release-grid {
        grid-template-columns: repeat(auto-fill, minmax(182px, 218px));
    }
}

@media (max-width: 1280px) {
    :root {
        --shell: min(92vw, 1320px);
    }

    .hero-shell {
        grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    }

    .hero-panel {
        grid-column: 1 / -1;
        min-height: auto;
    }

    .feature-wide {
        grid-template-columns: 1fr;
    }

    .tag-cloud {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .header-shell {
        min-height: 68px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: 68px 0 auto 0;
        display: none;
        width: 100vw;
        padding: 18px 4vw 28px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(7, 8, 13, 0.98);
    }

    .site-nav.is-open {
        display: grid;
        gap: 12px;
    }

    .site-nav a,
    .site-nav .nav-admin {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .hero {
        min-height: auto;
    }

    .hero-shell,
    .subhero-grid {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .subhero h1 {
        font-size: clamp(48px, 15vw, 82px);
    }

    .hero-release {
        max-width: 420px;
    }

    .stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    :root {
        --shell: min(91vw, 520px);
        --section-y: 58px;
    }

    .brand-text {
        font-size: 18px;
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .cover-frame,
    .cover-frame-large {
        width: min(100%, 270px);
    }

    .release-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .release-card h3 {
        font-size: 15px;
    }

    .release-card p,
    .release-card span {
        font-size: 12px;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
    }
}
