:root {
    --bg: #060607;
    --bg-soft: #100f12;
    --bg-panel: rgba(17, 14, 16, 0.86);
    --text: #ece9e4;
    --muted: #b4ada8;
    --accent-rgb: 89, 29, 115;
    --accent-bright-rgb: 122, 58, 156;
    --accent-soft: #d7c1e7;
    --blood: rgb(var(--accent-rgb));
    --blood-bright: rgb(var(--accent-bright-rgb));
    --line: rgba(255, 255, 255, 0.14);
    --max-width: 1160px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at 15% 18%, #171121 0%, #070708 48%, #050506 100%);
    color: var(--text);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.02em;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    position: relative;
}

body.menu-open {
    overflow: hidden;
}

.page-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.16;
    background-image:
        linear-gradient(120deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 55%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.011), rgba(255, 255, 255, 0.011) 1px, transparent 1px, transparent 3px);
    z-index: 1;
}

.page-logo-texture,
.page-shimmer {
    position: fixed;
    inset: -24%;
    pointer-events: none;
}

.page-logo-texture {
    z-index: 0;
    background-image: var(--site-bg-image, url('../img/rublood/logo2.jpeg'));
    background-repeat: var(--site-bg-repeat, no-repeat);
    background-size: var(--site-bg-size, cover);
    background-position: center;
    opacity: var(--site-bg-opacity, 0.1);
    filter: blur(0.35px) saturate(0.95) contrast(1.02) brightness(1.35);
    mix-blend-mode: screen;
    animation: textureDrift 90s linear infinite, textureGlow 11s ease-in-out infinite;
}

.page-logo-texture.effect-none {
    animation: none;
}

.page-logo-texture.effect-drift {
    animation: textureDrift 90s linear infinite;
}

.page-logo-texture.effect-glow {
    animation: textureGlow 11s ease-in-out infinite;
}

.page-logo-texture.effect-drift-glow,
.page-logo-texture.effect-shimmer {
    animation: textureDrift 90s linear infinite, textureGlow 11s ease-in-out infinite;
}

.page-bg-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: var(--site-bg-overlay-color, #060607);
    opacity: var(--site-bg-overlay-opacity, 0.5);
}

.page-shimmer {
    z-index: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(243, 233, 255, 0.12) 0 1px, transparent 2px),
        radial-gradient(circle at 72% 35%, rgba(232, 216, 246, 0.1) 0 1px, transparent 2px),
        radial-gradient(circle at 44% 78%, rgba(225, 204, 242, 0.12) 0 1.2px, transparent 2px),
        linear-gradient(120deg, transparent 43%, rgba(var(--accent-rgb), 0.06) 52%, transparent 60%);
    opacity: 0;
    animation: shimmerSweep 15s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

.page-shimmer.effect-shimmer,
.page-shimmer.effect-drift-glow {
    opacity: var(--site-bg-shimmer-opacity, 0.14);
}

.page-shimmer::before,
.page-shimmer::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    mix-blend-mode: screen;
}

.page-shimmer::before {
    background:
        radial-gradient(circle at 22% 26%, rgba(var(--accent-rgb), 0.28) 0%, rgba(var(--accent-rgb), 0) 48%),
        radial-gradient(circle at 74% 68%, rgba(var(--accent-rgb), 0.2) 0%, rgba(var(--accent-rgb), 0) 54%);
    opacity: 0.28;
    animation: violetDriftA 28s ease-in-out infinite;
}

.page-shimmer::after {
    background:
        radial-gradient(circle at 80% 22%, rgba(var(--accent-bright-rgb), 0.22) 0%, rgba(var(--accent-bright-rgb), 0) 46%),
        radial-gradient(circle at 34% 78%, rgba(var(--accent-rgb), 0.2) 0%, rgba(var(--accent-rgb), 0) 52%);
    opacity: 0.2;
    animation: violetDriftB 36s ease-in-out infinite;
}

main,
footer {
    position: relative;
    z-index: 4;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 1rem;
    background: rgba(8, 8, 9, 0.9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
}

.brand {
    color: var(--text);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    letter-spacing: 0.17em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.brand img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    opacity: 0.92;
}

.main-nav {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    position: relative;
    z-index: 121;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    margin-left: 0.75rem;
}

.lang-switch a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 0.09em;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.2rem 0.5rem;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.lang-switch a:hover,
.lang-switch a:focus-visible {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.42);
}

.lang-switch a.is-active {
    color: #f3ebfa;
    border-color: rgba(var(--accent-rgb), 0.78);
    background: rgba(var(--accent-rgb), 0.24);
}

.main-nav a {
    text-decoration: none;
    color: var(--muted);
    font-size: 1.02rem;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--text);
}

.main-nav a.is-current {
    color: var(--accent-soft);
    text-shadow: 0 0 14px rgba(var(--accent-rgb), 0.35);
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--text);
    padding: 0.42rem 0.8rem;
    font-family: inherit;
}

main {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding: 1rem;
}

.hero {
    position: relative;
    min-height: 76vh;
    border: 1px solid var(--line);
    border-radius: 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    margin-bottom: 1.2rem;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(7, 7, 8, 0.93) 0%, rgba(7, 7, 8, 0.54) 44%, rgba(var(--accent-rgb), 0.24) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 74% 35%, rgba(var(--accent-rgb), 0.26) 0%, transparent 42%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: clamp(1.5rem, 5vw, 3.75rem);
    transition: transform 0.42s ease;
}

.hero-logo {
    max-width: min(58vw, 300px);
    height: auto;
    display: block;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45));
}

.eyebrow {
    margin: 0 0 0.6rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.85rem;
}

h1,
h2,
h3 {
    margin-top: 0;
    font-family: 'Cinzel', serif;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2rem, 5.8vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

h2 {
    font-size: clamp(1.5rem, 3.2vw, 2.4rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-subtitle {
    color: var(--muted);
    max-width: 58ch;
    margin-bottom: 1.2rem;
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid transparent;
    min-height: 42px;
    padding: 0.62rem 1rem;
    text-transform: uppercase;
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(90deg, var(--blood) 0%, var(--blood-bright) 100%);
    color: #f5efea;
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
}

.btn-small {
    min-height: 38px;
    padding: 0.52rem 0.92rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: var(--text);
    background: rgba(255, 255, 255, 0.02);
}

.panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: clamp(1.15rem, 3vw, 2rem);
    background: var(--bg-panel);
    margin-bottom: 1rem;
}

.panel::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(130deg, rgba(var(--accent-rgb), 0.08) 0%, rgba(var(--accent-rgb), 0) 38%);
}

.panel>* {
    position: relative;
    z-index: 1;
}

.panel p {
    color: var(--muted);
    font-size: 1.06rem;
}

.panel-head {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: baseline;
    flex-wrap: wrap;
}

.news-slider {
    margin-top: 0.75rem;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.55rem;
    align-items: center;
}

.news-slider-window {
    overflow: hidden;
    border-radius: 16px;
}

.news-slider-track {
    display: flex;
    transition: transform 0.35s ease;
}

.news-slide {
    flex: 0 0 100%;
}

.news-slider-control {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}

.news-slider-control:hover,
.news-slider-control:focus-visible {
    border-color: rgba(var(--accent-rgb), 0.8);
    background: rgba(var(--accent-rgb), 0.15);
}

.news-slider-dots {
    margin-top: 0.8rem;
    display: flex;
    gap: 0.45rem;
    justify-content: center;
}

.news-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.news-slider-dot.is-active {
    background: rgb(var(--accent-bright-rgb));
    border-color: rgb(var(--accent-bright-rgb));
}

.news-grid {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.news-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    padding: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.58rem;
    min-height: 100%;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.news-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.news-visual {
    display: block;
    --news-shift: 0px;
    transform: translate3d(0, calc(var(--news-shift) + 16px), 0) scale(1.03);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform, opacity;
}

.news-card.is-visible .news-visual,
.news-visual.is-visible {
    opacity: 1;
    transform: translate3d(0, var(--news-shift), 0) scale(1.03);
}

.news-date {
    margin: 0;
    font-size: 0.85rem;
    color: #d7c1e7;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.news-card h3 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.news-card p {
    margin: 0;
    overflow-wrap: anywhere;
}

.news-excerpt {
    color: var(--muted);
    line-height: 1.4;
    flex-grow: 1;
}

.news-open {
    margin-top: auto;
    align-self: flex-start;
}

.news-archive-toggle {
    margin-top: 0.95rem;
}

.news-archive {
    margin-top: 0.9rem;
}

.news-grid-archive .news-card {
    min-height: 100%;
}

.panel-actions {
    margin-top: 0.95rem;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.panel-band .band-description {
    margin: 0.5rem 0 0;
    max-width: none;
    column-count: 2;
    column-gap: 2rem;
    line-height: 1.7;
    text-align: justify;
    text-wrap: pretty;
}

.panel-band .band-description p {
    margin: 0 0 0.85rem;
}

.panel-band .band-description p:last-child {
    margin-bottom: 0;
}

.band-slider {
    margin-top: 1rem;
    display: grid;
    gap: 0.9rem;
}

.band-stage {
    position: relative;
    min-height: clamp(360px, 52vw, 540px);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: #0a090b;
}

.band-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.band-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.band-slide-bg {
    position: absolute;
    inset: 0;
    background-image: var(--member-image);
    background-size: cover;
    background-position: center 24%;
    filter: saturate(0.72) contrast(1) brightness(0.66) blur(10px);
    transform: scale(1.08);
}

.band-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 6, 7, 0.14) 0%, rgba(6, 6, 7, 0.72) 76%, rgba(6, 6, 7, 0.84) 100%),
        radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 52%);
}

.band-slide-layout {
    position: relative;
    z-index: 2;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(250px, 42%) 1fr;
    align-items: end;
    gap: clamp(0.75rem, 2vw, 1.4rem);
    padding: clamp(1rem, 2.6vw, 1.5rem);
}

.band-portrait-frame {
    margin: 0;
    align-self: end;
    width: 100%;
    max-width: 430px;
    aspect-ratio: 3 / 4;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    background: rgba(9, 9, 10, 0.68);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.38);
}

.band-portrait {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    filter: saturate(0.95) contrast(1.02);
    transform: scale(1.06);
    transform-origin: top center;
}

.band-slide-copy {
    position: relative;
    align-self: end;
    display: grid;
    gap: 0.55rem;
    padding: clamp(0.85rem, 2vw, 1.2rem);
    max-width: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(10, 10, 11, 0.72);
    backdrop-filter: blur(2px);
}

.band-slide-copy h3 {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
}

.band-slide-copy .member-role {
    margin-top: 0.35rem;
    margin-bottom: 0.1rem;
    color: #d8d2cc;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.band-slide-copy p {
    margin: 0;
    color: #e2ddda;
    line-height: 1.58;
}

.member-meta-list {
    margin: 0.2rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.42rem;
}

.member-meta-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.55rem;
    align-items: start;
    padding: 0.45rem 0.52rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.03);
}

.member-meta-icon {
    width: 1.8rem;
    height: 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.member-meta-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.member-meta-copy {
    min-width: 0;
    display: grid;
    gap: 0.12rem;
}

.member-meta-label {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #cec7c2;
}

.member-meta-value {
    font-size: 0.95rem;
    line-height: 1.45;
    color: #f2efed;
    text-wrap: pretty;
}

.band-members-nav {
    display: grid;
    gap: 0.6rem;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.band-member-dot {
    border: 1px solid var(--line);
    border-radius: 12px;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    padding: 0.7rem;
    cursor: pointer;
}

.band-member-dot .member-name {
    display: block;
    font-weight: 700;
}

.band-member-dot .member-role {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 0.18rem;
}

.band-member-dot.is-active {
    border-color: rgba(255, 255, 255, 0.44);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.8rem;
}

.music-grid {
    align-items: stretch;
}

.card {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.95rem;
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.card-featured {
    position: relative;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.card-featured-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.card-featured::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 7, 8, 0.18) 0%, rgba(7, 7, 8, 0.9) 82%);
    z-index: 1;
}

.card-featured>* {
    position: relative;
    z-index: 2;
}

.card-featured>.card-featured-bg {
    z-index: 0;
}

.card-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 9px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.music-card {
    display: flex;
    flex-direction: column;
}

.music-card .card-thumb {
    aspect-ratio: 1 / 1;
    min-height: 220px;
}

.card-thumb-fallback {
    background:
        linear-gradient(145deg, rgba(var(--accent-rgb), 0.32) 0%, rgba(var(--accent-rgb), 0) 58%),
        radial-gradient(circle at 50% 55%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px),
        #141115;
}

.music-card h3 {
    min-height: 2.4em;
}

.music-card a {
    margin-top: auto;
}

.music-listen.is-active {
    border-color: rgba(var(--accent-rgb), 0.9);
    background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.42) 0%, rgba(var(--accent-bright-rgb), 0.24) 100%);
    color: #f3e8fb;
}

.music-player {
    margin-top: 1.1rem;
    border: 1px solid rgba(var(--accent-rgb), 0.45);
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(var(--accent-rgb), 0.12) 0%, rgba(16, 15, 18, 0.92) 44%),
        rgba(10, 9, 11, 0.84);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.music-player-head {
    padding: 0.95rem 1rem 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.38) 0%, rgba(var(--accent-rgb), 0) 72%);
}

.music-player-head h3 {
    margin: 0;
    font-size: 1.2rem;
}

.music-player-head p {
    margin: 0.45rem 0 0;
}

.music-player-body {
    padding: 0.9rem 1rem 0.3rem;
}

.music-player-placeholder {
    border: 1px dashed rgba(255, 255, 255, 0.26);
    border-radius: 12px;
    padding: 1rem;
    color: var(--muted);
    text-align: center;
}

.music-player-embed {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #0a0a0b;
}

.music-player-embed iframe {
    width: 100%;
    min-height: 168px;
    border: 0;
}

.music-player-actions {
    padding: 0 1rem 1rem;
}

.card h3 {
    margin-bottom: 0.4rem;
}

.card p {
    margin-top: 0;
    margin-bottom: 0.7rem;
}

.card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    width: max-content;
    max-width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    background: rgba(255, 255, 255, 0.03);
}

.card a,
.pill-links a,
.socials a,
.contact-grid a,
footer a,
.news-modal a {
    color: #d8bfe8;
    text-decoration: none;
}

.card a:hover,
.card a:focus-visible,
.pill-links a:hover,
.socials a:hover,
.contact-grid a:hover,
footer a:hover,
.news-modal a:hover {
    color: #ead8f5;
}

.videos-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.video-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.01);
}

.video-frame {
    aspect-ratio: 16 / 9;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #0a0a0a;
}

.video-frame iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

.live-year-tabs {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
}

.live-year-tab {
    width: auto;
    min-width: 88px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--muted);
    padding: 0.46rem 0.8rem;
    cursor: pointer;
}

.live-year-tab.is-active {
    color: #efe7f6;
    border-color: rgba(var(--accent-rgb), 0.88);
    background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.3) 0%, rgba(var(--accent-bright-rgb), 0.14) 100%);
}

.live-year-panel {
    display: none;
}

.live-year-panel.is-active {
    display: block;
}

.live-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.7rem;
}

.live-list li {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
}

.live-date {
    color: var(--text);
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.live-venue,
.live-note {
    margin: 0;
    color: var(--muted);
}

.pill-links,
.socials {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.pill-links a,
.socials a {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    background: rgba(255, 255, 255, 0.02);
}

.contact-grid {
    display: grid;
    gap: 0.6rem;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    margin-bottom: 0.85rem;
}

.contact-grid a {
    display: block;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
}

.store-card {
    position: relative;
    overflow: hidden;
}

.store-card::before {
    content: '';
    position: absolute;
    inset: auto -40px -40px auto;
    width: 110px;
    height: 110px;
    border-radius: 100%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.37) 0%, rgba(var(--accent-rgb), 0) 70%);
}

footer {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding: 0.5rem 1rem 2rem;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    gap: 0.7rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.news-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 240;
}

.news-modal.is-open {
    display: block;
}

.news-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(2px);
}

.news-modal-card {
    position: relative;
    width: min(900px, calc(100% - 1.6rem));
    max-height: calc(100vh - 2rem);
    margin: 1rem auto;
    overflow: auto;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #111014;
    padding: 1rem;
}

.news-modal-close {
    width: auto;
    min-width: 40px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    padding: 0.35rem 0.65rem;
    float: right;
}

#newsModalContent {
    clear: both;
}

#newsModalContent img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin: 0.6rem 0;
}

.news-full-content {
    color: var(--text);
    line-height: 1.5;
}

.news-full-content p {
    margin: 0 0 0.82rem;
}

.news-full-content h2,
.news-full-content h3,
.news-full-content h4 {
    margin: 1.1rem 0 0.55rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.04em;
}

.news-full-content ul,
.news-full-content ol {
    margin: 0 0 0.85rem;
    padding-left: 1.15rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-aura {
    position: absolute;
    inset: -25% auto auto 55%;
    width: min(62vw, 640px);
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.32) 0%, rgba(var(--accent-rgb), 0) 72%);
    filter: blur(8px);
    pointer-events: none;
    z-index: 1;
    animation: auraPulse 8.5s ease-in-out infinite;
}

.hero-scanline {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
        linear-gradient(110deg, transparent 0%, rgba(222, 201, 239, 0.1) 46%, transparent 56%),
        repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 3px);
    mix-blend-mode: screen;
    animation: scanlineDrift 13s linear infinite;
}

.hero-page {
    min-height: 52vh;
}

.page-sub .hero-subtitle {
    max-width: 64ch;
}

.live-preview-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
}

.card:hover,
.card:focus-within,
.news-card:hover,
.news-card:focus-within {
    border-color: rgba(var(--accent-rgb), 0.44);
    transform: translateY(-2px);
}

@keyframes textureDrift {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-88px, -40px, 0);
    }
}

@keyframes textureGlow {

    0%,
    100% {
        filter: blur(0.35px) saturate(0.95) contrast(1.02) brightness(1.12);
    }

    50% {
        filter: blur(0.35px) saturate(1.04) contrast(1.06) brightness(1.35);
    }
}

@keyframes shimmerSweep {

    0%,
    100% {
        transform: translate3d(-2%, -1%, 0);
        opacity: 0.14;
    }

    50% {
        transform: translate3d(2%, 1%, 0);
        opacity: 0.25;
    }
}

@keyframes violetDriftA {

    0%,
    100% {
        transform: translate3d(-2%, -1%, 0) scale(1);
    }

    50% {
        transform: translate3d(3%, 2%, 0) scale(1.06);
    }
}

@keyframes violetDriftB {

    0%,
    100% {
        transform: translate3d(2%, -1%, 0) scale(1.02);
    }

    50% {
        transform: translate3d(-3%, 2%, 0) scale(1.08);
    }
}

@keyframes auraPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        opacity: 0.95;
        transform: translate3d(0, 8px, 0) scale(1.06);
    }
}

@keyframes scanlineDrift {
    from {
        background-position: 0 0, 0 0;
    }

    to {
        background-position: -220px 0, 0 24px;
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 6px);
        right: 1rem;
        z-index: 130;
        flex-direction: column;
        width: min(80vw, 260px);
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 0.8rem;
        background: rgba(10, 10, 11, 0.96);
        transform: scale(0.96);
        transform-origin: top right;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .lang-switch {
        margin-left: auto;
        margin-right: 0.4rem;
    }

    .main-nav.open {
        transform: scale(1);
        opacity: 1;
        pointer-events: auto;
    }

    .hero {
        min-height: 70vh;
    }

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

    .news-slider-control {
        display: none;
    }

    .live-preview-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .live-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .band-stage {
        min-height: 0;
        height: auto;
    }

    .band-slide {
        position: relative;
        inset: auto;
        display: none;
        opacity: 1;
        visibility: visible;
        transition: none;
    }

    .band-slide.is-active {
        display: block;
    }

    .band-slide-layout {
        grid-template-columns: 1fr;
        align-content: start;
        align-items: start;
        height: auto;
    }

    .band-portrait-frame {
        width: min(82vw, 380px);
        justify-self: center;
    }

    .band-portrait {
        transform: none;
    }

    .band-slide-copy {
        width: 100%;
        align-self: stretch;
    }

    .member-meta-item {
        padding: 0.42rem 0.48rem;
    }

    .panel-band .band-description {
        column-count: 1;
    }
}

@media (max-width: 560px) {

    .hero-subtitle,
    .panel p {
        font-size: 1rem;
    }

    .band-members-nav {
        grid-template-columns: 1fr;
    }

    .band-portrait-frame {
        width: min(88vw, 320px);
    }

    .member-meta-label {
        font-size: 0.64rem;
    }

    .member-meta-value {
        font-size: 0.9rem;
    }

    .btn {
        width: 100%;
    }

    .panel-actions .btn {
        width: 100%;
    }

    .news-modal-card {
        width: calc(100% - 1rem);
        margin: 0.5rem auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .news-visual {
        transition: none;
        transform: none;
        opacity: 1;
    }
}