/* ============================================================
   NOR'EASTER ROBOT COMBAT CLUB — Stylesheet
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --cyan: #00f0e4;
  --pink: #ff2d78;
  --black: #0b0b0b;
  --dark: #111214;
  --darker: #0d0d0f;
  --card-bg: #161719;
  --border: rgba(255,255,255,0.07);
  --text: #e8e8e8;
  --muted: #888;
  --font-display: 'Barlow Condensed', 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --glow-cyan: 4px 4px 0 rgba(0,240,228,0.55), 0 0 14px rgba(0,240,228,0.2);
  --glow-pink: 4px 4px 0 rgba(255,45,120,0.55), 0 0 14px rgba(255,45,120,0.2);
  --ink-shadow: 3px 3px 0 rgba(0,0,0,0.8);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.accent-cyan { color: var(--cyan); }
.accent-pink { color: var(--pink); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 2.5px solid transparent;
  white-space: nowrap;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.6);
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 rgba(0,0,0,0.7); }
.btn:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 rgba(0,0,0,0.6); }

.btn-primary {
  background: var(--cyan);
  color: var(--black);
  border-color: var(--black);
}
.btn-primary:hover {
  background: var(--cyan);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border-color: var(--cyan);
}
.btn-outline:hover {
  background: var(--cyan);
  color: var(--black);
  border-color: var(--black);
}

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 48px; font-size: 1.1rem; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
section { padding: 100px 0; position: relative; }
.page-header + section { padding-top: 64px; }

.section-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 48px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}

#navbar.scrolled {
  background: rgba(11,11,11,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo img { height: 40px; transition: transform 0.2s; }
.nav-logo:hover img { transform: scale(1.06); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.nav-active { color: var(--cyan); }

.nav-cta {
  background: var(--pink) !important;
  color: var(--black) !important;
  padding: 8px 18px !important;
  border-radius: 3px;
  transition: box-shadow 0.15s, transform 0.15s !important;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.5) !important;
  font-weight: 700;
}
.nav-cta:hover {
  box-shadow: 4px 4px 0 rgba(0,0,0,0.6) !important;
  transform: translate(-1px, -1px) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px 60px;
  background: var(--black);
}

/* Halftone dot background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,240,228,0.18) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

/* Radial vignette over grid */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, transparent 30%, var(--black) 100%);
  z-index: 1;
}

/* Scanlines — removed (too video-gamey) */
.hero-scanlines { display: none; }

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-roundel {
  width: clamp(120px, 18vw, 200px);
  animation: floatBob 4s ease-in-out infinite;
  filter: drop-shadow(4px 4px 0 rgba(0,0,0,0.7)) drop-shadow(0 0 18px rgba(0,240,228,0.25));
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-wordmark {
  width: clamp(280px, 70vw, 760px);
  filter: drop-shadow(3px 3px 0 rgba(255,45,120,0.5));
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* Spark particles */
.hero-sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.spark {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  animation: sparkFly var(--dur, 3s) linear var(--delay, 0s) infinite;
  opacity: 0;
}
@keyframes sparkFly {
  0%   { opacity: 0; transform: translate(0, 0) scale(1); }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0.2); }
}

/* Scroll arrow */
.hero-scroll-arrow {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--cyan);
  width: 36px;
  opacity: 0.7;
  animation: arrowBounce 2s ease-in-out infinite;
}
.hero-scroll-arrow svg { width: 100%; }
@keyframes arrowBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  position: relative;
  padding: 120px 0 56px;
  background: var(--darker);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-header-halftone {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,240,228,0.12) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 40%, transparent 100%);
}
.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  position: relative;
}
.page-header-sub {
  color: var(--muted);
  font-size: 1.05rem;
  position: relative;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--darker); }

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.about-card {
  background: var(--card-bg);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 36px 28px;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
}
.about-card:hover {
  border-color: var(--cyan);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0,240,228,0.25);
}

.about-icon {
  width: 52px;
  height: 52px;
  color: var(--cyan);
  margin-bottom: 18px;
}
.about-icon svg { width: 100%; height: 100%; }

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 10px;
}

.about-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

/* Event Banner */
.about-event-banner {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-event-img {
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.about-event-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 32px;
  background: linear-gradient(to top, rgba(11,11,11,0.95) 0%, rgba(11,11,11,0.6) 70%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.event-tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(255,45,120,0.15);
  border: 1px solid rgba(255,45,120,0.4);
  padding: 4px 12px;
  border-radius: 3px;
}
.about-event-overlay h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}
.about-event-overlay p { color: var(--muted); font-size: 0.9rem; max-width: 440px; }

/* ============================================================
   FIGHTERS
   ============================================================ */
#fighters {
  background: var(--black);
  position: relative;
}

#fighters::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), transparent);
}

.fighters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.fighter-card {
  background: var(--card-bg);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  cursor: default;
  transition: transform 0.18s ease, border-color 0.18s, box-shadow 0.18s;
  position: relative;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.55);
}
.fighter-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(0,240,228,0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.fighter-card:hover {
  transform: translate(-3px, -3px);
  border-color: var(--cyan);
  box-shadow: 6px 6px 0 rgba(0,240,228,0.35);
}
.fighter-card:hover::after { opacity: 1; }

.fighter-img-wrap {
  background: #0d0e10;
  padding: 20px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fighter-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.fighter-card:hover .fighter-img-wrap img {
  transform: scale(1.12);
}

.fighter-info {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--border);
}
.fighter-info h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  line-height: 1.2;
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery { background: var(--darker); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 8px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  background: var(--card-bg);
}
.gallery-item--wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,240,228,0.0);
  transition: background 0.3s;
  pointer-events: none;
}
.gallery-item:hover::after { background: rgba(0,240,228,0.08); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.active { display: flex; }

#lightboxImg {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
  cursor: default;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
  font-size: 1.5rem;
  line-height: 1;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.18); }

.lightbox-close { top: 20px; right: 20px; padding: 8px 14px; font-size: 1.8rem; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); padding: 16px 20px; font-size: 2rem; }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); padding: 16px 20px; font-size: 2rem; }

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
#highlights {
  background: var(--black);
  position: relative;
}
#highlights::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--cyan), transparent);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.highlight-card {
  background: var(--card-bg);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.55);
}
.highlight-card:hover {
  border-color: var(--pink);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(255,45,120,0.3);
}

.highlight-video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.highlight-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.highlight-label {
  padding: 14px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  border-top: 1px solid var(--border);
}

/* ============================================================
   JOIN
   ============================================================ */
#join {
  background: var(--darker);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.join-bg-art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(0,240,228,0.07), transparent),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(255,45,120,0.07), transparent);
  pointer-events: none;
}

.join-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.join-logo {
  width: 120px;
  filter: drop-shadow(0 0 24px rgba(0,240,228,0.4));
}

.join-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.join-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
}

.join-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 420px;
  margin: 12px 0;
  text-align: left;
}
.join-step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card-bg);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 14px 20px;
  font-size: 0.95rem;
  color: var(--text);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.5);
}
.fb-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1877f2;
  border: 2px solid #1877f2;
  border-radius: 3px;
  padding: 12px 24px;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.5);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
}
.fb-link:hover {
  background: #1877f2;
  color: #fff;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.6);
}
.fb-link:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 rgba(0,0,0,0.5);
}
.discord-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5865F2;
  border: 2px solid #5865F2;
  border-radius: 3px;
  padding: 12px 24px;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.5);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
  text-decoration: none;
}
.discord-link:hover {
  background: #5865F2;
  color: #fff;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.6);
}
.discord-link:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 rgba(0,0,0,0.5);
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
  border-radius: 4px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.footer-social a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
}

.join-step-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  min-width: 32px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-left img { opacity: 0.7; transition: opacity 0.2s; }
.footer-left img:hover { opacity: 1; }

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-wordmark { opacity: 0.6; filter: grayscale(0.4); }
.footer-copy { color: var(--muted); font-size: 0.78rem; text-align: center; }
.footer-credit { color: var(--muted); font-size: 0.72rem; text-align: center; opacity: 0.6; }
.footer-credit a { color: var(--cyan); opacity: 0.8; transition: opacity 0.2s; }
.footer-credit a:hover { opacity: 1; }

.footer-right { display: flex; justify-content: flex-end; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}
.footer-nav a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--cyan); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .footer-center { grid-column: 1 / -1; order: -1; }
  .footer-right { justify-content: flex-end; align-items: flex-start; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(11,11,11,0.97); padding: 20px 24px; gap: 4px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  section { padding: 72px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item--wide { grid-column: span 2; }
  .fighters-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px; }
  .highlights-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .hero-buttons { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .about-event-img { aspect-ratio: 16 / 9; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-right { justify-content: center; }
  .footer-nav { align-items: center; flex-direction: row; flex-wrap: wrap; gap: 12px; }
}
