/* Self-hosted fonts — no external requests */
@font-face {
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/orbitron-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/cinzel-700-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/cinzel-700-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
    --ink: #e8e6f2;
    --muted: #b8b5c8;
    --crimson: #b20c1b;
    --violet: #6b4df2;
    --glass-bg: rgba(12,12,18,.6);
    --glass-border: rgba(255,255,255,.08);
    --card-radius: 14px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: #090910;
    color: var(--ink);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background overlay blobs */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.55)),
        radial-gradient(ellipse 80% 60% at 80% 30%, rgba(107,77,242,.18) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 15% 80%, rgba(178,12,27,.18) 0%, transparent 70%);
    pointer-events: none;
}

/* ─── Background Image ─────────────────────────────────────── */
.bg-image {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: url('../images/hero-banner.jpg') center center / cover no-repeat;
    filter: brightness(0.65) saturate(0.8);
}

/* ─── Navigation ───────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1rem, 4vw, 3rem);
    background: rgba(9,9,16,.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    color: var(--ink);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.nav-logo img {
    height: 30px;
    width: auto;
    filter: drop-shadow(0 0 6px rgba(107,77,242,.4));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(.5rem, 2vw, 1.8rem);
    list-style: none;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: color .2s;
}

.nav-links a:hover { color: var(--ink); }

.nav-links .nav-cta a {
    background: rgba(107,77,242,.18);
    border: 1px solid rgba(107,77,242,.4);
    border-radius: 6px;
    padding: .35rem .75rem;
    color: var(--ink);
}

.nav-links .nav-cta a:hover {
    background: rgba(107,77,242,.3);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all .3s;
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
    position: relative;
    z-index: 3;
    min-height: 50svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px clamp(1rem, 5vw, 3rem) 4rem;
    gap: 1.5rem;
}

/* Image glitch wrapper */
.hero-logo-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: .5rem;
}

.hero-logo {
    width: clamp(240px, 70vw, 800px);
    height: auto;
    display: block;
    filter: drop-shadow(0 0 20px rgba(107,77,242,.4));
    position: relative;
    z-index: 1;
}

.hero-logo-wrap::before,
.hero-logo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/main/namelogo.png') center / contain no-repeat;
    pointer-events: none;
}

.hero-logo-wrap::before {
    left: 8px;
    top: 5px;
    mix-blend-mode: screen;
    filter: url('#glitch-pink') saturate(4) hue-rotate(300deg) brightness(1.5);
    animation: glitch-paths 5s step-end infinite, glitch-opacity 5s step-end infinite;
    z-index: 2;
}

.hero-logo-wrap::after {
    left: -6px;
    top: 3px;
    mix-blend-mode: screen;
    filter: url('#glitch-cyan') saturate(4) hue-rotate(170deg) brightness(1.5);
    animation: glitch-paths 7s step-end infinite, glitch-opacity 7s step-end infinite;
    z-index: 2;
}

/* Social icons row */
.social-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 499px) {
    .social-row {
        max-width: 280px;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    }
    .social-row::-webkit-scrollbar { display: none; }
    .social-row a { scroll-snap-align: start; }
}

.social-row a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    color: var(--muted);
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s, transform .2s;
    flex-shrink: 0;
}

.social-row a:hover {
    background: rgba(107,77,242,.2);
    border-color: rgba(107,77,242,.5);
    color: var(--ink);
    transform: translateY(-2px);
}

.social-row svg { width: 18px; height: 18px; fill: currentColor; }

/* Hero buttons */
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
    margin-top: .5rem;
}

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem 1.5rem;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
    color: var(--ink);
}

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

.btn--primary {
    background: linear-gradient(90deg, rgba(178,12,27,.28), rgba(107,77,242,.32));
    border: 1px solid rgba(255,255,255,.1);
}

.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(178,12,27,.28), rgba(107,77,242,.32));
    filter: blur(12px);
    opacity: 0;
    transition: opacity .3s;
    z-index: -1;
}

.btn--primary:hover::before { opacity: 1; }

.btn--ghost {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.2);
}

.btn--ghost:hover {
    background: rgba(255,255,255,.08);
}

/* ─── Section base ─────────────────────────────────────────── */
section {
    position: relative;
    z-index: 3;
    padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 3rem);
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-inner--narrow {
    max-width: 720px;
    margin: 0 auto;
}

.section-head {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-head h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    display: inline-block;
}

.section-head h2.glitch::before,
.section-head h2.glitch::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.section-head h2.glitch::before {
    left: 6px;
    top: 4px;
    color: #e0287d;
    animation: glitch-paths 5s step-end infinite, glitch-opacity 5s step-end infinite;
}
.section-head h2.glitch::after {
    left: -4px;
    top: 2px;
    color: #1bc7fb;
    animation: glitch-paths 7s step-end infinite, glitch-opacity 7s step-end infinite;
}

.section-head .section-divider {
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--crimson), var(--violet));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ─── Glass Card ───────────────────────────────────────────── */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 8px 28px rgba(0,0,0,.35);
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

/* ─── Live Events ──────────────────────────────────────────── */
#live {
    margin-top: clamp(-60px, -8vh, -30px);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.event-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 8px 28px rgba(0,0,0,.35);
    padding: 1.25rem 1.5rem;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0 1.25rem;
    align-items: center;
}

.event-date {
    grid-row: 1 / 3;
    background: linear-gradient(135deg, rgba(178,12,27,.15), rgba(107,77,242,.15));
    border: 1px solid rgba(107,77,242,.25);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: .75rem .5rem;
    text-align: center;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.event-date .month {
    font-size: .55rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: .25rem;
}

.event-title {
    font-size: .8rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: .05em;
}

.event-venue {
    font-size: .65rem;
    color: var(--muted);
    letter-spacing: .08em;
    margin-top: .25rem;
}

.event-tags {
    grid-column: 2;
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: .5rem;
}

.event-tag {
    font-size: .55rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .2rem .6rem;
    border-radius: 999px;
    border: 1px solid rgba(107,77,242,.4);
    background: rgba(107,77,242,.1);
    color: var(--muted);
}

.no-events {
    text-align: center;
    padding: 3rem 2rem;
}

.no-events p {
    color: var(--muted);
    font-size: .8rem;
    letter-spacing: .1em;
    margin-bottom: 1.5rem;
}

/* ─── Twitch Section ───────────────────────────────────────── */
#twitch .section-inner--narrow {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.twitch-card {
    text-align: center;
}

.twitch-card p {
    color: var(--muted);
    font-size: .75rem;
    line-height: 1.8;
    letter-spacing: .05em;
    margin-bottom: 1.5rem;
}

/* ─── Stream Events (Calendar) ─────────────────────────────── */
.stream-events {
    margin: 1rem 0 1.5rem;
    text-align: left;
}

.stream-events__loading {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--muted);
    font-size: .7rem;
    letter-spacing: .08em;
    justify-content: center;
    padding: 1rem 0;
}

.stream-events__spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(107,77,242,.3);
    border-top-color: var(--violet);
    border-radius: 50%;
    animation: spin .8s linear infinite;
    flex-shrink: 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.stream-events__empty {
    color: var(--muted);
    font-size: .72rem;
    letter-spacing: .08em;
    text-align: center;
    padding: .75rem 0;
}

.se-header {
    font-size: .6rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: .75rem;
}

.se-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.se-item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: center;
    gap: .75rem 1rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: .75rem 1rem;
    transition: border-color .2s, background .2s;
}

.se-item:hover {
    background: rgba(107,77,242,.08);
    border-color: rgba(107,77,242,.25);
}

.se-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(178,12,27,.15), rgba(107,77,242,.15));
    border: 1px solid rgba(107,77,242,.2);
    border-radius: 8px;
    padding: .4rem .3rem;
    text-align: center;
    line-height: 1.2;
}

.se-date__day {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.se-date__mon {
    font-size: .5rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}

.se-date__wd {
    font-size: .48rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(184,181,200,.6);
    margin-top: .1rem;
}

.se-meta {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    min-width: 0;
}

.se-title {
    font-size: .78rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: .04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.se-location {
    font-size: .62rem;
    color: var(--muted);
    letter-spacing: .06em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.se-time {
    font-size: .62rem;
    color: var(--muted);
    letter-spacing: .06em;
}

.se-action {
    flex-shrink: 0;
}

.se-add-btn {
    font-size: .6rem;
    padding: .35rem .75rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

/* Add-to-calendar popup */
.se-cal-popup {
    position: absolute;
    right: 0;
    bottom: calc(100% + 6px);
    z-index: 50;
    background: rgba(14,14,22,.97);
    border: 1px solid rgba(107,77,242,.4);
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,.5), 0 0 0 1px rgba(107,77,242,.1);
    padding: .5rem;
    min-width: 220px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: popup-in .15s ease;
}

@keyframes popup-in {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.se-cal-popup__title {
    font-size: .55rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--violet);
    padding: .25rem .5rem .5rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
    margin-bottom: .35rem;
}

.se-cal-popup__opt {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem .6rem;
    border-radius: 7px;
    font-size: .68rem;
    letter-spacing: .05em;
    color: var(--ink);
    text-decoration: none;
    transition: background .15s;
    white-space: nowrap;
}

.se-cal-popup__opt:hover {
    background: rgba(107,77,242,.15);
    color: #fff;
}

@media (max-width: 480px) {
    .se-item {
        grid-template-columns: 48px 1fr;
    }
    .se-action {
        grid-column: 2;
    }
    .se-cal-popup {
        right: auto;
        left: 0;
    }
}

.twitch-btns {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
}

/* ─── Spotify Section ──────────────────────────────────────── */
#spotify .glass-card {
    text-align: center;
}

#spotify p {
    color: var(--muted);
    font-size: .75rem;
    line-height: 1.8;
    letter-spacing: .05em;
    margin-bottom: 1.5rem;
}

.spotify-embed {
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    max-width: 600px;
}

.spotify-embed iframe {
    display: block;
    width: 100%;
    border: none;
    border-radius: 12px;
}

/* ─── About Section (homepage teaser) ─────────────────────── */
#about .glass-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 680px) {
    #about .glass-card { grid-template-columns: 1fr; }
}

.about-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--muted);
    font-size: .75rem;
    line-height: 1.9;
    letter-spacing: .04em;
    margin-bottom: .75rem;
}

.about-text p:last-of-type { margin-bottom: 1.5rem; }

.about-img {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
    filter: saturate(.8) brightness(.9);
    transition: filter .3s;
}

.about-img img:hover { filter: saturate(1) brightness(1); }

/* ─── Highlights ───────────────────────────────────────────── */
#highlights .glass-card {
    padding: 2rem clamp(1.5rem, 4vw, 3rem);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem 2rem;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.highlight-label {
    font-size: .6rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
}

.highlight-value {
    font-size: .95rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: .05em;
}

/* ─── Footer ───────────────────────────────────────────────── */
footer {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2.5rem 1rem;
    border-top: 1px solid rgba(255,255,255,.08);
    color: var(--muted);
    font-size: .65rem;
    letter-spacing: .12em;
}

footer a {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}

footer a:hover { color: var(--ink); }

footer .footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: .75rem;
}

/* ─── Modal ────────────────────────────────────────────────── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.is-open { display: flex; }

.modal {
    background: rgba(12,12,20,.95);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--muted);
    font-size: 1rem;
    transition: background .2s, color .2s;
}

.modal-close:hover {
    background: rgba(178,12,27,.2);
    color: var(--ink);
    border-color: rgba(178,12,27,.4);
}

.modal h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.modal h3 {
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--violet);
    margin: 1.25rem 0 .5rem;
}

.modal p, .modal address {
    color: var(--muted);
    font-size: .72rem;
    line-height: 1.9;
    letter-spacing: .04em;
    font-style: normal;
}

.modal a { color: var(--ink); }
.modal a:hover { color: var(--violet); }

.modal-divider {
    height: 1px;
    background: rgba(255,255,255,.07);
    margin: 1.5rem 0;
}

/* ─── About Page ───────────────────────────────────────────── */
.page-hero {
    position: relative;
    z-index: 3;
    min-height: 38vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 80px clamp(1rem, 5vw, 3rem) 3rem;
    text-align: center;
    gap: .75rem;
}

.page-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 6vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #fff;
}

.page-hero .page-hero-sub {
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
}

.page-content {
    position: relative;
    z-index: 3;
    padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 5vw, 3rem) clamp(3rem, 8vw, 6rem);
}

.about-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2rem;
    align-items: start;
}

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

.about-sidebar img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    object-fit: cover;
    aspect-ratio: 3/4;
    filter: saturate(.8) brightness(.9);
}

.about-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-block {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 8px 28px rgba(0,0,0,.35);
    padding: 1.75rem 2rem;
}

.about-block h3 {
    font-family: 'Cinzel', serif;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.about-block p {
    color: var(--muted);
    font-size: .75rem;
    line-height: 1.9;
    letter-spacing: .04em;
    margin-bottom: .75rem;
}

.about-block p:last-child { margin-bottom: 0; }

.gear-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem .75rem;
}

@media (max-width: 480px) {
    .gear-list { grid-template-columns: 1fr; }
}

.gear-list li {
    font-size: .68rem;
    color: var(--muted);
    letter-spacing: .05em;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.gear-list li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--crimson), var(--violet));
    flex-shrink: 0;
}

.genre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.genre-tag {
    font-size: .6rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(178,12,27,.15), rgba(107,77,242,.15));
    border: 1px solid rgba(107,77,242,.3);
    color: var(--ink);
}

/* ─── Glitch Keyframes ─────────────────────────────────────── */
@keyframes glitch-paths {
    0%   { clip-path: inset(40% 0 61% 0); }
    10%  { clip-path: inset(92% 0 1%  0); }
    20%  { clip-path: inset(43% 0 1%  0); }
    30%  { clip-path: inset(25% 0 58% 0); }
    40%  { clip-path: inset(54% 0 7%  0); }
    50%  { clip-path: inset(58% 0 43% 0); }
    60%  { clip-path: inset(50% 0 14% 0); }
    70%  { clip-path: inset(28% 0 35% 0); }
    80%  { clip-path: inset(64% 0 4%  0); }
    90%  { clip-path: inset(7%  0 82% 0); }
    100% { clip-path: inset(40% 0 61% 0); }
}

@keyframes glitch-opacity {
    0%   { opacity: .8; }
    20%  { opacity: 0;  }
    40%  { opacity: .8; }
    60%  { opacity: 0;  }
    80%  { opacity: .8; }
    100% { opacity: .8; }
}

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-links.is-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 52px;
        left: 0;
        right: 0;
        background: rgba(9,9,16,.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 1rem 1.5rem 1.5rem;
        gap: .75rem;
        border-bottom: 1px solid rgba(255,255,255,.07);
        z-index: 199;
    }
    .nav-links.is-open a { font-size: .8rem; padding: .25rem 0; }
    .nav-toggle { display: flex; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .hero-logo-wrap::before,
    .hero-logo-wrap::after,
    .section-head h2.glitch::before,
    .section-head h2.glitch::after { display: none; }
    html { scroll-behavior: auto; }
}
