/* ── TOKENS ─────────────────────────────────────────── */
:root {
    --red: #c41e1e;
    --red-dim: #7a1212;
    --red-glow: #ff2a2a;
    --blue: #1a8fff;
    --blue-dim: #0d4a88;
    --black: #000000;
    --surface: #0d0d0d;
    --surface2: #141414;
    --border: #1e1e1e;
    --grey: #888888;
    --grey-dim: #444444;
    --white: #e8e8e8;
}

/* ── RESET ──────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--grey);
    font-family: "Share Tech Mono", monospace;
    font-size: 14px;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ── SCANLINE OVERLAY ───────────────────────────────── */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 3px,
        rgba(0, 0, 0, 0.18) 3px,
        rgba(0, 0, 0, 0.18) 4px
    );
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
    transition: opacity 0.2s;
}

body.lightbox-open::before {
    opacity: 0;
}

/* ── GLITCH KEYFRAMES ───────────────────────────────── */
@keyframes glitch-clip {
    0%,
    89%,
    100% {
        clip-path: none;
        transform: translate(0);
    }
    90% {
        clip-path: inset(42% 0 44% 0);
        transform: translate(-4px, 0);
        color: var(--blue);
    }
    91% {
        clip-path: inset(8% 0 87% 0);
        transform: translate(4px, 0);
        color: var(--red-glow);
    }
    92% {
        clip-path: none;
        transform: translate(0);
        color: var(--white);
    }
    93% {
        clip-path: inset(62% 0 24% 0);
        transform: translate(-2px, 0);
        color: var(--blue);
    }
    94% {
        clip-path: none;
        transform: translate(0);
    }
}

@keyframes glitch-clip-2 {
    0%,
    94%,
    100% {
        clip-path: none;
        transform: translate(0);
        opacity: 1;
    }
    95% {
        clip-path: inset(20% 0 70% 0);
        transform: translate(6px, 0);
        opacity: 0.8;
    }
    96% {
        clip-path: inset(55% 0 30% 0);
        transform: translate(-3px, 0);
        opacity: 0.9;
    }
    97% {
        clip-path: none;
        transform: translate(0);
        opacity: 1;
    }
}

@keyframes flicker {
    0%,
    97%,
    100% {
        opacity: 1;
    }
    98% {
        opacity: 0.85;
    }
    99% {
        opacity: 0.95;
    }
}

@keyframes scanPulse {
    0%,
    100% {
        opacity: 0.06;
    }
    50% {
        opacity: 0.12;
    }
}

@keyframes borderBlink {
    0%,
    100% {
        border-color: var(--red-dim);
    }
    50% {
        border-color: var(--red);
        box-shadow: 0 0 8px var(--red-dim);
    }
}

@keyframes cursor-blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* ── NAV ────────────────────────────────────────────── */
#site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.92);
    border-bottom: 1px solid var(--red-dim);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 52px;
    backdrop-filter: blur(4px);
    animation: flicker 14s infinite;
}

.nav-logo {
    height: 32px;
    opacity: 0.9;
    filter: drop-shadow(0 0 6px var(--red-dim));
    margin-bottom: 4px;
}

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
}

.nav-links li a {
    display: block;
    padding: 0 1.1rem;
    height: 52px;
    line-height: 52px;
    color: var(--grey);
    text-decoration: none;
    font-family: "Share Tech Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-right: 1px solid var(--border);
    transition:
        color 0.15s,
        background 0.15s;
    position: relative;
}

.nav-links li:first-child a {
    border-left: 1px solid var(--border);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--red);
    background: rgba(196, 30, 30, 0.06);
}

.nav-links li a.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red);
}

/* ── HERO WRAP (bg image spans hero + latest drop) ─── */
.hero-wrap {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url("city_background.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* ── HERO ───────────────────────────────────────────── */
#hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Faint red grid */
#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(196, 30, 30, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 30, 30, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    animation: scanPulse 6s ease-in-out infinite;
}

/* Radial vignette removed — handled by hero-wrap overlay */

.hero-logo-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-main-logo {
    width: min(700px, 90vw);
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 24px rgba(196, 30, 30, 0.4));
    animation:
        glitch-clip 9s steps(1) infinite,
        flicker 20s infinite;
}

.hero-sub {
    margin-top: 1.2rem;
    font-family: "Share Tech Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.35em;
    color: var(--grey);
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Cursor blink after tagline */
.hero-sub::after {
    content: "█";
    animation: cursor-blink 1.1s step-end infinite;
    color: var(--red);
    margin-left: 4px;
}

.hero-tagline {
    margin-top: 2.5rem;
    font-family: "Cinzel", serif;
    font-size: clamp(13px, 2vw, 18px);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white);
    text-align: center;
    position: relative;
    z-index: 2;
    animation: glitch-clip-2 11s steps(1) infinite;
    text-shadow: 0 0 16px rgba(196, 30, 30, 0.35);
}

.hero-cta {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    font-family: "Share Tech Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border: 1px solid;
    cursor: pointer;
    transition: all 0.15s;
    display: inline-block;
}

.btn-primary {
    background: var(--red);
    border-color: var(--red);
    color: #000;
}
.btn-primary:hover {
    background: var(--red-glow);
    border-color: var(--red-glow);
    box-shadow: 0 0 18px rgba(255, 42, 42, 0.4);
}

.btn-ghost {
    background: transparent;
    border-color: var(--red-dim);
    color: var(--red);
}
.btn-ghost:hover {
    border-color: var(--red);
    box-shadow: 0 0 12px rgba(196, 30, 30, 0.25);
    color: var(--red-glow);
}

/* ── SECTION COMMON ─────────────────────────────────── */
.section {
    padding: 6rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.pent-book {
    height: 48px;
    opacity: 0.7;
    filter: drop-shadow(0 0 8px var(--red-dim));
    flex-shrink: 0;
}

.section-title {
    font-family: "Cinzel", serif;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-rule {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--red-dim), transparent);
}

/* Full-width section divider */
.site-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--red-dim) 20%,
        var(--red-dim) 80%,
        transparent
    );
    margin: 0;
}

/* ── LATEST DROP (hero sub-section) ────────────────── */
.latest-drop {
    background: transparent;
    border: 1px solid var(--border);
    border-top: 2px solid var(--red-dim);
    padding: 2rem 2.5rem;
    position: relative;
    animation: borderBlink 4s ease-in-out infinite;
}

.latest-drop::before {
    content: "// LATEST_TRANSMISSION";
    position: absolute;
    top: -10px;
    left: 1.5rem;
    background: var(--black);
    padding: 0 0.5rem;
    font-size: 10px;
    color: var(--red);
    letter-spacing: 0.15em;
}

.latest-drop h3 {
    font-family: "Cinzel", serif;
    font-size: 18px;
    color: var(--white);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.latest-drop p {
    color: var(--grey);
    font-size: 13px;
    line-height: 1.8;
}

.latest-drop .meta {
    font-size: 10px;
    color: var(--grey);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

/* ── ABOUT ──────────────────────────────────────────── */
#about-section {
    background: var(--surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 700px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-text p {
    margin-bottom: 1.2rem;
    color: var(--grey);
    font-size: 13px;
    line-height: 1.9;
}

.about-text p strong {
    color: var(--red);
    font-weight: normal;
}

.stat-block {
    display: grid;
    gap: 1rem;
}

.stat-item {
    border-left: 2px solid var(--red-dim);
    padding: 0.8rem 1.2rem;
    background: var(--surface2);
}

.stat-label {
    font-size: 10px;
    color: var(--grey-dim);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.stat-value {
    font-family: "Cinzel", serif;
    font-size: 16px;
    color: var(--white);
    letter-spacing: 0.08em;
    margin-top: 0.3rem;
}

/* ── MEMBERS ────────────────────────────────────────── */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.member-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 2px solid var(--red-dim);
    padding: 1.8rem 1.5rem;
    position: relative;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.member-card:hover {
    border-top-color: var(--red);
    box-shadow:
        0 0 20px rgba(196, 30, 30, 0.1),
        inset 0 0 40px rgba(196, 30, 30, 0.03);
}

.member-img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--surface2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    position: relative;
    overflow: hidden;
}

.member-img-placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(196, 30, 30, 0.03) 10px,
        rgba(196, 30, 30, 0.03) 11px
    );
}

.member-img-placeholder span {
    font-size: 10px;
    color: var(--grey-dim);
    letter-spacing: 0.2em;
    z-index: 1;
}

.member-name {
    font-family: "Cinzel", serif;
    font-size: 16px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.1em;
}

.member-role {
    font-size: 10px;
    color: var(--red);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin: 0.4rem 0 0.8rem;
}

.member-origin {
    font-size: 11px;
    color: var(--grey-dim);
    line-height: 1.7;
}

.member-card .glitch-tag {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    font-size: 9px;
    color: var(--blue-dim);
    letter-spacing: 0.15em;
    opacity: 0.7;
}

/* ── PLACEHOLDER TABS (Music/Videos/Gallery/Shows) ── */
.tab-bar {
    display: flex;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2.5rem;
    overflow-x: auto;
}

.tab-btn {
    font-family: "Share Tech Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.9rem 1.8rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--grey-dim);
    cursor: pointer;
    white-space: nowrap;
    transition:
        color 0.15s,
        border-color 0.15s;
}

.tab-btn:hover {
    color: var(--grey);
}

.tab-btn.active {
    color: var(--red);
    border-bottom-color: var(--red);
}

.tab-panel {
    display: none;
}
.tab-panel.active {
    display: block;
}

.placeholder-box {
    background: var(--surface);
    border: 1px dashed var(--border);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

.placeholder-box::before {
    content: attr(data-label);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    padding: 0 0.8rem;
    font-size: 9px;
    color: var(--grey-dim);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
}

.placeholder-box p {
    color: var(--grey-dim);
    font-size: 12px;
    letter-spacing: 0.15em;
}

.platform-list {
    display: inline-block;
    margin-top: 0.6rem;
    color: var(--grey);
}

.placeholder-box .ph-icon {
    font-size: 28px;
    margin-bottom: 1rem;
    opacity: 0.2;
}

/* ── RELEASE CARD (album name / track count) ────────── */
.release-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.4rem 2.4rem;
    margin-bottom: 1.8rem;
    border: 1px solid var(--red-dim);
    border-top: 2px solid var(--red);
    background: linear-gradient(
        180deg,
        rgba(196, 30, 30, 0.06),
        transparent 70%
    );
    position: relative;
}

.release-card::before {
    content: "// NOW MASTERING";
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--surface);
    padding: 0 0.7rem;
    font-size: 8px;
    color: var(--red-dim);
    letter-spacing: 0.25em;
    white-space: nowrap;
}

.release-title {
    font-family: "Cinzel", serif;
    font-weight: 900;
    font-size: clamp(28px, 5vw, 40px);
    letter-spacing: 0.18em;
    color: var(--white);
    text-shadow: 0 0 18px rgba(196, 30, 30, 0.3);
}

.release-meta {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.release-dot {
    color: var(--grey-dim);
}

/* ── CONTACT / MAILING ──────────────────────────────── */
.contact-simple {
    max-width: 560px;
}

.contact-simple h3 {
    font-family: "Cinzel", serif;
    font-size: 14px;
    color: var(--white);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.contact-simple p {
    font-size: 12px;
    color: var(--grey-dim);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: "Share Tech Mono", monospace;
    font-size: 14px;
    letter-spacing: 0.08em;
    color: var(--white);
    text-decoration: none;
    padding: 0.9rem 1.4rem;
    border: 1px solid var(--red-dim);
    background: var(--surface2);
    transition:
        color 0.15s,
        border-color 0.15s,
        box-shadow 0.15s;
}

.contact-email-link::before {
    content: ">";
    color: var(--red);
    transition: color 0.15s;
}

.contact-email-link:hover {
    color: var(--red-glow);
    border-color: var(--red);
    box-shadow: 0 0 14px rgba(196, 30, 30, 0.25);
}

.contact-email-link:hover::before {
    color: var(--red-glow);
}

/* ── SOCIAL ROW ─────────────────────────────────────── */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-link {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-dim);
    text-decoration: none;
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    transition:
        color 0.15s,
        border-color 0.15s;
}

.social-link:hover {
    color: var(--red);
    border-color: var(--red-dim);
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 2rem;
    text-align: center;
}

.footer-logo {
    height: 40px;
    opacity: 0.5;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 4px var(--red-dim));
    margin-top: 4px;
}

footer p {
    font-size: 10px;
    color: var(--grey-dim);
    letter-spacing: 0.2em;
    line-height: 2;
}

footer .footer-red {
    color: var(--red-dim);
}

/* ── SECTION BG ALTERNATION ─────────────────────────── */
#about-section {
    background: var(--surface);
}
#media-section {
    background: var(--black);
}
#members-section {
    background: var(--surface);
}
#contact-section {
    background: var(--black);
}

/* Media and Contact share the same background with no color
   break between them, so their combined padding was reading
   as a much bigger gap than the other section transitions. */
#media-section .section {
    padding-bottom: 3rem;
}
#contact-section .section {
    padding-top: 3rem;
}

/* ── GALLERY FILTERS ────────────────────────────────── */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}

.filter-chip {
    font-family: "Share Tech Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-dim);
    background: transparent;
    border: 1px solid var(--border);
    padding: 0.6rem 1.1rem;
    cursor: pointer;
    transition:
        color 0.15s,
        border-color 0.15s,
        background 0.15s;
}

.filter-chip:hover {
    color: var(--grey);
    border-color: var(--red-dim);
}

.filter-chip.active {
    color: var(--red);
    border-color: var(--red-dim);
    background: rgba(196, 30, 30, 0.08);
}

/* ── LOAD MORE ──────────────────────────────────────── */
.load-more-btn {
    display: block;
    margin: 2rem auto 0;
    font-family: "Share Tech Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.8rem 2.2rem;
    background: transparent;
    border: 1px solid var(--red-dim);
    color: var(--red);
    cursor: pointer;
    transition:
        border-color 0.15s,
        box-shadow 0.15s,
        color 0.15s;
}

.load-more-btn:hover {
    border-color: var(--red);
    color: var(--red-glow);
    box-shadow: 0 0 12px rgba(196, 30, 30, 0.25);
}

/* ── GALLERY GRID ───────────────────────────────────── */
#gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
}

.gallery-thumb {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: var(--surface2);
    border: 1px solid var(--border);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-thumb:hover img {
    transform: scale(1.05);
}

.gallery-thumb .thumb-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: var(--white);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1.5rem 0.8rem 0.7rem;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.gallery-thumb:hover .thumb-caption {
    opacity: 1;
}

/* ── LIGHTBOX ───────────────────────────────────────── */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

#lightbox.open {
    display: flex;
}

#lb-inner {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#lb-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    border: 1px solid var(--red-dim);
    box-shadow: 0 0 40px rgba(196, 30, 30, 0.2);
}

#lb-caption {
    margin-top: 0.8rem;
    font-size: 11px;
    color: var(--grey-dim);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
}

#lb-counter {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: var(--grey-dim);
    letter-spacing: 0.2em;
}

#lb-close {
    position: fixed;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: 1px solid var(--red-dim);
    color: var(--red);
    font-size: 16px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-family: "Share Tech Mono", monospace;
    transition:
        background 0.15s,
        border-color 0.15s;
}

#lb-close:hover {
    background: rgba(196, 30, 30, 0.15);
    border-color: var(--red);
}

#lb-prev,
#lb-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--red-dim);
    color: var(--red);
    font-size: 36px;
    width: 52px;
    height: 72px;
    cursor: pointer;
    font-family: "Share Tech Mono", monospace;
    transition:
        background 0.15s,
        border-color 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

#lb-prev {
    left: 1rem;
}
#lb-next {
    right: 1rem;
}

#lb-prev:hover,
#lb-next:hover {
    background: rgba(196, 30, 30, 0.15);
    border-color: var(--red);
}

/* ── VIDEO GRID ─────────────────────────────────────── */
#video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.video-thumb {
    cursor: pointer;
    position: relative;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-top: 2px solid var(--red-dim);
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.video-thumb:hover {
    border-top-color: var(--red);
    box-shadow:
        0 0 20px rgba(196, 30, 30, 0.1),
        inset 0 0 40px rgba(196, 30, 30, 0.03);
}

.video-thumb-img-wrap {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    background: #000;
}

.video-thumb-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    opacity: 0.85;
}

.video-thumb:hover .video-thumb-img-wrap img {
    transform: scale(1.05);
    opacity: 1;
}

.video-play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.video-play-icon span {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid var(--red-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 20px;
    transition:
        background 0.15s,
        border-color 0.15s,
        color 0.15s;
}

.video-thumb:hover .video-play-icon span {
    background: rgba(196, 30, 30, 0.25);
    border-color: var(--red);
    color: var(--white);
}

.video-thumb-info {
    padding: 0.9rem 1.1rem 1.1rem;
}

.video-thumb-title {
    font-family: "Cinzel", serif;
    font-size: 13px;
    color: var(--white);
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
}

.video-thumb-meta {
    font-size: 10px;
    color: var(--grey-dim);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ── VIDEO MODAL ────────────────────────────────────── */
#video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

#video-modal.open {
    display: flex;
}

#vm-inner {
    position: relative;
    width: min(960px, 90vw);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#vm-frame-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    border: 1px solid var(--red-dim);
    box-shadow: 0 0 40px rgba(196, 30, 30, 0.2);
    background: #000;
}

#vm-frame-wrap iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

#vm-caption {
    margin-top: 0.8rem;
    font-size: 11px;
    color: var(--grey-dim);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
}

#vm-yt-link {
    margin-top: 0.6rem;
    font-size: 10px;
    color: var(--red);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--red-dim);
    padding: 0.5rem 1rem;
    transition:
        color 0.15s,
        border-color 0.15s;
}

#vm-yt-link:hover {
    color: var(--red-glow);
    border-color: var(--red);
}

#vm-close {
    position: fixed;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: 1px solid var(--red-dim);
    color: var(--red);
    font-size: 16px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-family: "Share Tech Mono", monospace;
    transition:
        background 0.15s,
        border-color 0.15s;
}

#vm-close:hover {
    background: rgba(196, 30, 30, 0.15);
    border-color: var(--red);
}

/* ── ALBUM GRID ─────────────────────────────────────── */
#album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.album-card {
    cursor: pointer;
    position: relative;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-top: 2px solid var(--red-dim);
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.album-card:hover {
    border-top-color: var(--red);
    box-shadow:
        0 0 20px rgba(196, 30, 30, 0.1),
        inset 0 0 40px rgba(196, 30, 30, 0.03);
}

.album-art-wrap {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background: #000;
}

.album-art-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    opacity: 0.88;
}

.album-card:hover .album-art-wrap img {
    transform: scale(1.05);
    opacity: 1;
}

.album-play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.75));
}

.album-play-icon span {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid var(--red-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 18px;
    opacity: 0;
    transition:
        opacity 0.15s,
        background 0.15s,
        border-color 0.15s,
        color 0.15s;
}

.album-card:hover .album-play-icon span {
    opacity: 1;
    background: rgba(196, 30, 30, 0.25);
    border-color: var(--red);
    color: var(--white);
}

.album-card-info {
    padding: 0.9rem 1.1rem 1.1rem;
}

.album-card-title {
    font-family: "Cinzel", serif;
    font-size: 13px;
    color: var(--white);
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
}

.album-card-meta {
    font-size: 10px;
    color: var(--grey-dim);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.album-card-tag {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    font-size: 9px;
    color: var(--blue-dim);
    letter-spacing: 0.15em;
    opacity: 0.8;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.2rem 0.5rem;
    z-index: 1;
}

/* ── ALBUM MODAL ────────────────────────────────────── */
#album-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 2rem 1rem;
}

#album-modal.open {
    display: flex;
}

#am-inner {
    position: relative;
    width: min(400px, 92vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}

#am-frame-wrap {
    width: 100%;
    border: 1px solid var(--red-dim);
    box-shadow: 0 0 40px rgba(196, 30, 30, 0.2);
    background: #000;
    line-height: 0;
}

#am-frame-wrap iframe {
    width: 100%;
    display: block;
    border: none;
}

#am-bc-link {
    margin-top: 0.8rem;
    font-size: 10px;
    color: var(--red);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--red-dim);
    padding: 0.5rem 1rem;
    transition:
        color 0.15s,
        border-color 0.15s;
}

#am-bc-link:hover {
    color: var(--red-glow);
    border-color: var(--red);
}

#am-close {
    position: fixed;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: 1px solid var(--red-dim);
    color: var(--red);
    font-size: 16px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-family: "Share Tech Mono", monospace;
    transition:
        background 0.15s,
        border-color 0.15s;
    z-index: 1;
}

#am-close:hover {
    background: rgba(196, 30, 30, 0.15);
    border-color: var(--red);
}

/* ── SCROLLBAR ───────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--red-dim);
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 600px) {
    .nav-links li a {
        padding: 0 0.7rem;
        font-size: 10px;
    }
    .section {
        padding: 4rem 1.2rem;
    }
}

/* ── PREFERS REDUCED MOTION ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
