/* ═══════════════════════════════════════════════════════════════════════
   FELIX – Gay Techno Fetish Dance Event
   app.css – Main stylesheet
   Palette: #F3F300 (neon yellow), #000000 (black), #FFFFFF (white)
   Fonts: Barlow Condensed (headings/logo), Barlow (body)
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────────────────── */
:root {
    --yellow:       #F3F300;
    --yellow-dim:   #c8c800;
    --black:        #000000;
    --grey-900:     #0a0a0a;
    --grey-800:     #111111;
    --grey-700:     #1a1a1a;
    --grey-600:     #252525;
    --grey-400:     #555555;
    --grey-200:     #aaaaaa;
    --white:        #ffffff;

    --font-display: 'Barlow Condensed', sans-serif;
    --font-body:    'Barlow', sans-serif;

    --radius:       2px;
    --transition:   0.15s ease;
    --container:    960px;
    --container-narrow: 700px;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: var(--font-body-size-desktop, 17px);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
#main-content { flex: 1; }
img { display: block; max-width: 100%; }
a { color: var(--yellow); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }
ul, ol { list-style: none; }
button { cursor: pointer; }

/* ── Typography ──────────────────────────────────────────────────────────── */
.logo-felix {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(3rem, 10vw, 8rem);
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    display: block;
    font-style: italic;
}
.logo-felix--sm { font-size: clamp(1.4rem, 4vw, 2.2rem); }
.logo-sub {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(0.65rem, 1.5vw, 0.9rem);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    display: block;
}

/* ── Layout ──────────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: var(--container-narrow); }
.section { padding: 4rem 0; }
.section--dark { background: var(--grey-900); }
.section__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    font-style: italic;
}

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--black);
    border-bottom: 2px solid var(--yellow);
    overflow: visible;
}
.site-header__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 1rem;
    overflow: visible;
}
.site-header__logo { display: flex; flex-direction: column; gap: 0; text-decoration: none; }
.site-header__logo:hover .logo-felix { color: var(--white); }
.site-header__logo-img {
    height: var(--logo-size-header, 48px);
    width: auto;
    max-width: 200px;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.main-nav__list { display: flex; align-items: center; gap: 0; }

/* ── Icon nav links ─────────────────────────────────────────────────────── */
.main-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--grey-200);
    text-decoration: none;
    padding: 0.5rem 0.6rem;
    transition: color var(--transition);
}
.main-nav__link:hover { color: var(--yellow); }

/* Icon: always visible */
.nav-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    opacity: 0.75;
    transition: opacity var(--transition);
}
.main-nav__link:hover .nav-icon { opacity: 1; }
.nav-icon svg { display: block; width: 20px; height: 20px; }

/* Label: hidden on desktop, shown as CSS tooltip on hover */
.nav-label {
    position: absolute;
    bottom: -2.2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--yellow);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    padding: 0.25rem 0.6rem;
    border: 1px solid var(--grey-700);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 200;
}
.main-nav__link:hover .nav-label { opacity: 1; }

/* Special states */
.main-nav__link--admin { color: var(--yellow); }
.main-nav__link--admin .nav-icon { opacity: 1; }
.main-nav__link--logout { color: var(--grey-400); }

/* Language switcher unchanged */
.main-nav__link.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid var(--grey-600) !important;
    padding: 0.3rem 0.65rem !important;
    border-radius: 2px;
    margin-left: 0.25rem;
    position: static;
}
.main-nav__link.lang-switch .nav-label { display: none; }
.main-nav__link.lang-switch:hover { border-color: var(--yellow) !important; color: var(--yellow) !important; }
.lang-switch__flag { font-size: 13px; }
.lang-switch__code { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--yellow);
    transition: transform var(--transition);
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
    background: var(--black);
    border-bottom: 1px solid var(--grey-700);
}
.hero__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 2rem 1.5rem 2rem;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 2rem;
    min-height: 320px;
}
/* Ticker: align right edge with container, not viewport */
.event-ticker {
    flex: 0 0 300px;
    width: 300px;
    background: rgba(17,17,17,0.92);
    border: 2px solid var(--yellow);
    border-bottom: 2px solid var(--yellow);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    margin-bottom: 0;
}
.hero__logo-wrap {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 2rem;
}
.hero__logo-text {
    font-family: var(--font-display);
    font-weight: 900;
    font-style: italic;
    font-size: var(--font-hero-desktop, 160px);
    color: var(--yellow);
    line-height: 0.88;
    letter-spacing: -0.03em;
}
.hero__logo-img {
    max-height: var(--logo-size-hero, 180px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}
.hero__tagline {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(0.7rem, 1.8vw, 1rem);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-top: 0.75rem;
}
.hero__social {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
    align-items: center;
}

.event-ticker__vvk-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    margin: .5rem 0;
    padding: .45rem .75rem;
    border: 1px solid #2a2a2a;
    background: #0d0d0d;
    color: #aaa;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-decoration: none;
    transition: border-color var(--transition), color var(--transition);
}
.event-ticker__vvk-hint:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--grey-200);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.event-ticker__date {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: var(--yellow);
    line-height: 1;
}
.event-ticker__time {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--yellow);
    opacity: 0.7;
    margin-bottom: 0.75rem;
}
.event-ticker__location {
    color: var(--grey-200);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.event-ticker__location--link {
    display: inline-block;
    color: var(--grey-200);
    font-size: 0.85rem;
    text-decoration: none;
    border-bottom: 1px dashed var(--grey-600);
    transition: color var(--transition), border-color var(--transition);
    margin-bottom: 0.5rem;
}
.event-ticker__location--link:hover {
    color: var(--yellow);
    border-color: var(--yellow);
}
.event-ticker__djs {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 1rem;
}
.event-ticker__tickets {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.event-ticker__vvk-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-400);
    text-align: center;
}
.event-ticker__code69 {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    background: var(--grey-700);
    border: 1px solid var(--grey-600);
    padding: 0.7rem 0.9rem;
    text-decoration: none;
    transition: border-color var(--transition);
}
.event-ticker__code69:hover { border-color: var(--yellow); }
.code69__badge {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--grey-400);
}
.code69__name {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--yellow);
    line-height: 1.1;
}
.code69__sub {
    font-size: 0.75rem;
    color: var(--grey-400);
    line-height: 1.4;
}

/* Countdown and info bar inner wrappers */
.countdown-bar__inner,
.info-bar__inner {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: nowrap;
    padding: 0 1.5rem;
}
.info-bar__inner {
    gap: 0.75rem 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Countdown bar */
.countdown-bar {
    background: var(--yellow);
    padding: 1rem 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
}
.countdown-bar__label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    opacity: 0.5;
    white-space: nowrap;
}
.countdown-bar__items {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    flex-wrap: nowrap;
    align-items: center;
}
.countdown-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.cd-num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: var(--black);
    line-height: 1;
    display: inline-block;
    min-width: 2ch;
    text-align: center;
}
.cd-unit {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    opacity: 0.5;
    display: inline-block;
    margin-top: 0.1rem;
}

/* Info bar */
.info-bar {
    background: var(--grey-900);
    border-bottom: 1px solid var(--grey-700);
    padding: 0.6rem 0;
    display: flex;
    list-style: none;
}
.info-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey-400);
    list-style: none;
}
.info-pill strong { color: var(--yellow); font-weight: 700; font-style: normal; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.7rem 1.5rem;
    border: 2px solid transparent;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    border-radius: var(--radius);
    vertical-align: middle;
    text-decoration: none;
}
.btn--primary { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn--primary:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--outline { background: transparent; color: var(--yellow); border-color: var(--yellow); }
.btn--outline:hover { background: var(--yellow); color: var(--black) !important; border-color: var(--yellow); }
.btn--danger { background: #c0392b; color: var(--white); border-color: #c0392b; }
.btn--danger:hover { background: #e74c3c; border-color: #e74c3c; }
.btn--sm { font-size: 0.8rem; padding: 0.4rem 0.9rem; }
.btn--xs { font-size: 0.72rem; padding: 0.25rem 0.6rem; }
.btn--full { width: 100%; }

/* ── Event cards ─────────────────────────────────────────────────────────── */
.event-list { display: flex; flex-direction: column; gap: 1rem; }
.event-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--grey-800);
    border-left: 4px solid var(--yellow);
    padding: 1rem 1.5rem;
}
.event-card__date { text-align: center; min-width: 60px; }
.event-card__day {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2rem;
    color: var(--yellow);
    line-height: 1;
    display: block;
}
.event-card__mon {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--grey-200);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.event-card__info { flex: 1; }
.event-card__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--white);
    text-transform: uppercase;
}
.event-card__meta { font-size: 0.85rem; color: var(--grey-200); }
.event-card__djs { font-size: 0.9rem; color: var(--yellow); font-weight: 600; margin-top: 0.2rem; }
.row--past { opacity: 0.45; }

/* ── Album grid ──────────────────────────────────────────────────────────── */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}
.album-grid--full { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.album-card {
    background: var(--grey-800);
    border: 1px solid var(--grey-600);
    text-decoration: none;
    display: block;
    transition: border-color var(--transition), transform var(--transition);
}
.album-card:hover { border-color: var(--yellow); transform: translateY(-2px); }
.album-card__cover {
    height: 160px;
    background: var(--grey-700);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0.6rem;
    position: relative;
    overflow: hidden;
}
.album-card__cover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.album-card:hover .album-card__cover-img { transform: scale(1.04); }
.album-card__count {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--yellow);
    background: rgba(0,0,0,0.75);
    padding: 0.2rem 0.5rem;
    position: relative;
    z-index: 1;
}
.album-card__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--white);
    padding: 0.75rem 1rem 0.25rem;
}
.album-card__date { font-size: 0.8rem; color: var(--grey-200); padding: 0 1rem 0.75rem; }

/* ── Gallery grid ────────────────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.5rem;
}
.gallery-item {
    background: none;
    border: none;
    padding: 0;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}
.gallery-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease, opacity 0.2s;
}
.gallery-item:hover .gallery-item__img { transform: scale(1.04); opacity: 0.85; }

/* Lightbox */
.lightbox {
    position: fixed;
    top: 74px; /* below sticky header (72px + 2px border) */
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.97);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox[hidden] { display: none; }

/* Frame wraps image + overlaid controls */
.lightbox__frame {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 95vw;
    max-height: 95vh;
}
.lightbox__img {
    display: block;
    max-width: 95vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
    user-select: none;
}

/* Close — top-right corner of the image */
.lightbox__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 3rem;
    height: 3rem;
    background: rgba(0,0,0,0.85);
    border: none;
    border-bottom-left-radius: 0;
    color: var(--yellow);
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition);
    line-height: 1;
    z-index: 2;
}
.lightbox__close:hover { background: var(--yellow); color: var(--black); }

/* Prev/Next — centered on left/right edge of image */
.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 4rem;
    background: rgba(0,0,0,0.7);
    border: none;
    color: var(--yellow);
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition);
    z-index: 2;
    line-height: 1;
}
.lightbox__prev { left: 0; }
.lightbox__next { right: 0; }
.lightbox__prev:hover,
.lightbox__next:hover { background: var(--yellow); color: var(--black); }

/* Counter — bottom-right of image */
.lightbox__counter {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,0.75);
    color: var(--grey-400);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.5rem;
    z-index: 2;
    pointer-events: none;
}


/* ── Info grid ───────────────────────────────────────────────────────────── */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
@media (max-width: 900px) {
    .info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .info-grid { grid-template-columns: 1fr; }
}
.info-card {
    border: 1px solid var(--grey-600);
    padding: 1.75rem 1.5rem;
    text-align: center;
    background: var(--grey-900);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.info-card--tickets {
    border-color: var(--yellow);
    background: #0a0a00;
}
.info-card__icon { font-size: 1.75rem; color: var(--yellow); }
.info-card__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1rem;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.info-card p { color: var(--grey-200); font-size: 0.88rem; line-height: 1.6; margin: 0.25rem 0 0.5rem; }
.info-card__code69 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    background: var(--grey-700);
    border: 1px solid var(--grey-600);
    padding: 0.6rem 0.9rem;
    text-decoration: none;
    transition: border-color var(--transition);
    width: 100%;
    margin-top: 0.25rem;
}
.info-card__code69:hover { border-color: var(--yellow); }

/* ── Page hero ───────────────────────────────────────────────────────────── */
.page-hero {
    background: var(--black);
    padding: 3rem 0 2rem;
    border-bottom: 2px solid var(--yellow);
}
.page-hero__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-style: italic;
    font-size: var(--font-h1-desktop, 56px);
    color: var(--yellow);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.02em;
}
.page-hero__sub { color: var(--grey-200); font-family: var(--font-display); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.5rem; }
.back-link { font-size: 0.85rem; color: var(--grey-200); margin-bottom: 0.75rem; display: inline-block; }
.back-link:hover { color: var(--yellow); }

/* ── FAQ ────────────────────────────────────────────────────────────────── */

/* Quick-jump links between categories */
.faq-jump {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}
.faq-jump__link {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey-200);
    text-decoration: none;
    border: 1px solid var(--grey-600);
    padding: 0.3rem 0.8rem;
    transition: border-color var(--transition), color var(--transition);
}
.faq-jump__link:hover { border-color: var(--yellow); color: var(--yellow); }

/* Outer accordion wrapper */
.faq-accordion { display: flex; flex-direction: column; gap: 0.5rem; }

/* Category block */
.faq-cat-block {
    border: 1px solid var(--grey-600);
    background: var(--grey-800);
    scroll-margin-top: 100px;
}
.faq-item,
.faq-dresscode-block {
    scroll-margin-top: 100px;
}
.faq-cat-block[open] { border-color: var(--yellow); }

.faq-cat-block__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.faq-cat-block__head::-webkit-details-marker { display: none; }
.faq-cat-block__head:hover .faq-cat-block__name { color: var(--yellow); }

.faq-cat-block__name {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    flex: 1;
    transition: color var(--transition);
}
.faq-cat-block[open] .faq-cat-block__name { color: var(--yellow); }

.faq-cat-block__count {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--grey-400);
    background: var(--grey-700);
    padding: 0.15rem 0.5rem;
    letter-spacing: 0.08em;
}
.faq-cat-block__chevron {
    color: var(--grey-400);
    transition: transform 0.2s ease, color var(--transition);
    display: flex;
    align-items: center;
}
.faq-cat-block[open] .faq-cat-block__chevron { color: var(--yellow); }

.faq-cat-block__body {
    border-top: 1px solid var(--grey-600);
    padding: 0.5rem 0;
}

/* Individual FAQ item */
.faq-list { display: flex; flex-direction: column; }
.faq-item {
    border-bottom: 1px solid var(--grey-700);
}
.faq-item:last-child { border-bottom: none; }

.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1.25rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    list-style: none;
    user-select: none;
    gap: 1rem;
    color: var(--grey-200);
    transition: color var(--transition);
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item[open] > .faq-item__question { color: var(--white); }
.faq-item__question:hover { color: var(--white); }

.faq-item__icon {
    color: var(--yellow);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.faq-item__icon .icon-minus { display: none; }

.faq-item__answer {
    padding: 0 1.25rem 1rem;
    color: var(--grey-200);
    line-height: 1.75;
    font-size: 0.95rem;
}
.faq-item__answer a { color: var(--yellow); border-bottom: 1px dashed var(--yellow); text-decoration: none; }
.faq-item__answer a.btn { border-bottom: none; }
.faq-item__answer .btn--primary { color: var(--black) !important; }
.faq-item__answer .btn--outline { color: var(--yellow) !important; }
.faq-item__answer a:hover { color: var(--white); border-color: var(--white); }
.faq-item__answer strong { color: var(--white); }
.faq-item__answer ul, .faq-item__answer ol { margin: 0.5rem 0 0.5rem 1.5rem; }
.faq-item__answer li { margin-bottom: 0.2rem; }

/* Question form */
.question-form-wrap {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--grey-600);
}

/* ── Rules & Dresscodes ──────────────────────────────────────────────────── */
.dresscode-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1rem; }
.dresscode-tag {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--yellow);
    border: 1px solid var(--yellow);
    padding: 0.3rem 0.85rem;
}
.rule-list { display: flex; flex-direction: column; gap: 1.5rem; }
.rule-item { border-left: 3px solid var(--yellow); padding-left: 1.25rem; }
.rule-item__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
}
.rule-item__body { color: var(--grey-200); line-height: 1.7; }

/* ── Partner ─────────────────────────────────────────────────────────────── */
.partner-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.partner-card {
    background: var(--grey-800);
    border: 1px solid var(--grey-600);
    transition: border-color var(--transition);
}
.partner-card:hover { border-color: var(--yellow); }
.partner-card__logo { padding: 1.5rem; background: var(--grey-700); text-align: center; }
.partner-card__logo img { max-height: 80px; margin: 0 auto; }
.partner-card__body { padding: 1.25rem; }
.partner-card__name {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--yellow);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.partner-card__desc { font-size: 0.9rem; color: var(--grey-200); margin-bottom: 0.75rem; }

/* ── Legal ───────────────────────────────────────────────────────────────── */
.legal-content h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 2rem 0 0.6rem;
}
.legal-content p { color: var(--grey-200); margin-bottom: 0.75rem; line-height: 1.75; }

/* ── Forms ───────────────────────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 0; }
.form--inline { flex-direction: row; align-items: flex-end; flex-wrap: wrap; gap: 0.75rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.25rem; }
.form-group--grow { flex: 1 1 0; }
.form-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.form-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey-200);
}
.form-control {
    background: var(--grey-800);
    border: 1px solid var(--grey-600);
    color: var(--white);
    padding: 0.6rem 0.9rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: var(--radius);
    width: 100%;
    outline: none;
    transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--yellow); }
.form-control:disabled { opacity: 0.45; cursor: not-allowed; }
.form-control--xs { max-width: 90px; }
select.form-control option { background: var(--grey-800); }
.form-hint { font-size: 0.78rem; color: var(--grey-400); }
.form-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.5rem; padding-top: 1rem; border-top: 1px solid var(--grey-700); }
.form-actions--inline { flex-direction: row; border: none; padding: 0; margin: 0; }

/* ── Flash messages ──────────────────────────────────────────────────────── */
.flash {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0;
}
.flash--success { background: #1a3a1a; color: #6abe6a; border-left: 4px solid #6abe6a; }
.flash--error { background: #3a1a1a; color: #e06060; border-left: 4px solid #e06060; }
.flash__icon { font-size: 1.1rem; }

/* ── Login page ──────────────────────────────────────────────────────────── */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: var(--black);
}
.login-box {
    width: 100%;
    max-width: 400px;
    background: var(--grey-800);
    border: 2px solid var(--yellow);
    padding: 2.5rem;
}
.login-box__header { text-align: center; margin-bottom: 2rem; }
.login-box__footer { text-align: center; margin-top: 1.5rem; font-size: 0.85rem; }

/* ── Error pages ─────────────────────────────────────────────────────────── */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
}
.error-page__inner { max-width: 500px; }
.error-page__code {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(6rem, 20vw, 12rem);
    color: var(--yellow);
    line-height: 1;
    opacity: 0.15;
}
.error-page__logo { margin: -2rem auto 1rem; }
.error-page__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 1rem;
}
.error-page__msg { color: var(--grey-200); margin-bottom: 1.5rem; }
.error-page__uuid, .error-page__ids {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--grey-400);
}
.error-page__ids p { margin-bottom: 0.25rem; }
code { font-size: 0.8em; color: var(--grey-200); word-break: break-all; }

/* ── About page ──────────────────────────────────────────────────────────── */
.about-text {
    color: var(--grey-200);
    line-height: 1.85;
    font-size: 1rem;
}
.about-text strong { color: var(--white); }

/* WYSIWYG rendered output */
/* Enter = new <p> (paragraph spacing), Shift+Enter = <br> (line break, no spacing) */
.wysiwyg-content::after { content:''; display:table; clear:both; }
.wysiwyg-content p       { margin-bottom: .4rem; color: var(--grey-200); line-height: 1.75; }
.wysiwyg-content p + p   { margin-top: 0; }
.wysiwyg-content p:last-child { margin-bottom: 0; }
.wysiwyg-content br      { line-height: 1.85; }
/* Buttons inside wysiwyg must keep their own colors */
.wysiwyg-content .btn--primary { color: var(--black) !important; }
.wysiwyg-content .btn--outline { color: var(--yellow) !important; }
.wysiwyg-content h2      { font-family: var(--font-display); font-weight: 900; font-size: 1.4rem;
                            color: var(--yellow); text-transform: uppercase; letter-spacing: 0.06em;
                            margin: 1.5rem 0 0.6rem; }
.wysiwyg-content h3      { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
                            color: var(--white); text-transform: uppercase; letter-spacing: 0.06em;
                            margin: 1.25rem 0 0.5rem; }
.wysiwyg-content ul,
.wysiwyg-content ol      { margin: 0.5rem 0 1rem 1.5rem; color: var(--grey-200); }
.wysiwyg-content li      { margin-bottom: 0.3rem; line-height: 1.65; }
.wysiwyg-content strong  { color: var(--white); font-weight: 600; }
.wysiwyg-content em      { font-style: italic; }
.wysiwyg-content a       { color: var(--yellow); border-bottom: 1px dashed var(--yellow); }
.wysiwyg-content a:hover { color: var(--white); }
.wysiwyg-content blockquote {
    border-left: 3px solid var(--yellow);
    padding-left: 1.25rem;
    margin: 1rem 0;
    color: var(--grey-400);
    font-style: italic;
}
.wysiwyg-content hr { border: none; border-top: 1px solid var(--grey-700); margin: 1.5rem 0; }

.about-event-cta {
    background: var(--grey-900);
    border-top: 2px solid var(--yellow);
    border-bottom: 2px solid var(--yellow);
    padding: 2.5rem 0;
}
.about-event-cta__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.about-event-cta__label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-400);
    margin-bottom: 0.4rem;
}
.about-event-cta__date {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--yellow);
    line-height: 1;
}
.about-event-cta__time {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--yellow);
    opacity: 0.7;
    margin-bottom: 0.6rem;
}
.about-event-cta__loc {
    font-size: 0.85rem;
    color: var(--grey-200);
    text-decoration: none;
    border-bottom: 1px dashed var(--grey-600);
    display: inline-block;
    transition: color var(--transition), border-color var(--transition);
    margin-bottom: 0.5rem;
}
.about-event-cta__loc:hover { color: var(--yellow); border-color: var(--yellow); }
.about-event-cta__djs {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
}
.about-event-cta__action {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    min-width: 260px;
    width: 260px;
}
.about-event-cta__action .btn { width: 100%; text-align: center; }
.about-event-cta__code69 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    background: var(--grey-700);
    border: 1px solid var(--grey-600);
    padding: 0.6rem 0.9rem;
    text-decoration: none;
    transition: border-color var(--transition);
    width: 100%;
}
.about-event-cta__code69:hover { border-color: var(--yellow); }

/* ── Location page ───────────────────────────────────────────────────────── */
.location-info-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}
.location-description {
    color: var(--grey-200);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}
.location-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: var(--grey-800);
    border-left: 3px solid var(--yellow);
}
.location-detail__icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.location-detail__label {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--yellow);
    margin-bottom: 0.15rem;
}
.location-detail__value { display: block; font-size: 0.9rem; color: var(--grey-200); line-height: 1.5; }
.location-detail__value--link { color: var(--grey-200); text-decoration: none; border-bottom: 1px dashed var(--grey-600); transition: color var(--transition), border-color var(--transition); }
.location-detail__value--link:hover { color: var(--yellow); border-color: var(--yellow); }

.location-map-card { position: sticky; top: 80px; }
.location-map-link { display: block; text-decoration: none; }
.location-map-placeholder {
    background: var(--grey-800);
    border: 2px solid var(--yellow);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.location-map-placeholder:hover { background: var(--grey-700); }
.location-map-placeholder__inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 2rem;
}
.location-map-placeholder__icon { font-size: 2.5rem; }
.location-map-placeholder__name {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.location-map-placeholder__addr { font-size: 0.9rem; color: var(--grey-200); line-height: 1.5; }
.location-map-placeholder__cta {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--yellow);
    margin-top: 0.5rem;
}

/* Location gallery */
.location-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-top: 0;
}
.location-gallery__item { display: block; aspect-ratio: 1; overflow: hidden; }
.location-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease, opacity 0.2s;
}
.location-gallery__item:hover .location-gallery__img { transform: scale(1.05); opacity: 0.85; }

/* Directions */
.location-directions { display: flex; flex-direction: column; gap: 1.5rem; }
.directions-block { border-left: 3px solid var(--yellow); padding-left: 1.25rem; }
.directions-block__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}
.directions-block p { color: var(--grey-200); line-height: 1.7; font-size: 0.95rem; }
.directions-block strong { color: var(--white); }

@media (max-width: 900px) {
    .location-info-grid { grid-template-columns: 1fr; }
    .location-map-card { position: static; }
    .location-map-placeholder { aspect-ratio: 16/7; }
}
@media (max-width: 600px) {
    .location-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ── Share button ────────────────────────────────────────────────────────── */
.share-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 90;
    width: 48px;
    height: 48px;
    background: var(--yellow);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.6);
    transition: transform 0.15s ease, background 0.15s;
    color: var(--black);
}
.share-btn:hover { transform: scale(1.1); background: var(--white); }
.share-btn svg { display: block; }

/* Panel backdrop */
.share-panel__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 0;
    cursor: pointer;
}

/* Panel */
.share-panel {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 300;
    padding: 1rem;
}
.share-panel[hidden] { display: none; }

.share-panel__box {
    position: relative;
    z-index: 1;
    background: var(--grey-800);
    border: 2px solid var(--yellow);
    width: 100%;
    max-width: 420px;
    padding: 1.5rem;
    border-radius: 2px;
    animation: slideUp 0.2s ease;
}
@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0);   opacity: 1; }
}

.share-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}
.share-panel__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.share-panel__close {
    background: none;
    border: none;
    color: var(--grey-200);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.2rem;
    transition: color var(--transition);
}
.share-panel__close:hover { color: var(--yellow); }

/* URL row */
.share-panel__url-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.share-panel__url-input {
    flex: 1;
    background: var(--grey-900);
    border: 1px solid var(--grey-600);
    color: var(--grey-200);
    font-size: 0.78rem;
    padding: 0.55rem 0.75rem;
    font-family: monospace;
    border-radius: var(--radius);
    min-width: 0;
    outline: none;
}
.share-panel__copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--yellow);
    color: var(--black);
    border: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 0.9rem;
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
    border-radius: var(--radius);
}
.share-panel__copy-btn:hover { background: var(--white); }

/* Channel buttons */
.share-panel__channels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}
.share-channel {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1rem;
    border: 1px solid var(--grey-600);
    background: var(--grey-700);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: border-color 0.15s, background 0.15s;
    border-radius: var(--radius);
    cursor: pointer;
}
.share-channel:hover { background: var(--grey-600); border-color: var(--grey-400); }
.share-channel--whatsapp:hover { border-color: #25D366; color: #25D366; }
.share-channel--telegram:hover  { border-color: #2AABEE; color: #2AABEE; }
.share-channel--email:hover     { border-color: var(--yellow); color: var(--yellow); }
.share-channel--sms:hover       { border-color: #6abe6a; color: #6abe6a; }

/* QR code */
.share-panel__qr-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--grey-600);
}
.share-panel__qr-label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-400);
}
.share-panel__qr {
    background: var(--black);
    padding: 0.75rem;
    border: 1px solid var(--grey-600);
}
.share-panel__qr img,
.share-panel__qr canvas { display: block; }

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}
.testimonial-card {
    background: var(--grey-800);
    border: 1px solid var(--grey-600);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.testimonial-card__stars { font-size: 0.95rem; letter-spacing: 2px; }
.testimonial-card__text {
    font-style: italic;
    color: var(--grey-200);
    line-height: 1.7;
    font-size: 0.92rem;
    flex: 1;
    margin: 0;
    border: none;
    padding: 0;
}
.testimonial-card__meta {
    font-size: 0.78rem;
    color: var(--grey-400);
    border-top: 1px solid var(--grey-700);
    padding-top: 0.6rem;
    margin-top: auto;
}
.testimonial-card__meta strong { color: var(--grey-200); }

/* ── Footer (first) ──────────────────────────────────────────────────────── */
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--grey-600);
    color: var(--grey-200);
    text-decoration: none;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
    border-radius: 2px;
}
.social-icon:hover                { border-color: var(--yellow); color: var(--yellow); }
.social-icon--instagram:hover     { border-color: #E1306C; color: #E1306C; }
.social-icon--telegram:hover      { border-color: #2AABEE; color: #2AABEE; }
.social-icon--facebook:hover      { border-color: #1877F2; color: #1877F2; }
.social-icon svg                  { display: block; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--grey-900);
    border-top: 2px solid var(--yellow);
    padding: 2rem 0;
}
.site-footer__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem 2rem;
}
.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.site-footer__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.site-footer__social {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 1rem;
}
.site-footer__nav a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey-200);
    text-decoration: none;
    transition: color var(--transition);
}
.site-footer__nav a:hover { color: var(--yellow); }
.site-footer__meta {
    font-size: 0.78rem;
    color: var(--grey-400);
    text-align: right;
    line-height: 1.7;
}

/* ── Misc ────────────────────────────────────────────────────────────────── */
.text-muted { color: var(--grey-400); font-size: 0.9rem; }
.badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius);
}
.badge--green  { background: #1a3a1a; color: #6abe6a; border: 1px solid #6abe6a; }
.badge--red    { background: #3a1a1a; color: #e06060; border: 1px solid #e06060; }
.badge--yellow { background: #3a3a00; color: var(--yellow); border: 1px solid var(--yellow); }
.badge--grey   { background: var(--grey-700); color: var(--grey-200); border: 1px solid var(--grey-600); }
.divider { border: none; border-top: 1px solid var(--grey-600); margin: 1.5rem 0; }

/* ── Modal ───────────────────────────────────────────────────────────────── */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 300;
    padding: 1rem;
}
.modal[hidden] { display: none; }
.modal__box {
    background: var(--grey-800);
    border: 2px solid var(--yellow);
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}
.modal__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--black);
        border-bottom: 2px solid var(--yellow);
        padding: 1rem 0;
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.2s ease, opacity 0.2s;
        z-index: 99;
    }
    .main-nav.is-open { transform: translateY(0); opacity: 1; }
    .main-nav__list { flex-direction: column; gap: 0; align-items: stretch; padding: 0 0.5rem; }
    .main-nav__link {
        padding: 0.8rem 1rem;
        display: flex;
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }
    /* On mobile: label shown inline next to icon */
    .nav-label {
        position: static;
        transform: none;
        background: none;
        border: none;
        color: inherit;
        font-family: var(--font-display);
        font-size: 0.95rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 0;
        opacity: 1 !important;
        pointer-events: auto;
        white-space: normal;
    }
    .nav-icon { opacity: 1; }
    .main-nav__link.lang-switch { width: fit-content; }

    /* Hero: no top padding on mobile, logo directly below nav */
    .hero__inner {
        padding: 1rem 0 0;
        gap: 0;
        flex-direction: column;
        min-height: auto;
        flex-wrap: wrap;
    }
    .hero__logo-wrap {
        padding: 1rem 1.5rem 1rem;
        flex: none;
    }
    /* Ticker full width, flush edges */
    .event-ticker {
        flex: none;
        max-width: 100%;
        width: 100%;
        border-left: none;
        border-right: none;
        border-bottom: none;
        border-top: 2px solid var(--yellow);
    }
    .countdown-bar { padding: 0.85rem 0; }
    .countdown-bar__inner { padding: 0 1rem; gap: 1rem; justify-content: center; }
    .cd-num { font-size: var(--cd-font-mobile, clamp(1.8rem, 7vw, 2.5rem)); }
    .cd-unit { font-size: 0.62rem; }
    .countdown-bar__label { font-size: 0.72rem; }
    .countdown-bar__items { gap: 0.9rem; }
    .info-bar { padding: 0.6rem 0; }
    .info-bar__inner { padding: 0 1rem; gap: 0.5rem 1.25rem; }
    .info-pill { font-size: 0.82rem; }
    .form-row { flex-direction: column; gap: 0; }
    .site-footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.25rem;
        justify-items: center;
    }
    .site-footer__brand  { align-items: center; }
    .site-footer__center { align-items: center; }
    .site-footer__meta   { text-align: center; }
    .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .lightbox { top: 0; }
}

@media (max-width: 768px) {
    body           { font-size: var(--font-body-size-mobile, 16px); }
    .hero__logo-text { font-size: var(--font-hero-mobile, 72px); }
    .page-hero__title { font-size: var(--font-h1-mobile, 36px); }
}
