@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('inter-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('inter-500.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('inter-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('inter-700.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('roboto-condensed-700.ttf') format('truetype');
}

@font-face {
  font-family: 'Science Gothic';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-display: swap;
  src: url('science-gothic-cyrillic-ext.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: 'Science Gothic';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-display: swap;
  src: url('science-gothic-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Science Gothic';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-display: swap;
  src: url('science-gothic-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: 'Science Gothic';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-display: swap;
  src: url('science-gothic-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;
}

:root {
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-display: 'Science Gothic', 'Arial Narrow', Arial, sans-serif;
  --font-condensed: 'Roboto Condensed', 'Arial Narrow', Arial, sans-serif;
  --red:        #E8001C;
  --red-bright: #FF1A30;
  --red-dim:    rgba(232, 0, 28, 0.12);
  --red-glow:   0 0 18px rgba(232, 0, 28, 0.5), 0 0 40px rgba(232, 0, 28, 0.2);
  --red-text-glow: 0 0 12px rgba(232, 0, 28, 0.8);
  --bg:         #080808;
  --bg2:        #0F0F0F;
  --card:       #111111;
  --card2:      #161616;
  --border:     #1E1E1E;
  --border2:    #2A2A2A;
  --text:       #FFFFFF;
  --text2:      #CCCCCC;
  --muted:      rgba(255,255,255,0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.hidden {
  display: none !important;
}

/* ── Typography ───────────────────────────────────── */
.title-xl {
  font-family: 'Science Gothic', sans-serif;
  font-size: 36px;
  letter-spacing: 3px;
  line-height: 1;
}
.title-lg {
  font-family: 'Science Gothic', sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  line-height: 1;
}
.title-md {
  font-family: 'Science Gothic', sans-serif;
  font-size: 20px;
  letter-spacing: 1.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.neon-red {
  color: var(--red-bright);
  text-shadow: var(--red-text-glow);
}

/* ── Header ───────────────────────────────────────── */
.header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.back-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border2);
  border-radius: 10px;
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

/* ── Cards ────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.card.glowing {
  border-color: var(--red);
  box-shadow: var(--red-glow);
}
.card-top-line {
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 8px rgba(232,0,28,0.6);
}

/* ── Badges ───────────────────────────────────────── */
.badge {
  display: inline-block;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 10px rgba(232,0,28,0.4);
}
.badge-outline {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--muted);
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-family: 'Science Gothic', sans-serif;
  font-size: 18px;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.btn:active { opacity: 0.85; }
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,0,28,0.35);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--muted);
  font-size: 15px;
}
.btn-waitlist {
  background: rgba(255,165,0,0.12);
  border: 1px solid rgba(255,165,0,0.5);
  color: #ffa500;
  box-shadow: 0 0 10px rgba(255,165,0,0.15);
  font-size: 16px;
}
.btn:disabled {
  background: var(--card2);
  color: var(--muted);
  box-shadow: none;
  cursor: default;
}

/* ── Meta chips ───────────────────────────────────── */
.meta-row { display: flex; flex-wrap: wrap; gap: 8px; }
.meta-chip {
  background: var(--card2);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.meta-chip-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex-shrink: 0;
}
.meta-chip b { color: var(--text2); }

/* ── Seats bar ────────────────────────────────────── */
.seats-bar {
  height: 3px;
  background: var(--card2);
  border-radius: 2px;
  margin-top: 6px;
}
.seats-fill {
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(232,0,28,0.5);
}

/* ── Section label ────────────────────────────────── */
.section-label {
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--muted);
  margin-bottom: 10px;
}

/* ── Empty state ──────────────────────────────────── */
.empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}
.empty .icon {
  width: 56px;
  min-height: 56px;
  margin: 0 auto 12px;
  font-size: 48px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.empty .icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

/* ── Neon divider ─────────────────────────────────── */
.neon-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  margin: 20px 0;
  opacity: 0.5;
}
