:root {
  --bg-black: #0a0a0f;
  --bg-navy: #0d1320;
  --bg-navy-light: #131b2e;
  --red: #e2122a;
  --red-light: #ff3b4d;
  --white: #f5f6fa;
  --muted: #aab0c0;
  --radius: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-black);
  color: var(--white);
  line-height: 1.5;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden {
  display: none;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--bg-black);
  transform: translateY(-2px);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo span {
  color: var(--red);
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--red-light);
}

.nav-cta {
  display: inline-block;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.55) 0%,
    rgba(10, 10, 15, 0.75) 55%,
    var(--bg-black) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 72px;
}

.hero-eyebrow {
  color: var(--red-light);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-subtext {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-note {
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
}

/* Section heading */
.section-heading {
  margin-bottom: 40px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.section-heading p {
  color: var(--muted);
}

/* Events */
.events {
  background: var(--bg-navy);
  padding: 96px 0;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.event-card {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  isolation: isolate;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.event-card:hover {
  transform: translateY(-6px);
}

.event-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0) 40%,
    rgba(10, 10, 15, 0.95) 100%
  );
  z-index: 1;
}

.event-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px;
}

.event-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.event-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.event-card-content p {
  color: var(--muted);
  font-size: 0.9rem;
}

.mock-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: rgba(10, 10, 15, 0.85);
  border: 1px solid var(--red);
  color: var(--red-light);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 999px;
}

.ppv-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  background: rgba(226, 18, 42, 0.92);
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.events-disclaimer {
  margin-top: 32px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* Sports We Welcome */
.sports {
  background: var(--bg-black);
  padding: 96px 0;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sport-card {
  display: block;
  background: var(--bg-navy-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.sport-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}

.sport-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.sport-card h3 {
  font-size: 1rem;
  font-weight: 700;
}

.sport-card-cta {
  background: linear-gradient(135deg, rgba(226, 18, 42, 0.18), rgba(226, 18, 42, 0.05));
  border: 1px dashed var(--red);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sport-card-cta h3 {
  margin-bottom: 6px;
}

.sport-card-cta p {
  color: var(--red-light);
  font-weight: 600;
  font-size: 0.9rem;
}

.sports-note {
  margin-top: 32px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
}

/* Stream / Organiser */
.stream {
  background: var(--bg-black);
  padding: 96px 0;
}

.stream-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.stream-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.stream-text p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.stream-media img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(226, 18, 42, 0.15);
}

.stream-list {
  list-style: none;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stream-list li {
  color: var(--muted);
  font-size: 0.95rem;
  padding-left: 22px;
  position: relative;
}

.stream-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red-light);
  font-weight: 700;
}

/* How It Works */
.steps {
  background: var(--bg-navy);
  padding: 96px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.step-card {
  text-align: center;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Founding Partner Benefits */
.benefits {
  background: var(--bg-black);
  padding: 96px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-navy-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 20px;
}

.benefit-icon {
  color: var(--red-light);
  font-weight: 800;
  font-size: 1.1rem;
}

.benefit-item p {
  color: var(--white);
  font-size: 0.95rem;
}

/* Tagline */
.tagline {
  background: var(--bg-black);
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tagline-heading {
  font-size: clamp(2.2rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--white) 40%, var(--red-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline-sub {
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.1rem;
}

/* Community */
.community {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.community-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.community-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 15, 0.92) 0%,
    rgba(13, 19, 32, 0.75) 50%,
    rgba(226, 18, 42, 0.35) 100%
  );
  z-index: 1;
}

.community-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}

.community-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.community-content p {
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--bg-navy) 0%, var(--bg-black) 100%);
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.final-cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.final-cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.final-cta-content p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

/* Apply Page */
.apply-page {
  padding-top: 72px;
}

.apply-intro {
  padding: 72px 0 24px;
  max-width: 720px;
}

.apply-intro h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.apply-intro-text {
  color: var(--muted);
  font-size: 1.05rem;
}

#applyForm {
  padding-bottom: 96px;
}

.form-card {
  background: var(--bg-navy-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}

.form-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.required-asterisk {
  color: var(--red-light);
}

.info-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 6px;
  border: 1px solid var(--red-light);
  border-radius: 50%;
  color: var(--red-light);
  font-size: 0.7rem;
  font-weight: 700;
  cursor: help;
}

.info-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  background: var(--bg-black);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 5;
}

.info-icon:hover .info-tooltip,
.info-icon:focus .info-tooltip {
  opacity: 1;
  visibility: visible;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="url"],
.form-field select,
.form-field textarea {
  background: var(--bg-black);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-field textarea {
  resize: vertical;
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.checkbox-group-stacked {
  flex-direction: column;
  gap: 14px;
}

.radio-option,
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
}

.radio-option input,
.checkbox-option input {
  accent-color: var(--red);
  width: 16px;
  height: 16px;
}

.conditional-field.hidden {
  display: none;
}

.stream-details-group {
  margin-top: 24px;
}

.checkbox-group.group-invalid {
  border: 1px solid var(--red);
  border-radius: 8px;
  padding: 10px;
}

.field-error {
  color: var(--red-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 4px;
}

.field-error.hidden {
  display: none;
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.form-actions {
  text-align: center;
  margin-top: 16px;
}

.form-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
}

/* Thank You Page */
.thank-you-page {
  padding-top: 72px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 96px 0;
}

.thank-you-content h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.thank-you-text {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.redirect-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
}

/* Join Now Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 10, 15, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--bg-navy-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.modal-box h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.modal-text {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--white);
}

.modal-submit {
  width: 100%;
  margin-top: 8px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: -80px;
  z-index: 200;
  background: var(--bg-navy-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: bottom 0.4s ease;
  white-space: nowrap;
}

.cookie-banner.visible {
  bottom: 24px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

/* Footer */
.site-footer {
  background: var(--bg-navy-light);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-inner p {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-email {
  color: var(--red-light);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-email:hover {
  text-decoration: underline;
}

/* =============================================
   EVENT DETAIL PAGE
   ============================================= */

.event-detail-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  padding-top: 72px;
  padding-bottom: 72px;
  overflow: hidden;
}

.event-detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.event-detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.25) 0%,
    rgba(10, 10, 15, 0.45) 35%,
    rgba(10, 10, 15, 0.82) 65%,
    var(--bg-black) 100%
  );
  z-index: 1;
}

.event-detail-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.event-detail-inner {
  max-width: 760px;
}

.event-detail-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.event-detail-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.event-detail-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.event-meta-item {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.event-meta-dot {
  color: var(--muted);
  opacity: 0.4;
}

.event-meta-price {
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  background: var(--red);
  padding: 5px 16px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.event-detail-actions {
  margin-bottom: 24px;
}

.event-purchase-btn {
  font-size: 1rem;
  padding: 16px 40px;
  letter-spacing: 0.02em;
}

.event-demo-notice {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: italic;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 16px;
}

.event-demo-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* About section */
.event-about {
  background: var(--bg-black);
  padding: 72px 0;
}

.event-about-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

.event-about-text h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 18px;
  padding-left: 16px;
  border-left: 3px solid var(--red);
}

.event-about-text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Sidebar */
.event-sidebar-card {
  background: var(--bg-navy-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px;
}

.event-sidebar-card h3 {
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.event-sidebar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  color: var(--white);
}

.event-sidebar-label {
  color: var(--muted);
  font-weight: 500;
}

.event-sidebar-price {
  color: var(--red-light);
  font-weight: 800;
  font-size: 1rem;
}

.event-sidebar-demo-note {
  margin-top: 12px;
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: italic;
}

/* Related events */
.related-events-section {
  background: var(--bg-navy);
  padding: 80px 0;
}

.related-events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Purchase modal */
.purchase-modal-box {
  text-align: center;
}

.purchase-modal-eyebrow {
  color: var(--red-light);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.purchase-modal-box h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.purchase-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

/* Responsive */
@media (max-width: 900px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stream-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .form-field-full {
    grid-column: auto;
  }

  .event-about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .related-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-detail-hero {
    min-height: 60vh;
  }
}

@media (max-width: 700px) {
  .main-nav,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-navy-light);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
  }

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

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

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

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

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

  .form-card {
    padding: 24px 20px;
  }

  .cookie-banner {
    padding: 12px 16px;
  }

  .event-detail-hero {
    min-height: 55vh;
    padding-bottom: 48px;
  }

  .event-detail-title {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

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

  .purchase-modal-actions {
    flex-direction: column;
  }
}

/* =============================================
   ORGANISER CARD LABEL
   ============================================= */

.card-organiser {
  display: block;
  margin-top: 9px;
  color: var(--red-light);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1.3;
}

.card-organiser:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Generic organiser link */
.organiser-link {
  color: var(--red-light);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.organiser-link:hover {
  color: var(--white);
  text-decoration: underline;
}

/* "Streamed by" on event detail hero */
.event-streamed-by {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.88rem;
}

/* =============================================
   STREAM SCHEDULE (shared: event page + organiser page)
   ============================================= */

.stream-schedule {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.schedule-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease;
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.schedule-date {
  min-width: 96px;
  flex-shrink: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.schedule-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.schedule-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.schedule-sport {
  color: var(--muted);
  font-size: 0.8rem;
}

.schedule-price-badge {
  flex-shrink: 0;
  background: rgba(226, 18, 42, 0.15);
  border: 1px solid rgba(226, 18, 42, 0.35);
  color: var(--red-light);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.schedule-view-btn {
  flex-shrink: 0;
}

/* "More from organiser" on event detail page */
.more-from-section {
  background: var(--bg-navy-light);
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.more-from-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.more-from-heading {
  font-size: 1.4rem;
  font-weight: 800;
}

.more-from-name {
  color: var(--red-light);
}

.more-from-profile-link {
  font-size: 0.88rem;
}

/* =============================================
   ORGANISER PROFILE PAGE
   ============================================= */

.organiser-hero {
  padding: 120px 0 72px;
  background: linear-gradient(160deg, var(--bg-navy) 0%, var(--bg-black) 70%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.organiser-hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -200px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(226, 18, 42, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.organiser-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.organiser-mock-badge {
  display: inline-block;
  background: rgba(226, 18, 42, 0.1);
  border: 1px solid rgba(226, 18, 42, 0.35);
  color: var(--red-light);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.organiser-sport-tag-row {
  margin-bottom: 14px;
}

.organiser-name {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
}

.organiser-location-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.organiser-location-icon {
  color: var(--red);
  font-size: 0.55rem;
  line-height: 1;
}

.organiser-bio {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 640px;
}

.organiser-featured-btn {
  font-size: 0.95rem;
}

.organiser-upcoming-section {
  background: var(--bg-black);
  padding: 72px 0;
}

.organiser-section-heading {
  margin-bottom: 32px;
}

.organiser-schedule-note {
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 4px;
}

.organiser-demo-section {
  background: var(--bg-navy-light);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 64px 0;
}

.organiser-demo-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.organiser-demo-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
}

/* Responsive additions */
@media (max-width: 700px) {
  .schedule-row {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 20px;
  }

  .schedule-date {
    min-width: 80px;
  }

  .schedule-view-btn {
    margin-left: auto;
  }

  .more-from-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .organiser-hero {
    padding: 100px 0 56px;
  }
}

/* =============================================
   SUBMISSION ANIMATION OVERLAY
   ============================================= */

.submission-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #0a0a0f;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.submission-overlay.active {
  opacity: 1;
  visibility: visible;
}

.particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.submission-center {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  text-align: center;
  padding: 24px;
  max-width: 500px;
  width: 100%;
}

/* Broadcast rings */
.broadcast-rings {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
}

.ring {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 1.5px solid var(--red);
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.ring-1 { animation: broadcastRing 2.4s ease-out infinite 0.2s; }
.ring-2 { animation: broadcastRing 2.4s ease-out infinite 1.0s; }
.ring-3 { animation: broadcastRing 2.4s ease-out infinite 1.8s; }

@keyframes broadcastRing {
  0% {
    transform: scale(1);
    opacity: 0.55;
    border-width: 1.5px;
  }
  100% {
    transform: scale(4.2);
    opacity: 0;
    border-width: 0.5px;
  }
}

/* Logo centrepiece */
.submission-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  animation: logoReveal 0.9s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

@keyframes logoReveal {
  0% {
    transform: scale(0.8);
    filter: drop-shadow(0 0 0px rgba(226, 18, 42, 0));
  }
  60% {
    filter: drop-shadow(0 0 30px rgba(226, 18, 42, 1));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 16px rgba(226, 18, 42, 0.6));
  }
}

/* Status text */
.submission-status {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-connecting {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: fadeInUp 0.4s ease both;
}

.status-received {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.check-mark {
  color: #4ade80;
}

/* Message block */
.submission-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.submission-headline {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
}

.submission-body {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 400px;
}

.submission-back-btn {
  margin-top: 8px;
}

/* Shared entrance animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.submission-animate-in {
  animation: fadeInUp 0.55s ease both;
}

@media (max-width: 480px) {
  .broadcast-rings {
    width: 96px;
    height: 96px;
  }

  .submission-logo {
    width: 56px;
    height: 56px;
  }

  .submission-center {
    gap: 36px;
  }

  .submission-headline {
    font-size: 1rem;
  }
}
