:root {
  --bg: #0e0e12;
  --surface: rgba(16, 16, 22, 0.92);
  --surface-strong: rgba(24, 24, 31, 0.95);
  --border: rgba(255, 255, 255, 0.08);
  --text: #fcf8fe;
  --muted: #b7b2be;
  --accent: #ff9159;
  --accent-strong: #ff6b2c;
  --success: #86efac;
  --danger: #fca5a5;
}

@font-face {
  font-family: "Ionicons";
  src: url("/Ionicons.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #000000;
  color: var(--text);
  font-family: "Avenir Next", "Helvetica Neue", sans-serif;
}

.shell {
  min-height: 100vh;
}

.public-site {
  min-height: 100vh;
  color: var(--text);
}

.site-header,
.site-footer {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 14px 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 10, 13, 0.72);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 18px;
  font-weight: 950;
  font-style: italic;
  text-decoration: none;
}

.brand-icon {
  color: var(--accent);
  font-family: "Ionicons";
  font-size: 26px;
  font-style: normal;
  line-height: 1;
}

.brand-lockup span {
  color: var(--accent);
  font-size: 25px;
  line-height: 28px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.site-nav a.active,
.site-nav a:hover {
  background: rgba(255, 145, 89, 0.14);
  color: var(--accent);
}

.home-hero {
  width: min(100%, 1180px);
  min-height: calc(100vh - 146px);
  margin: 0 auto;
  padding: 44px 18px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.95fr);
  align-items: center;
  gap: 44px;
}

.home-hero-copy {
  max-width: 710px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hero h1,
.legal-hero h1 {
  margin: 0;
  font-style: italic;
  letter-spacing: 0;
}

.home-hero h1 {
  font-size: clamp(64px, 12vw, 150px);
  line-height: 0.86;
}

.home-subtitle {
  max-width: 620px;
  margin: 26px 0 0;
  color: #dfd9e6;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 650;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.home-primary,
.home-secondary,
.legal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-primary,
.legal-button {
  background: var(--accent);
  color: #130d09;
}

.home-secondary {
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--text);
}

.home-phone {
  width: min(100%, 420px);
  justify-self: center;
  padding: 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(27, 27, 35, 0.96), rgba(13, 13, 18, 0.98));
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.42);
}

.home-phone-top {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 4px 12px;
}

.home-phone-avatar {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
}

.home-phone-top strong {
  display: block;
  color: var(--accent);
  font-size: 18px;
  font-style: italic;
  line-height: 20px;
  text-transform: uppercase;
}

.home-phone-top small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.home-live-map {
  position: relative;
  min-height: 338px;
  overflow: hidden;
  border-radius: 24px;
  background: #171a20;
}

.home-live-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(14, 14, 18, 0.06), rgba(14, 14, 18, 0.28) 66%, rgba(14, 14, 18, 0.62)),
    radial-gradient(circle at 50% 44%, rgba(255, 145, 89, 0.24), transparent 22%);
}

.home-live-map iframe {
  position: absolute;
  inset: -34px;
  width: calc(100% + 68px);
  height: calc(100% + 68px);
  border: 0;
  filter: grayscale(1) invert(0.92) hue-rotate(180deg) contrast(0.92) brightness(0.9);
  opacity: 0.96;
  pointer-events: none;
}

.home-live-map a {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 14, 18, 0.74);
  color: var(--text);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-live-pin {
  position: absolute;
  left: 50%;
  top: 47%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 18px 38px rgba(255, 145, 89, 0.42), 0 20px 44px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
}

.home-live-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 4px;
  height: 16px;
  border-radius: 2px;
  background: var(--accent);
  transform: translateX(-50%);
}

.home-live-pin .map-pin-icon {
  color: #000000;
  font-size: 26px;
}

.home-game-card {
  margin-top: 12px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-game-card p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-game-card strong {
  display: block;
  font-size: 18px;
}

.home-live-card {
  position: relative;
  z-index: 3;
  margin: -56px 12px 0;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.home-game-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-game-card-top span {
  flex: none;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 145, 89, 0.16);
  color: var(--accent);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-game-card small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.home-roster {
  display: flex;
  align-items: center;
  margin-top: 14px;
}

.home-roster span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: -8px;
  border: 2px solid #16161d;
  border-radius: 50%;
  background: #2a2a33;
  color: var(--text);
  font-size: 11px;
  font-weight: 950;
}

.home-roster span:first-child {
  background: var(--accent);
  color: #111111;
}

.home-band {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 20px 18px 76px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

.home-band h2 {
  margin: 0 0 12px;
  font-size: 34px;
  font-style: italic;
}

.home-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-feature-grid article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-feature-grid h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.get-app-page {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 42px 18px 76px;
}

.get-app-hero {
  min-height: calc(100vh - 220px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: center;
  gap: 34px;
}

.get-app-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(58px, 10vw, 132px);
  font-style: italic;
  line-height: 0.88;
  letter-spacing: 0;
}

.get-app-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: #dfd9e6;
  font-size: 22px;
  font-weight: 650;
  line-height: 1.45;
}

.get-app-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(27, 27, 35, 0.96), rgba(13, 13, 18, 0.98));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.4);
}

.store-link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  text-decoration: none;
}

.store-link:hover {
  border-color: rgba(255, 145, 89, 0.42);
  background: rgba(255, 145, 89, 0.12);
}

.store-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
  color: #0d0d12;
  font-family: "Ionicons";
  font-size: 27px;
  line-height: 1;
}

.store-link small,
.store-link strong {
  display: block;
}

.store-link small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-link strong {
  margin-top: 4px;
  font-size: 21px;
  font-style: italic;
  line-height: 1.1;
}

.get-app-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.get-app-strip article {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.get-app-strip h2 {
  margin: 0 0 8px;
  font-size: 22px;
  font-style: italic;
}

.get-app-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.legal-page {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 42px 18px 70px;
}

.legal-hero {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-hero h1 {
  max-width: 850px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.98;
}

.legal-hero p:not(.eyebrow) {
  max-width: 740px;
  margin: 20px 0 0;
  color: #dfd9e6;
  font-size: 18px;
  line-height: 1.55;
}

.legal-content {
  padding-top: 22px;
}

.legal-content h2 {
  margin: 30px 0 10px;
  color: var(--text);
  font-size: 22px;
  font-style: italic;
}

.legal-content p,
.legal-content li {
  color: #d6d0dc;
  font-size: 16px;
  line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-content a,
.site-footer a {
  color: var(--accent);
}

.legal-content a.legal-button {
  color: #130d09;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.loading-card,
.state-card {
  width: min(92vw, 720px);
  margin: 12vh auto 0;
  padding: 28px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.loading-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.loading-ball {
  width: 190px;
  max-width: 48vw;
  height: auto;
  object-fit: contain;
}

.loading-copy {
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  font-style: italic;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  text-decoration: none;
}

.primary-link {
  color: #000;
  background: var(--accent);
}

.secondary-link {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.banner {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 56px;
  padding: 0 20px;
  background: rgba(10, 10, 13, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.banner-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.banner-brand-icon {
  color: var(--accent);
  font-family: "Ionicons";
  font-size: 26px;
  line-height: 1;
}

.banner-brand-text {
  color: var(--accent);
  font-size: 25px;
  font-weight: 900;
  font-style: italic;
  line-height: 28px;
  text-transform: uppercase;
}

.banner-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.banner a,
.waitlist-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1f1f25;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.page {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 20px 16px 56px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  min-height: 420px;
  background-color: var(--surface-strong);
  background-size: cover;
  background-position: center;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.35);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.08), rgba(14, 14, 18, 0.58) 70%, rgba(14, 14, 18, 0.82));
}

.hero-map-frame {
  position: absolute;
  inset: -40px;
  z-index: 0;
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  border: 0;
  filter: grayscale(1) invert(0.9) hue-rotate(180deg) contrast(0.9) brightness(0.92);
  opacity: 0.9;
  pointer-events: none;
}

.hero-map-link {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 14, 18, 0.68);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: calc(50% - 55px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 8px 20px rgba(255, 145, 89, 0.42), 0 18px 32px rgba(0, 0, 0, 0.34);
}

.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 10px;
  transform: translateX(-50%);
  border-bottom-left-radius: 1px;
  border-bottom-right-radius: 1px;
  background: var(--accent);
}

.map-pin-icon {
  color: #000000;
  font-family: "Ionicons";
  font-size: 20px;
  line-height: 1;
}

.map-pin-full {
  background: #2b2b32;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.36);
}

.map-pin-full::after {
  background: #2b2b32;
}

.map-pin-full .map-pin-icon {
  color: var(--muted);
  opacity: 0.62;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: 24px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.chip {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.32);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chip-primary {
  border-color: rgba(255, 145, 89, 0.25);
  background: rgba(255, 145, 89, 0.2);
  color: var(--accent);
}

.hero h1 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(38px, 8vw, 82px);
  line-height: 0.96;
  font-style: italic;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
}

.grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 18px;
}

.form-page {
  width: min(100%, 760px);
  margin: 0 auto;
  padding-top: 28px;
}

.admin-shell {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding-top: 22px;
}

.admin-header,
.admin-toolbar,
.submission-top,
.submission-actions,
.admin-account {
  display: flex;
  align-items: center;
}

.admin-header {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-header h1,
.form-page h1 {
  margin: 10px 0 8px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 0.96;
  font-style: italic;
}

.admin-account {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.analytics-panel {
  margin-bottom: 18px;
  padding: 16px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.analytics-panel-top,
.analytics-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.analytics-panel-top {
  justify-content: space-between;
  margin-bottom: 12px;
}

.analytics-panel h2 {
  margin: 0 0 4px;
  font-size: 24px;
  line-height: 1.1;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.analytics-metric {
  min-height: 112px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.analytics-metric span,
.analytics-metric small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.analytics-metric strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 34px;
  line-height: 1;
}

.analytics-empty {
  grid-column: 1 / -1;
}

.admin-toolbar {
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.admin-toolbar select {
  width: min(100%, 240px);
  min-height: 42px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 800;
}

.ghost-btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.danger-btn {
  border-color: rgba(252, 165, 165, 0.28);
  background: rgba(252, 165, 165, 0.08);
  color: var(--danger);
}

.submission-list {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.submission-card {
  padding: 18px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.submission-top {
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.submission-top h2 {
  margin: 0 0 4px;
  font-size: 22px;
  font-style: italic;
}

.review-preview {
  margin: 14px 0;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.review-phone {
  overflow: hidden;
  border-radius: 24px;
  background: #111116;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.24);
}

.review-hero {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background-color: var(--surface-strong);
  background-size: cover;
  background-position: center;
}

.review-hero-clickable {
  cursor: zoom-in;
}

.review-hero-clickable:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.review-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.08), rgba(14, 14, 18, 0.52) 64%, rgba(14, 14, 18, 0.88));
}

.review-hero .hero-map-frame {
  inset: -32px;
  width: calc(100% + 64px);
  height: calc(100% + 64px);
}

.review-flyer-hint {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  min-height: 36px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(14, 14, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}

.review-hero-content h3 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(32px, 7vw, 64px);
  line-height: 0.96;
  font-style: italic;
}

.review-hero-content p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.review-body {
  padding: 16px;
}

.review-section-title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
}

.review-helper,
.review-description {
  color: var(--muted);
  line-height: 1.45;
}

.review-description {
  margin: 14px 0 0;
}

.review-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.review-fact {
  min-width: 0;
  padding: 12px;
  border-radius: 16px;
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
  text-decoration: none;
}

.review-fact span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-fact strong {
  display: block;
  min-width: 0;
  margin-top: 5px;
  overflow-wrap: anywhere;
  font-size: 14px;
}

.review-fact-link strong {
  color: var(--accent);
}

.review-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 14px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #15100d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.flyer-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 64px 18px 24px;
  background: rgba(0, 0, 0, 0.88);
}

.flyer-lightbox.open {
  display: flex;
}

.flyer-lightbox img {
  max-width: min(100%, 1080px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.flyer-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(20, 20, 26, 0.94);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.status-chip {
  flex: none;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 145, 89, 0.16);
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.submission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0;
}

.submission-field,
.publish-panel label {
  display: grid;
  gap: 5px;
}

.submission-field {
  padding: 12px;
  border-radius: 16px;
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.submission-field span,
.publish-panel label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.submission-field strong {
  min-width: 0;
  color: var(--text);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.publish-panel {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.publish-panel input,
.publish-panel select {
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.submission-actions {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}

.inline-state {
  width: 100%;
  margin: 0;
}

.card {
  padding: 20px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.card h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-style: italic;
}

.event-card {
  display: grid;
  gap: 16px;
}

.event-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.host-summary {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.host-avatar {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 145, 89, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 900;
}

.host-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-kicker {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-status-pill {
  flex: none;
  max-width: 190px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 145, 89, 0.28);
  background: rgba(255, 145, 89, 0.14);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.matchup-card,
.featured-callout,
.event-description {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
}

.matchup-card {
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
}

.event-description {
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
}

.featured-callout {
  color: var(--text);
  font-weight: 800;
}

.featured-callout span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.fact {
  padding: 14px;
  border-radius: 18px;
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.fact-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fact-value {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
}

.fact-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.fact-link span {
  min-width: 0;
}

.fact-link small {
  flex: none;
  margin-top: 2px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 145, 89, 0.16);
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.progress {
  margin-top: 12px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 8px;
}

.progress-track {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.roster-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.roster-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.roster-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 145, 89, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 900;
}

.roster-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guest-avatar-icon {
  width: 22px;
  height: 22px;
}

.roster-meta {
  flex: 1;
  min-width: 0;
}

.roster-name {
  font-weight: 700;
  overflow-wrap: anywhere;
}

.roster-subtitle {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.roster-status-chip {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: fit-content;
  min-height: 22px;
  padding: 3px 9px;
  border: 1px solid rgba(255, 145, 89, 0.24);
  border-radius: 999px;
  background: rgba(255, 145, 89, 0.1);
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-star {
  color: var(--accent);
  font-size: 11px;
  line-height: 1;
}

.status-host {
  border-color: rgba(255, 145, 89, 0.36);
  background: rgba(255, 145, 89, 0.16);
  color: var(--text);
}

.status-going {
  border-color: rgba(255, 145, 89, 0.28);
  background: rgba(255, 145, 89, 0.12);
  color: var(--accent);
}

.status-maybe {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.status-not-going {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 15px;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.check-row {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 800;
}

.check-row input {
  width: 18px;
  height: 18px;
}

.plus-one-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.plus-one-toggle {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(232, 121, 58, 0.45);
  border-radius: 14px;
  background: rgba(232, 121, 58, 0.12);
  color: var(--text);
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

.plus-one-toggle.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}

.plus-one-name-field[hidden] {
  display: none;
}

.conditional-fields {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.conditional-fields[hidden] {
  display: none;
}

.optional-details {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.optional-details summary {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.optional-details[open] summary {
  margin-bottom: 12px;
}

.review-note {
  margin: 2px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 145, 89, 0.18);
  background: rgba(255, 145, 89, 0.08);
  color: var(--text);
  font-size: 12px;
  line-height: 1.45;
}

.field-helper {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.location-search {
  position: relative;
}

.location-suggestions {
  position: absolute;
  z-index: 20;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  display: none;
  max-height: 260px;
  overflow-y: auto;
  padding: 6px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #151515;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.36);
}

.location-suggestions.open {
  display: grid;
  gap: 4px;
}

.location-suggestion {
  width: 100%;
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.location-suggestion:hover,
.location-suggestion:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.07);
}

.location-suggestion strong {
  font-size: 14px;
}

.location-suggestion span {
  color: var(--muted);
  font-size: 12px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  color: #120b08;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.cta[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.app-cta-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.app-cta-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 11, 0.78);
  backdrop-filter: blur(8px);
}

.app-cta-panel {
  position: relative;
  width: min(94vw, 460px);
  max-height: min(760px, 92vh);
  overflow: auto;
  border: 1px solid #2a2a33;
  border-radius: 22px;
  background: #15151c;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.app-cta-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.app-cta-gif {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
}

.app-cta-copy {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.app-cta-copy h2,
.app-cta-copy p {
  margin: 0;
}

.app-cta-copy h2 {
  color: var(--text);
  font-size: clamp(24px, 7vw, 34px);
  font-style: italic;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.app-cta-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.app-cta-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.app-cta-feature-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid #2a2a33;
  border-radius: 999px;
  background: #1f1f25;
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
}

.app-cta-button {
  text-decoration: none;
}

.helper,
.message {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.identity-card {
  padding: 16px;
  border-radius: 18px;
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.identity-name {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 800;
}

.identity-meta {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.message.error {
  color: var(--danger);
}

.message.success {
  color: var(--success);
}

.full-card {
  margin-top: 10px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 145, 89, 0.12);
  border: 1px solid rgba(255, 145, 89, 0.18);
}

@media (max-width: 860px) {
  .site-header {
    align-items: center;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .home-hero,
  .home-band,
  .get-app-hero,
  .get-app-strip {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
    padding-top: 24px;
  }

  .home-subtitle {
    font-size: 19px;
  }

  .get-app-page {
    padding-top: 24px;
  }

  .get-app-hero {
    min-height: auto;
    align-items: start;
  }

  .get-app-copy h1 {
    font-size: 58px;
  }

  .get-app-copy p:not(.eyebrow) {
    font-size: 19px;
  }

  .store-link {
    min-height: 78px;
  }

  .store-link strong {
    font-size: 18px;
  }

  .home-hero h1 {
    display: none;
  }

  .home-phone {
    justify-self: stretch;
    width: 100%;
  }

  .home-live-map {
    min-height: 300px;
  }

  .home-feature-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer div {
    justify-content: flex-start;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .facts {
    grid-template-columns: 1fr;
  }

  .admin-header,
  .analytics-panel-top,
  .analytics-actions,
  .admin-toolbar,
  .event-card-header,
  .submission-top,
  .submission-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-account {
    justify-content: flex-start;
  }

  .analytics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .submission-grid,
  .publish-panel {
    grid-template-columns: 1fr;
  }

  .review-preview {
    padding: 10px;
  }

  .review-hero,
  .review-hero-content {
    min-height: 260px;
  }

  .review-facts {
    grid-template-columns: 1fr;
  }
}
