:root {
  --navy: #071426;
  --navy-2: #0c1e36;
  --ink: #0b1020;
  --panel: #111827;
  --panel-2: #0a0f1a;
  --white: #ffffff;
  --muted: #a8b3c7;
  --line: rgba(255,255,255,0.12);
  --orange: #f39a18;
  --orange-dark: #d98205;
  --blue: #2e6eaa;
  --green: #43d17d;
  --red: #ff4f4f;
  --shadow: 0 24px 70px rgba(0,0,0,0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #080d16;
  color: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(7,20,38,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand img { width: 205px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; font-weight: 800; }
.main-nav a { color: #eef5ff; opacity: 0.92; }
.main-nav a:hover { color: var(--orange); }
.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(243,154,24,0.65);
  border-radius: 999px;
  color: #fff !important;
}
.nav-toggle {
  display: none;
  color: #fff;
  background: #111827;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
}

.hero-section {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 38px;
  align-items: center;
  padding: clamp(62px, 8vw, 115px) clamp(18px, 4vw, 64px);
  overflow: hidden;
  background: linear-gradient(115deg, rgba(7,20,38,0.96) 0%, rgba(7,20,38,0.82) 50%, rgba(0,0,0,0.55) 100%), url('assets/hero-bout.jpg') center/cover no-repeat;
}
.hero-backdrop {
  position: absolute;
  inset: auto -12% -30% 34%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(46,110,170,0.4), transparent 70%);
  pointer-events: none;
}
.hero-content, .live-card { position: relative; z-index: 1; }
.eyebrow, .small-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-content h1 {
  max-width: 820px;
  margin: 18px 0 22px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}
.hero-copy {
  max-width: 650px;
  color: #d7e0ef;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 9px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #111; }
.btn-primary:hover { background: #ffad2e; }
.btn-secondary { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.18); }
.btn-secondary:hover { border-color: rgba(255,255,255,0.34); }
.btn-muted { background: #323846; color: #b9c2d0; cursor: not-allowed; }
.btn-muted:hover { transform: none; }

.live-card {
  align-self: end;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(10,15,26,0.88);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
}
.live-media { position: relative; }
.live-media img { width: 100%; height: 285px; object-fit: cover; }
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.badge.live { background: var(--red); color: #fff; }
.badge.upcoming { background: var(--orange); color: #111; }
.badge.replay { background: var(--blue); color: #fff; }
.live-card-body { padding: 24px; }
.live-card-body h2 { margin: 10px 0 8px; font-size: 1.35rem; }
.live-card-body p { margin: 0; color: var(--muted); line-height: 1.55; }

.quick-search, .join-section, .checkout-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 42px clamp(18px, 4vw, 64px);
  background: var(--navy-2);
  border-block: 1px solid var(--line);
}
.quick-search h2, .join-section h2, .checkout-section h2 { margin: 8px 0 0; font-size: clamp(1.65rem, 3vw, 2.8rem); letter-spacing: -.045em; }
.search-shell {
  display: flex;
  width: min(100%, 560px);
  padding: 7px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}
.search-shell input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 16px;
  color: #111827;
}

.plans-section { padding: 86px clamp(18px, 4vw, 64px); background: #1c1c1c; }
.section-heading { max-width: 850px; margin-bottom: 28px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2 { margin: 10px 0 10px; font-size: clamp(2rem, 4.5vw, 4rem); letter-spacing: -.055em; }
.section-heading p { margin: 0; color: var(--muted); line-height: 1.65; }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 46px auto 0;
}
.plan-card {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-radius: 18px;
  background: #101010;
  border: 1px solid rgba(255,255,255,0.12);
}
.featured-plan { border-color: rgba(243,154,24,0.6); box-shadow: 0 18px 48px rgba(243,154,24,0.14); }
.disabled-plan { opacity: .78; }
.plan-status { color: var(--orange); font-weight: 900; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.plan-card h3 { font-size: 1.45rem; margin: 12px 0 5px; }
.plan-card p { margin: 0; color: #d6d6d6; }
.price { margin: 26px 0; color: #fff; }
.price span { font-size: 2.6rem; line-height: 1; font-weight: 900; letter-spacing: -.06em; }

.join-section { background: linear-gradient(135deg, #0b1930, #0a0f1a); }
.join-content { max-width: 760px; }
.join-content p, .checkout-section p { color: var(--muted); line-height: 1.65; }

.events-section { padding: 72px clamp(10px, 2.4vw, 34px) 90px; background: #202020; }
.events-layout { display: grid; grid-template-columns: 292px minmax(0, 1fr); gap: 22px; align-items: start; }
.filter-panel {
  position: sticky;
  top: 98px;
  background: #030303;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px;
  min-height: 540px;
}
.filter-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.filter-header h3 { margin: 0; font-size: 1rem; text-transform: uppercase; }
.filter-header button, .live-filter {
  border: 0;
  background: transparent;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.search-input input {
  width: 100%;
  margin: 20px 0 18px;
  min-height: 58px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.75);
  background: #050505;
  color: #fff;
  padding: 0 16px;
  outline: 0;
}
.filter-group { margin: 20px 0 26px; }
.filter-group h4 { margin: 0 0 11px; font-size: 1rem; }
.filter-group label { display: flex; gap: 10px; align-items: center; margin: 9px 0; color: #fff; }
.filter-group input { width: 20px; height: 20px; accent-color: var(--orange); }
.month-strip { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 10px; }
.month-strip button {
  flex: 0 0 auto;
  min-width: 72px;
  min-height: 80px;
  border: 0;
  border-radius: 5px;
  background: #030303;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.month-strip button:first-child, .month-strip button:last-child { min-width: 42px; font-size: 3rem; line-height: 1; }
.month-strip .active { background: var(--orange); color: #111; }
.results-bar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 12px 0 18px; color: var(--muted); }
.results-bar p { margin: 0; }
.events-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.event-card {
  overflow: hidden;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  background: #030303;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 14px 38px rgba(0,0,0,0.18);
}
.event-card.hide { display: none; }
.event-image { position: relative; height: 210px; overflow: hidden; }
.event-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.event-card:hover .event-image img { transform: scale(1.05); }
.event-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.event-body h3 { margin: 0 0 10px; line-height: 1.22; font-size: 1.03rem; }
.event-body p { margin: 0 0 10px; color: #e7eaf0; line-height: 1.45; }
.event-body span { color: var(--muted); margin-bottom: 18px; line-height: 1.4; }
.event-body a { margin-top: auto; color: var(--orange); font-weight: 900; }
.empty-state { text-align: center; padding: 72px 20px; background: #050505; border: 1px solid var(--line); }

.checkout-section { background: #0b0f18; align-items: stretch; }
.checkout-section > div:first-child { max-width: 780px; }
.checkout-box {
  width: min(100%, 360px);
  border-radius: 18px;
  padding: 24px;
  background: #fff;
  color: #111827;
}
.checkout-box p { margin: 0 0 8px; color: #4b5563; }
.checkout-box strong { display: block; margin-bottom: 22px; font-size: 1.4rem; }
.checkout-box .btn { width: 100%; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 38px clamp(18px, 4vw, 64px);
  background: #060912;
  border-top: 1px solid var(--line);
}
.site-footer img { width: 180px; margin-bottom: 12px; }
.site-footer p { margin: 0; color: var(--muted); }
.site-footer nav { display: flex; gap: 20px; flex-wrap: wrap; align-content: start; color: #d5deeb; font-weight: 700; }
.site-footer a:hover { color: var(--orange); }
.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;
}

@media (max-width: 1180px) {
  .events-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-section { grid-template-columns: 1fr; }
  .live-card { max-width: 620px; align-self: start; }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 18px;
    background: rgba(7,20,38,0.98);
    border-bottom: 1px solid var(--line);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 0; }
  .nav-cta { border-radius: 10px; text-align: center; padding: 14px !important; }
  .plans-grid { grid-template-columns: 1fr; }
  .quick-search, .join-section, .checkout-section, .site-footer { flex-direction: column; align-items: stretch; }
  .search-shell { width: 100%; }
  .events-layout { grid-template-columns: 1fr; }
  .filter-panel { position: relative; top: 0; min-height: 0; }
}

@media (max-width: 620px) {
  .brand img { width: 168px; }
  .hero-section { min-height: auto; padding-top: 52px; }
  .hero-content h1 { font-size: clamp(2.65rem, 15vw, 4.1rem); }
  .search-shell { flex-direction: column; background: transparent; padding: 0; gap: 10px; box-shadow: none; }
  .search-shell input { min-height: 52px; border-radius: 9px; padding: 0 15px; }
  .events-grid { grid-template-columns: 1fr; }
  .results-bar { flex-direction: column; align-items: flex-start; }
  .live-media img { height: 220px; }
}


/* Multi-page additions */
.main-nav a.active { color: var(--orange); }
.page-hero {
  position: relative;
  padding: clamp(76px, 9vw, 132px) clamp(18px, 4vw, 64px);
  background: linear-gradient(115deg, rgba(7,20,38,0.96) 0%, rgba(7,20,38,0.86) 54%, rgba(0,0,0,0.58) 100%), url('assets/hero-bout.jpg') center/cover no-repeat;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -45% 45%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,110,170,0.38), transparent 70%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 900px; }
.page-hero h1 {
  margin: 16px 0 18px;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: .96;
  letter-spacing: -.06em;
}
.page-hero p { max-width: 720px; color: #d7e0ef; line-height: 1.65; font-size: 1.12rem; }
.content-section { padding: 72px clamp(18px, 4vw, 64px); background: #0b0f18; }
.content-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 34px; }
.info-card {
  min-height: 220px;
  padding: 28px;
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
}
.info-card h3 { margin: 10px 0 10px; font-size: 1.25rem; }
.info-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.preview-events { padding: 72px clamp(18px, 4vw, 64px); background: #202020; }
.preview-events .events-grid { margin-top: 30px; }
.member-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: center;
  margin-top: 36px;
}
.member-panel {
  padding: 32px;
  border-radius: 20px;
  background: #fff;
  color: #111827;
  box-shadow: var(--shadow);
}
.member-panel h3 { margin: 0 0 12px; font-size: 1.5rem; }
.member-panel ul { margin: 0 0 24px; padding-left: 20px; color: #334155; line-height: 1.8; }
@media (max-width: 900px) {
  .content-grid, .member-box { grid-template-columns: 1fr; }
}
