:root {
  --bg: #030503;
  --bg-2: #071007;
  --panel: #0a1208;
  --ink: #eaf6c8;
  --muted: #8fa67a;
  --tox: #b8ff1a;
  --tox-2: #7cff00;
  --tox-dim: #2f5a10;
  --gold: #c7b056;
  --gold-hot: #e6d36a;
  --line: #1c3214;
  --max: 1100px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.shell, body.shell {
  height: 100%;
  display: flex;
  flex-direction: column;
}
#view {
  flex: 1;
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
[data-panel][hidden] { display: none !important; }
.nav-links a.on { color: var(--tox); }
body {
  margin: 0;
  background:
    radial-gradient(ellipse at 50% -8%, rgba(124, 255, 0, 0.16), transparent 42%),
    radial-gradient(ellipse at 80% 20%, rgba(40, 90, 10, 0.35), transparent 36%),
    radial-gradient(ellipse at 20% 80%, rgba(20, 40, 8, 0.7), transparent 40%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body.shell::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(124, 255, 0, 0.07), transparent 34%),
    repeating-linear-gradient(180deg, transparent 0 3px, rgba(0,0,0,0.08) 3px 4px);
}

.noise, .scan {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 60;
}
.noise {
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.scan {
  opacity: 0.07;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 2px,
    rgba(0, 0, 0, 0.35) 2px 3px
  );
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.wrap.narrow { width: min(640px, calc(100% - 2rem)); }

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.9rem;
  background: rgba(3, 6, 3, 0.94);
  border-bottom: 1px solid #2a4a14;
  box-shadow: 0 0 24px rgba(124, 255, 0, 0.08);
  backdrop-filter: blur(12px);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.12em;
  font-size: 1.2rem;
  color: var(--gold);
}
.nav-brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 1px solid #4a7a18;
  box-shadow: 0 0 10px rgba(124, 255, 0, 0.35);
}
.nav-links {
  display: none;
  gap: 1.15rem;
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}
.nav-links a { text-decoration: none; color: var(--muted); }
.nav-links a:hover { color: var(--tox); }
.nav-toggle {
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--tox);
}
.nav.open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #0a0e0a;
  padding: 1rem 1.25rem 1.4rem;
  border-bottom: 1px solid var(--line);
}

.hero {
  padding: 2.4rem 1rem 3rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(124, 255, 0, 0.12), transparent 55%);
}
.terminal {
  font-family: "Share Tech Mono", monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tox);
  font-size: 0.68rem;
  margin: 0 0 0.8rem;
}
.logo-wrap {
  width: min(420px, 88vw);
  margin: 0 auto 0.6rem;
  filter: drop-shadow(0 0 22px rgba(124, 255, 0, 0.45)) drop-shadow(0 0 48px rgba(80, 180, 0, 0.25));
}
.hero-logo {
  width: 100%;
  height: auto;
}
.hero-sub {
  margin: 0.15rem 0 1.3rem;
  font-family: Oswald, sans-serif;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--muted);
}
.hero-dates {
  display: grid;
  gap: 0.75rem;
  width: min(720px, 100%);
  margin: 0 auto 1.3rem;
}
.date-card {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 0.9rem 1rem;
  text-align: left;
}
.date-card.live {
  border-color: #6adf14;
  box-shadow: 0 0 18px rgba(124, 255, 0, 0.18), inset 0 0 0 1px rgba(182, 255, 42, 0.12);
}
.date-card .label {
  display: block;
  font-family: "Share Tech Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tox);
}
.date-card strong {
  display: block;
  font-family: Oswald, sans-serif;
  font-size: 1.05rem;
  margin: 0.2rem 0 0.15rem;
}
.date-card em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.88rem;
}
.hero-cta { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }
.hero-note {
  max-width: 34rem;
  margin: 1.2rem auto 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  font-family: Oswald, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
}
.btn-tox {
  background: var(--tox);
  color: #081200;
  box-shadow: 0 0 16px rgba(124, 255, 0, 0.35);
  font-weight: 700;
}
.btn-tox:hover { background: #d6ff63; }
.btn-ghost {
  background: transparent;
  border-color: #3a4a28;
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--tox); color: var(--tox); }
.btn.full { width: 100%; }

.hazard {
  height: 16px;
  background: repeating-linear-gradient(
    -45deg,
    #050805 0 12px,
    #b8ff1a 12px 24px
  );
  box-shadow: 0 0 18px rgba(124, 255, 0, 0.25);
  opacity: 0.95;
}

.strip {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080c08;
  padding: 0.7rem 0;
}
.strip-track {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: "Share Tech Mono", monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tox);
  font-size: 0.78rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section { padding: 4.2rem 0; }
.section.alt {
  background:
    linear-gradient(180deg, rgba(182, 255, 42, 0.03), transparent 18%),
    var(--bg-2);
}
.kicker {
  font-family: "Share Tech Mono", monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tox);
  font-size: 0.72rem;
  margin: 0 0 0.5rem;
}
h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 8vw, 4.4rem);
  line-height: 0.92;
  margin: 0 0 1.2rem;
  letter-spacing: 0.04em;
  color: var(--gold-hot);
  text-shadow: 0 0 18px rgba(124, 255, 0, 0.18), 0 2px 0 #1a1404;
}
.lede { color: var(--muted); max-width: 40rem; }
.lede.center, .center { text-align: center; }
.highlight {
  border-left: 3px solid var(--tox);
  padding-left: 1rem;
  color: var(--ink);
}

.about-grid { display: grid; gap: 1.5rem; }
.stat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.stat-list li {
  border: 1px solid var(--line);
  padding: 1rem 0.9rem;
  background: var(--panel);
}
.stat-list strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--tox);
}
.stat-list span { color: var(--muted); font-size: 0.85rem; }

.lineup {
  list-style: none;
  margin: 1.6rem 0 1rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 0.8rem;
}
.lineup li {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #1d2718;
  padding: 0.45rem 0;
}
.lineup .more { grid-column: 1 / -1; color: var(--tox); border: 0; }
.fine { color: #7d8a6c; font-size: 0.82rem; }

.two-col { display: grid; gap: 1.4rem; }
address { font-style: normal; margin: 1rem 0; line-height: 1.6; }
.rate-card {
  border: 1px solid var(--line);
  padding: 1.2rem;
  background: var(--panel);
}
.rate-card h3 {
  font-family: "Share Tech Mono", monospace;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tox);
  font-size: 0.82rem;
}
.rate-card ul { list-style: none; margin: 0 0 0.8rem; padding: 0; }
.rate-card li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid #1d2718;
  font-size: 0.92rem;
}

.tickets {
  display: grid;
  gap: 0.9rem;
  margin: 1.4rem 0 1.6rem;
}
.ticket {
  border: 1px solid var(--line);
  padding: 1.2rem;
  background: var(--panel);
}
.ticket h3 {
  margin: 0;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  margin: 0.2rem 0 0.4rem;
  color: var(--tox);
}
.price small { font-family: Inter, sans-serif; font-size: 0.8rem; color: var(--muted); }

.cta-block {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(124, 255, 0, 0.1), transparent 52%),
    var(--bg);
}
.contact-form {
  display: grid;
  gap: 0.85rem;
  margin: 1.4rem 0;
}
.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: "Share Tech Mono", monospace;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: 500 1rem Inter, sans-serif;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  background: #0a100a;
  border: 1px solid #2a3a1c;
  padding: 0.75rem 0.8rem;
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 1px solid var(--tox);
  border-color: var(--tox);
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.contact-links a { color: var(--tox); }

.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-grid { display: grid; gap: 1rem; align-items: center; }
.footer-logo {
  width: 120px;
  filter: drop-shadow(0 0 12px rgba(124, 255, 0, 0.2));
}

.page { padding: 2rem 0 4rem; }
.flyer {
  margin: 1.4rem 0;
  border: 1px solid var(--line);
  background: #000;
}
.flyer img { width: 100%; }
.flyer figcaption {
  padding: 0.6rem 0.8rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-family: "Share Tech Mono", monospace;
}
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.1rem;
  margin: 0 0 1.2rem;
  font-family: "Share Tech Mono", monospace;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.swatch {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  margin-right: 0.35rem;
  vertical-align: -1px;
  border: 1px solid #3a4a28;
}
.swatch.open { background: #163016; }
.swatch.pending { background: #5a4a10; }
.swatch.sold { background: #3a1212; }
.swatch.headliner { background: #102018; box-shadow: inset 0 0 0 1px var(--gold); }
.boards { display: grid; gap: 1.2rem; }
.board {
  border: 1px solid var(--line);
  background: var(--panel);
}
.board header {
  padding: 0.85rem 1rem 0.7rem;
  border-bottom: 1px solid var(--line);
}
.board h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.board header p {
  margin: 0.15rem 0 0;
  font-family: "Share Tech Mono", monospace;
  color: var(--tox);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.slot-table { display: grid; }
.slot {
  display: grid;
  grid-template-columns: 2.2rem 1fr auto auto;
  grid-template-areas: "n t p s" "n m p s";
  gap: 0 0.6rem;
  width: 100%;
  text-align: left;
  padding: 0.55rem 0.75rem;
  background: #0c140c;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid #1a2416;
  cursor: pointer;
  font-family: Inter, sans-serif;
}
.slot .n { grid-area: n; color: var(--gold); font-family: "Share Tech Mono", monospace; font-size: 0.75rem; }
.slot .t { grid-area: t; font-weight: 600; font-size: 0.92rem; }
.slot .m { grid-area: m; color: var(--muted); font-size: 0.75rem; }
.slot .p { grid-area: p; color: var(--tox); font-family: Oswald, sans-serif; letter-spacing: 0.04em; }
.slot .s { grid-area: s; font-family: "Share Tech Mono", monospace; font-size: 0.65rem; text-transform: uppercase; color: var(--muted); }
.slot:hover:not(:disabled) { background: #142014; }
.slot.picked { outline: 1px solid var(--tox); background: #173017; }
.slot.pending { background: #241c08; color: #cfc08a; cursor: not-allowed; }
.slot.sold { background: #1a0c0c; color: #8a6a6a; cursor: not-allowed; }
.slot.headliner,
.slot.closed {
  background: #121212;
  color: #7a7a7a;
  cursor: not-allowed;
}
.slot.headliner .p,
.slot.closed .p { color: #8a7a4a; }
.apply-card {
  margin-top: 1.6rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--panel);
}
.tox { color: var(--tox); }
.check {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.6rem;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-family: Inter, sans-serif !important;
  color: var(--ink) !important;
  font-size: 0.9rem !important;
}
.check input { width: auto; margin-top: 0.2rem; }
.tiers { display: grid; gap: 0.8rem; margin: 1.2rem 0; }
.tier {
  text-align: left;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 1rem;
  cursor: pointer;
}
.tier h3 { margin: 0; font-family: Oswald, sans-serif; text-transform: uppercase; }
.tier .price {
  margin: 0.2rem 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  color: var(--tox);
}
.tier.picked { border-color: var(--tox); box-shadow: inset 0 0 0 1px var(--tox); }
.admin-h {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 1.4rem 0 0.6rem;
}
.admin-list { display: grid; gap: 0.5rem; }
.admin-row {
  display: grid;
  gap: 0.5rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  background: var(--panel);
}
.admin-row div { display: grid; gap: 0.15rem; }
.admin-row span { color: var(--muted); font-size: 0.85rem; }
.admin-row.sold { border-color: #5a2020; }
.admin-row.pending { border-color: #5a4a10; }
.donate-grid { grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); }
.fan-layout { display: grid; gap: 2rem; }
.composer { margin: 1.2rem 0 0; }
.feed-tabs { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.tab {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  font-family: "Share Tech Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
}
.tab.on { border-color: var(--tox); color: var(--tox); }
.feed { display: grid; gap: 1rem; }
.post {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 0.9rem;
}
.post-head { display: flex; gap: 0.7rem; align-items: center; margin-bottom: 0.6rem; }
.post-head span:last-child { display: block; color: var(--muted); font-size: 0.78rem; }
.avatar {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: #173017;
  color: var(--tox);
  font-family: Oswald, sans-serif;
  letter-spacing: 0.06em;
}
.post-text { margin: 0 0 0.7rem; white-space: pre-wrap; }
.post-media img, .post-media video { width: 100%; max-height: 420px; object-fit: cover; background: #000; }
.post-actions { display: flex; gap: 0.8rem; margin: 0.6rem 0; }
.text-btn {
  background: none; border: 0; color: var(--tox);
  font-family: "Share Tech Mono", monospace;
  cursor: pointer; padding: 0;
}
.comments { list-style: none; margin: 0; padding: 0; }
.comments li { padding: 0.35rem 0; border-top: 1px solid #1d2718; font-size: 0.92rem; }
.comment-form { display: flex; gap: 0.4rem; margin-top: 0.6rem; }
.comment-form input { flex: 1; }
.gate-cards { display: grid; gap: 0.8rem; margin-top: 1.4rem; }
.gate-card {
  display: block;
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 1rem;
}
.gate-card h3 {
  margin: 0 0 0.3rem;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.gate-card p { margin: 0; color: var(--muted); }
.radio {
  position: fixed;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 40;
  display: flex;
  gap: 0.45rem;
  align-items: center;
  background: rgba(8, 12, 8, 0.92);
  border: 1px solid var(--line);
  padding: 0.4rem 0.55rem;
}
.radio-btn {
  background: transparent;
  color: var(--tox);
  border: 0;
  font-family: "Share Tech Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.2rem 0.15rem;
}
.radio input[type="range"] { width: 72px; accent-color: var(--tox); }
.radio-title {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  max-width: 9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 760px) {
  .nav-toggle { display: none; }
  .nav-links { display: flex; }
  .nav { padding: 0.55rem 1.4rem; }
  .about-grid { grid-template-columns: 1.4fr 1fr; align-items: start; }
  .lineup { grid-template-columns: 1fr 1fr 1fr; }
  .two-col { grid-template-columns: 1.1fr 0.9fr; }
  .tickets { grid-template-columns: 1fr 1fr 1fr; }
  .hero { padding-top: 3rem; padding-bottom: 4.2rem; }
  .hero-dates { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 140px 1fr; }
  .logo-wrap { width: min(480px, 70vw); }
  .boards { grid-template-columns: 1fr 1fr; }
  .fan-layout { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
  .gate-cards { grid-template-columns: 1fr 1fr 1fr; }
  .tiers { grid-template-columns: 1fr 1fr; }
  .admin-row { grid-template-columns: 1fr auto auto; align-items: center; }
}
