:root {
  --bg: #07131e;
  --bg-soft: #102433;
  --panel: rgba(8, 25, 39, 0.78);
  --panel-strong: rgba(10, 31, 47, 0.94);
  --text: #f8f3e9;
  --muted: #bfd0dc;
  --border: rgba(255, 255, 255, 0.12);
  --accent: #e0a64c;
  --accent-soft: #ffe1ab;
  --accent-glow: rgba(224, 166, 76, 0.24);
  --success: #8ce8cb;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 182, 193, 0.18), transparent 32%),
    radial-gradient(circle at 82% 12%, var(--accent-glow), transparent 26%),
    linear-gradient(145deg, #07131e 0%, #0c2232 48%, #081923 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -10rem;
  left: -8rem;
  background: rgba(61, 177, 182, 0.2);
  animation: drift 14s ease-in-out infinite;
}

body::after {
  right: -8rem;
  bottom: -12rem;
  background: var(--accent-glow);
  animation: drift 16s ease-in-out infinite reverse;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 4rem;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(6, 18, 28, 0.58);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  position: sticky;
  top: 1rem;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(5, 16, 25, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.2);
}

.brand-mark,
.brand-sub,
.eyebrow,
.panel-kicker,
.spotlight-label,
.venue-type,
.rules-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.brand-mark,
.brand-sub {
  font-family: "Bebas Neue", sans-serif;
}

.brand-mark {
  font-size: 1.58rem;
  line-height: 0.95;
  letter-spacing: 0.13em;
  color: var(--text);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--muted);
}

.nav-links .nav-signup {
  display: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.mobile-menu-toggle,
.mobile-menu-panel {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ffd48b 100%);
  color: #08131e;
  box-shadow: 0 14px 30px var(--accent-glow);
}

.button.secondary,
.button.ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 2rem;
  padding: 3.4rem 0 2rem;
  align-items: start;
}

.hero-copy,
.hero-panel,
.venue-card,
.details-panel,
.process-card,
.search-guide-card,
.faq-item,
.cta-panel,
.schedule,
.venues,
.search-guide,
.process,
.faq {
  animation: rise 600ms ease both;
}

.hero-copy {
  padding: 1rem 0;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 0.9rem;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent-soft);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.95;
}

h1,
h2 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(3.3rem, 8vw, 6.8rem);
  max-width: 12ch;
}

h1 span {
  color: var(--accent-soft);
}

.lead,
.section-heading p,
.details-main p,
.venue-card p,
.process-card p,
.faq-item p,
.rules-footnote,
.schedule-note,
.form-disclaimer,
.form-feedback,
.spotlight-copy {
  color: var(--muted);
  line-height: 1.75;
}

.lead {
  max-width: 62ch;
  font-size: 1.08rem;
  margin: 1.25rem 0 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.7rem;
}

.hero-stats,
.spotlight-strip,
.venue-grid,
.details-grid,
.search-guide-grid,
.process-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.spotlight-card,
.detail-card,
.process-card,
.search-guide-card,
.cta-panel,
.event-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 1.15rem;
}

.stat-card strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  color: var(--accent-soft);
}

.stat-card span {
  color: var(--muted);
  line-height: 1.55;
}

.spotlight-strip {
  grid-template-columns: 1.2fr 1fr;
  margin-top: 1.4rem;
}

.spotlight-card {
  padding: 1.2rem 1.25rem;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at right top, var(--accent-glow), transparent 35%);
}

.spotlight-card.alt {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at left bottom, rgba(61, 177, 182, 0.22), transparent 38%);
}

.spotlight-label,
.venue-type,
.rules-label {
  margin: 0 0 0.45rem;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent-soft);
}

.spotlight-copy {
  margin: 0;
}

.hero-panel,
.schedule,
.venues,
.search-guide,
.process,
.faq,
.details-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -30% auto auto 52%;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, var(--accent-glow), transparent 68%);
  pointer-events: none;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.2rem;
}

.panel-header h2 {
  font-size: 2.5rem;
}

.demo-badge {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

.venue-toggle,
.schedule-tabs,
.request-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.toggle-button,
.request-button,
.filter-chip {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  padding: 0.85rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.toggle-button:hover,
.toggle-button:focus-visible,
.request-button:hover,
.request-button:focus-visible,
.filter-chip:hover,
.filter-chip:focus-visible {
  transform: translateY(-2px);
  color: var(--text);
}

.toggle-button.is-active,
.request-button.is-active,
.filter-chip.is-active {
  background: linear-gradient(135deg, var(--accent) 0%, #ffd48b 100%);
  color: #08131e;
  border-color: transparent;
}

.request-toggle-wrap {
  margin-top: 1rem;
}

.request-toggle-label {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field span {
  font-size: 0.92rem;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 17, 26, 0.82);
  border-radius: 16px;
  color: var(--text);
  padding: 0.95rem 1rem;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
  transform: translateY(-1px);
}

.field-wide {
  grid-column: 1 / -1;
}

.form-meta {
  margin: 1rem 0 1.2rem;
}

.form-meta p {
  margin: 0.35rem 0;
}

.form-disclaimer strong {
  color: var(--accent-soft);
}

.form-submit {
  width: 100%;
}

.form-feedback {
  min-height: 1.5rem;
  margin: 0.9rem 0 0;
}

.form-feedback.is-success {
  color: var(--success);
}

.form-feedback.is-error {
  color: #ffb9b9;
}

.form-submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.marquee-band {
  position: relative;
  overflow: hidden;
  margin: 0.75rem 0 2.3rem;
  padding: 0.95rem 0;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.marquee-track {
  display: flex;
  gap: 2.2rem;
  min-width: max-content;
  color: var(--accent-soft);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: marquee 26s linear infinite;
}

.section-heading {
  max-width: 58rem;
  margin-bottom: 1.8rem;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  margin-bottom: 0.8rem;
}

.venues,
.schedule,
.search-guide,
.process,
.faq {
  padding: 2rem;
  margin-top: 2rem;
}

.search-guide-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.search-guide-card {
  padding: 1.25rem;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.search-guide-card h3 {
  font-size: 1.38rem;
  line-height: 1.1;
  margin-bottom: 0.7rem;
}

.search-guide-card p,
.search-guide-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.search-guide-note {
  margin-top: 1.1rem;
  max-width: 58ch;
}

.search-guide-note a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

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

.venue-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.06), transparent 30%);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.venue-card:hover,
.venue-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.venue-card.is-active {
  border-color: var(--accent);
  box-shadow: 0 20px 40px var(--accent-glow);
}

.venue-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.venue-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(5, 15, 24, 0.28));
  pointer-events: none;
}

.venue-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.01);
}

.venue-card-body {
  padding: 1.15rem 1.4rem 1.4rem;
}

.venue-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.45rem;
}

.venue-card p {
  margin: 0 0 0.8rem;
}

.venue-cutoff {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-soft);
}

.venue-summary {
  margin-bottom: 0.9rem;
}

.venue-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.venue-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.venue-card-button,
.details-events-button {
  min-height: 2.85rem;
  padding-inline: 1.15rem;
}

.details-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: 1.5rem;
  padding: 2rem;
  margin-top: 2rem;
}

.details-main h2 {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  margin-bottom: 0.7rem;
}

.details-main > p {
  margin: 0 0 1.4rem;
  max-width: 60ch;
}

.visual-frame {
  margin-bottom: 1.4rem;
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.visual-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: rgba(6, 20, 31, 0.45);
}

.visual-frame.has-flyer img {
  object-fit: cover;
}

.visual-frame.is-empty img {
  object-fit: cover;
  background: transparent;
}

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

.details-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.15rem;
}

.detail-card {
  padding: 1.15rem 1.2rem;
}

.detail-card span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.detail-card strong {
  line-height: 1.4;
}

.rules-card {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at left bottom, var(--accent-glow), transparent 36%);
}

.rules-card ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1rem;
  color: var(--text);
  line-height: 1.7;
}

.rules-footnote {
  margin: 0;
  font-size: 0.95rem;
}

.rules-map-figure {
  margin: 0 0 1rem;
  padding: 0.95rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(6, 20, 31, 0.34);
}

.rules-map-heading {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.rules-map-canvas {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(3, 10, 16, 0.94), rgba(8, 23, 34, 0.96));
}

.rules-map-figure img {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
}

.rules-map-caption {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.rules-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.rules-map-legend-item {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.22rem;
  padding: 0.65rem 0.8rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rules-map-option {
  appearance: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.rules-map-option:hover,
.rules-map-option:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.rules-map-option.is-selected {
  border-color: rgba(224, 166, 76, 0.5);
  background:
    linear-gradient(180deg, rgba(224, 166, 76, 0.14), rgba(224, 166, 76, 0.08)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 24px rgba(224, 166, 76, 0.12);
}

.rules-map-legend-label {
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.4;
}

.rules-map-legend-meta {
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.rules-booking {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.rules-booking-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.rules-booking-controls {
  display: grid;
  gap: 0.75rem;
}

.rules-date-select {
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.rules-date-select:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.16);
  outline-offset: 2px;
  border-color: rgba(255, 255, 255, 0.22);
}

.rules-date-select option {
  color: #08131e;
}

.rules-table-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.floating-quick-link {
  position: fixed;
  right: 1.2rem;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.25rem;
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(12, 31, 45, 0.96), rgba(7, 18, 27, 0.94)),
    rgba(7, 18, 27, 0.94);
  color: var(--text);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.55rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
  text-decoration: none;
}

.back-to-top {
  bottom: 1.2rem;
}

.back-to-events {
  bottom: 5.25rem;
}

.floating-quick-link:hover,
.floating-quick-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(16, 39, 56, 0.98), rgba(8, 22, 33, 0.96)),
    rgba(8, 22, 33, 0.96);
}

.floating-quick-link.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.schedule-toolbar {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.schedule-select,
.schedule-search input {
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: #1a2731;
  padding: 0.85rem 1rem;
}

.schedule-select-wrap,
.schedule-search {
  display: block;
}

.schedule-search-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.schedule-search {
  flex: 1 1 auto;
  max-width: 22rem;
}

.schedule-count {
  margin: 0;
  color: var(--muted);
  white-space: nowrap;
}

.schedule-note {
  margin: 0 0 1rem;
  max-width: 42rem;
}

.schedule-source {
  margin: 0 0 0.6rem;
  color: var(--muted);
  line-height: 1.7;
}

.event-list-shell {
  max-width: 920px;
  margin: 0 auto;
}

.event-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.event-card {
  display: grid;
  grid-template-columns: clamp(190px, 32%, 280px) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  min-height: 260px;
  min-width: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: rgba(249, 247, 242, 0.97);
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(9, 22, 34, 0.08);
  box-shadow: none;
  color: #13222d;
}

.event-card:last-child {
  border-bottom: 0;
}

.event-card.is-selectable {
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.event-card.is-selectable:hover,
.event-card.is-selectable:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
}

.event-media {
  position: relative;
  margin: 0;
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 0;
  border-right: 1px solid rgba(9, 22, 34, 0.08);
  background: #dce5ea;
}

.event-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.event-media.is-placeholder {
  background: linear-gradient(180deg, #0b1e2c 0%, #08141d 100%);
}

.event-media.is-placeholder img {
  object-fit: contain;
  object-position: center center;
  padding: 1rem;
  transform: none;
}

.event-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.event-body {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-width: 0;
  padding: 1.2rem 1.25rem;
}

.event-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  gap: 1rem;
  align-items: start;
}

.event-copy {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
}

.event-card::before {
  display: none;
}

.event-card-header {
  display: block;
  margin: 0;
}

.event-card h3 {
  font-size: 2.15rem;
  color: #101820;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.event-venue-name {
  margin: 0 0 0.35rem;
  color: #5e6d78;
  font-size: 0.92rem;
  font-weight: 700;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  min-width: 0;
  color: #60707c;
  font-size: 0.94rem;
}

.event-note {
  margin: 0;
  min-width: 0;
  color: #60707c;
  line-height: 1.6;
  max-width: 52ch;
}

.event-rules {
  margin: 0;
  padding-left: 1.1rem;
  min-width: 0;
  color: #52636f;
  line-height: 1.65;
}

.event-rules li + li {
  margin-top: 0.2rem;
}

.event-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.event-seating {
  display: grid;
  gap: 0.65rem;
  min-width: 0;
  padding-left: 1rem;
  border-left: 1px solid rgba(9, 22, 34, 0.08);
}

.event-seating-label {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #556a79;
}

.event-seating-list {
  display: grid;
  gap: 0.55rem;
  max-height: 16rem;
  overflow: auto;
  padding-right: 0.1rem;
}

.seating-option-button {
  display: grid;
  gap: 0.22rem;
  width: 100%;
  padding: 0.72rem 0.82rem;
  border: 1px solid rgba(202, 155, 74, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 225, 170, 0.9), rgba(255, 245, 223, 0.96)),
    rgba(255, 255, 255, 0.92);
  color: #101820;
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.seating-option-button:hover,
.seating-option-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(202, 155, 74, 0.42);
  box-shadow: 0 12px 24px rgba(224, 166, 76, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 214, 139, 0.98), rgba(255, 244, 222, 0.98)),
    rgba(255, 255, 255, 0.96);
}

.seating-option-name {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.3;
}

.seating-option-meta {
  font-size: 0.8rem;
  color: #6a5931;
  line-height: 1.35;
}

.event-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: 0;
  background: linear-gradient(135deg, var(--accent) 0%, #ffd48b 100%);
  color: #0d1822;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
}

.event-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: #4f6474;
  text-decoration: underline;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.event-link:hover,
.event-link:focus-visible {
  transform: none;
  color: #111a22;
}

.event-empty {
  padding: 1.4rem;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

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

.process-card {
  padding: 1.4rem;
}

.process-card span {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent-soft);
  font-weight: 800;
  margin-bottom: 1rem;
}

.process-card h3 {
  font-size: 1.65rem;
  margin-bottom: 0.75rem;
}

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

.faq-item {
  padding: 1.25rem 1.3rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.08rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.85rem 0 0;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.45rem 1.6rem;
  background:
    linear-gradient(135deg, rgba(224, 166, 76, 0.14), rgba(61, 177, 182, 0.14)),
    var(--panel-strong);
}

.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-panel .button.primary {
  min-height: 4.25rem;
  padding: 1rem 1.85rem 0.92rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 18px 36px var(--accent-glow);
}

.terms-section {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.legal-stack {
  display: grid;
  gap: 1rem;
}

.terms-accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.terms-accordion summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(224, 166, 76, 0.09), rgba(61, 177, 182, 0.09)),
    rgba(255, 255, 255, 0.02);
}

.terms-accordion summary::-webkit-details-marker {
  display: none;
}

.terms-summary-title,
.terms-summary-meta {
  display: block;
}

.terms-summary-title {
  font-weight: 800;
  color: var(--text);
}

.terms-summary-meta {
  color: var(--accent-soft);
  font-size: 0.95rem;
  text-align: right;
}

.terms-content {
  padding: 1.35rem 0 0;
}

.terms-effective,
.terms-callout,
.terms-intro,
.terms-item p,
.terms-item li,
.terms-placeholder {
  color: var(--muted);
  line-height: 1.75;
}

.terms-effective,
.terms-callout {
  margin: 0 0 0.7rem;
}

.terms-effective {
  font-weight: 700;
  color: var(--accent-soft);
}

.terms-callout {
  font-weight: 800;
  letter-spacing: 0.08em;
}

.terms-intro {
  margin: 0 0 1.4rem;
  max-width: 72ch;
}

.terms-list {
  margin: 0;
  padding-left: 0;
  display: grid;
  gap: 1rem;
  list-style: none;
}

.terms-item {
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  list-style: none;
}

.terms-item h3 {
  font-size: 1.45rem;
  margin-bottom: 0.65rem;
}

.terms-item p {
  margin: 0.45rem 0;
}

.terms-item ul {
  margin: 0.45rem 0 0.7rem;
  padding-left: 1.15rem;
}

.terms-placeholder {
  color: var(--accent-soft);
}

.site-footer {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  text-align: center;
  color: var(--muted);
  padding: 2rem 0 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  margin: 0.8rem 0;
}

.footer-links a {
  color: var(--text);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-soft);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(1rem, 2rem, 0) scale(1.06);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1040px) {
  .hero,
  .details-panel {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .spotlight-strip,
  .venue-grid,
  .search-guide-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .schedule-search-row,
  .cta-panel {
    flex-direction: column;
    align-items: start;
  }

  .schedule-search {
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 1rem, 100%);
  }

  .topbar {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    position: static;
    top: auto;
    padding: 0.68rem 0.82rem;
    border-radius: 24px;
    justify-content: initial;
    gap: 0.5rem;
  }

  .brand {
    padding: 0.58rem 0.78rem 0.54rem;
  }

  .brand-mark {
    font-size: 1.08rem;
    letter-spacing: 0.07em;
  }

  .nav-links {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.35rem;
    padding-left: 0.1rem;
  }

  .nav-links a {
    flex: 0 1 auto;
    white-space: nowrap;
    padding: 0.4rem 0.58rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.75rem;
    line-height: 1;
  }

  .nav-links .nav-signup {
    display: inline-flex;
    color: #08131e;
    background: linear-gradient(135deg, var(--accent) 0%, #ffd48b 100%);
    border-color: transparent;
    box-shadow: 0 10px 24px var(--accent-glow);
  }

  .topbar > .button.ghost {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    position: fixed;
    top: 0.9rem;
    right: 0.9rem;
    z-index: 40;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.28rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(6, 18, 28, 0.86);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.45rem);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      background 180ms ease,
      border-color 180ms ease;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 1.1rem;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .mobile-menu-toggle.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu-toggle.is-open {
    background: rgba(8, 24, 36, 0.94);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(0.38rem) rotate(45deg);
  }

  .mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-0.38rem) rotate(-45deg);
  }

  .mobile-menu-panel {
    display: grid;
    position: fixed;
    top: 4.4rem;
    right: 0.9rem;
    z-index: 39;
    width: min(calc(100vw - 1.8rem), 16.5rem);
    gap: 0.4rem;
    padding: 0.65rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
      linear-gradient(140deg, rgba(12, 31, 45, 0.96), rgba(7, 18, 27, 0.94)),
      rgba(7, 18, 27, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.35rem);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .mobile-menu-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu-panel a {
    display: flex;
    align-items: center;
    min-height: 2.8rem;
    padding: 0.7rem 0.9rem;
    border-radius: 14px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mobile-menu-panel a:last-child {
    color: #08131e;
    background: linear-gradient(135deg, var(--accent) 0%, #ffd48b 100%);
    border-color: transparent;
  }

  .rules-map-legend {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-stats,
  .spotlight-strip,
  .venue-grid,
  .details-grid,
  .search-guide-grid,
  .process-grid,
  .faq-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .event-actions {
    flex-direction: column;
    align-items: start;
  }

  .venue-card-media {
    aspect-ratio: 16 / 9;
  }

  .event-card {
    grid-template-columns: clamp(150px, 34vw, 200px) minmax(0, 1fr);
    min-height: 220px;
  }

  .event-media {
    min-height: 100%;
    border-right: 1px solid rgba(9, 22, 34, 0.08);
    border-bottom: 0;
  }

  .event-body {
    padding: 1rem;
    gap: 0.65rem;
  }

  .event-detail-layout {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .event-seating {
    padding-left: 0;
    padding-top: 0.85rem;
    border-left: 0;
    border-top: 1px solid rgba(9, 22, 34, 0.08);
  }

  .event-card h3 {
    font-size: clamp(1.45rem, 6.2vw, 1.95rem);
  }

  .event-meta,
  .event-note,
  .event-rules,
  .event-link,
  .event-cta,
  .event-seating-label,
  .seating-option-name,
  .seating-option-meta {
    font-size: 0.92rem;
  }

  .venues,
  .schedule,
  .search-guide,
  .process,
  .faq,
  .details-panel,
  .terms-section {
    padding: 1.3rem;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 5.2rem);
  }

  .panel-header {
    flex-direction: column;
  }

  .faq .section-heading h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
    line-height: 1;
  }

  .faq-item summary {
    font-size: 1rem;
  }

  .faq-item p {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .floating-quick-link {
    right: 0.9rem;
  }

  .back-to-events {
    bottom: 5.05rem;
  }

  .back-to-top {
    bottom: 1rem;
  }
}

@media (max-width: 560px) {
  .topbar {
    padding: 0.62rem 0.75rem;
  }

  .brand-mark {
    font-size: 0.98rem;
    letter-spacing: 0.06em;
  }

  .nav-links {
    gap: 0.3rem;
  }

  .nav-links a {
    padding: 0.36rem 0.5rem;
    font-size: 0.7rem;
  }

  .venue-card-button,
  .details-events-button {
    width: 100%;
  }

  .mobile-menu-toggle {
    top: 0.78rem;
    right: 0.78rem;
    width: 2.85rem;
    height: 2.85rem;
  }

  .mobile-menu-panel {
    top: 4rem;
    right: 0.78rem;
    width: min(calc(100vw - 1.56rem), 15.5rem);
  }

  .event-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .event-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-right: 0;
    border-bottom: 1px solid rgba(9, 22, 34, 0.08);
  }

  .event-media.is-placeholder img {
    padding: 0.75rem;
  }

  .event-body {
    padding: 1rem 0.95rem 1.05rem;
  }

  .event-venue-name {
    font-size: 0.84rem;
  }

  .event-card h3 {
    font-size: clamp(1.25rem, 7vw, 1.7rem);
  }

  .event-meta {
    display: grid;
    gap: 0.2rem;
    font-size: 0.86rem;
  }

  .event-note,
  .event-rules {
    line-height: 1.5;
    font-size: 0.9rem;
  }

  .event-seating-list {
    max-height: none;
  }

  .faq-item {
    padding: 1rem 1rem 1.05rem;
  }

  .faq-item summary {
    font-size: 0.94rem;
  }

  .faq-item p {
    font-size: 0.9rem;
  }

  .floating-quick-link {
    right: 0.78rem;
    min-width: 3rem;
    min-height: 3rem;
    padding: 0.78rem 0.9rem;
    font-size: 0.82rem;
  }

  .back-to-events {
    bottom: 4.62rem;
  }

  .back-to-top {
    bottom: 0.88rem;
  }
}

@media (max-width: 420px) {
  .topbar {
    padding: 0.58rem 0.68rem;
  }

  .brand {
    padding: 0.54rem 0.7rem 0.5rem;
  }

  .brand-mark {
    font-size: 0.92rem;
  }

  .nav-links {
    gap: 0.26rem;
  }

  .nav-links a {
    padding: 0.34rem 0.44rem;
    font-size: 0.66rem;
  }

  .floating-quick-link {
    right: 0.72rem;
  }

  .back-to-events {
    bottom: 4.45rem;
  }

  .back-to-top {
    bottom: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
