/* =============================================================
   COMBAT UNSCRIPTED – FIGHT FOR CHANGE
   Global CSS Design System
   ============================================================= */

/* ---- GOOGLE FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --black:      #07070A;
  --charcoal:   #11111A;
  --red:        #FF2A2A;
  --dark-red:   #B30000;
  --offwhite:   #F2F2F2;
  --gray:       #9AA0A6;
  --border:     #1e1e2a;
  --font-head:  'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body:  'Inter', 'Helvetica Neue', sans-serif;
  --nav-height: 72px;
  --transition: 0.3s ease;
  --radius:     10px;
  --shadow:     0 4px 40px rgba(0,0,0,0.6);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--offwhite);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  letter-spacing: 1.5px;
  line-height: 1.1;
  text-transform: uppercase;
}
h1 { font-size: clamp(3rem, 8vw, 8rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2.4rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.6rem); }
p  { color: var(--gray); font-size: 1rem; line-height: 1.8; }
.text-red    { color: var(--red); }
.text-white  { color: var(--offwhite); }
.text-gray   { color: var(--gray); }
.text-center { text-align: center; }
.uppercase   { text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; font-weight: 600; }

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.section-sm { padding: 64px 0; }
.section-dark { background: var(--charcoal); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- SECTION HEADER ---- */
.section-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0 24px;
}
.navbar.scrolled {
  background: rgba(7,7,10,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.navbar-logo {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--offwhite);
}
.navbar-logo span { color: var(--red); }
.navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.navbar-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  transition: color var(--transition);
  position: relative;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.navbar-links a:hover { color: var(--offwhite); }
.navbar-links a:hover::after { width: 100%; }
.navbar-cta { display: flex; align-items: center; gap: 12px; }
.navbar-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.navbar-burger span {
  width: 24px;
  height: 2px;
  background: var(--offwhite);
  display: block;
  transition: all 0.3s;
}
.navbar-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.navbar-burger.open span:nth-child(2) { opacity: 0; }
.navbar-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.navbar-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: rgba(7,7,10,0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  padding: 24px;
  border-top: 1px solid var(--border);
}
.navbar-mobile.open { display: block; }
.navbar-mobile a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  color: var(--gray);
  transition: color 0.2s;
}
.navbar-mobile a:hover { color: var(--red); }
.navbar-mobile .mobile-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover {
  background: #cc1f1f;
  border-color: #cc1f1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,42,42,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--offwhite);
  border-color: rgba(242,242,242,0.3);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-ghost:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 44px; font-size: 20px; }

/* ---- CARDS ---- */
.card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: rgba(255,42,42,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.card-icon {
  width: 52px; height: 52px;
  background: rgba(255,42,42,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { color: var(--red); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(179,0,0,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255,42,42,0.08) 0%, transparent 50%);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7,7,10,0.9) 0%,
    rgba(7,7,10,0.6) 50%,
    rgba(7,7,10,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-height);
  max-width: 780px;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--red);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(4rem, 10vw, 10rem);
  letter-spacing: 4px;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-subtitle {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  letter-spacing: 8px;
  color: var(--red);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-event-card {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(17,17,26,0.8);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 10px;
  padding: 20px 28px;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}
.hero-event-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.hero-event-value {
  font-family: var(--font-head);
  font-size: 16px;
  letter-spacing: 1px;
}
.hero-event-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ---- COUNTDOWN ---- */
.countdown {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.countdown-item {
  text-align: center;
  min-width: 60px;
}
.countdown-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  letter-spacing: 2px;
  line-height: 1;
  color: var(--offwhite);
}
.countdown-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}
.countdown-sep {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--red);
  margin-top: -8px;
}

/* ---- STATS ---- */
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: 2px;
  color: var(--offwhite);
  line-height: 1;
}
.stat-number span { color: var(--red); }
.stat-desc { color: var(--gray); font-size: 0.95rem; margin-top: 8px; }

/* ---- VS MODULE ---- */
.vs-module {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  background: linear-gradient(135deg, #07070A 0%, #11111A 50%, #07070A 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  padding: 48px 0;
}
.vs-fighter {
  flex: 1;
  text-align: center;
  padding: 32px;
  position: relative;
}
.vs-fighter-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--red);
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vs-fighter-img svg { color: #444; width: 80px; height: 80px; }
.vs-badge {
  position: absolute;
  top: 40px; right: 40px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 20px;
}
.vs-center {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.vs-text {
  font-family: var(--font-head);
  font-size: 5rem;
  letter-spacing: 4px;
  color: var(--red);
  line-height: 1;
  text-shadow: 0 0 40px rgba(255,42,42,0.5);
}
.vs-divider { width: 2px; height: 80px; background: linear-gradient(to bottom, transparent, var(--red), transparent); }

/* ---- TIMELINE ---- */
.timeline {
  position: relative;
  padding: 0 0 0 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), var(--dark-red), transparent);
}
.timeline-item {
  position: relative;
  padding: 0 0 40px 32px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -39px; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--black);
  box-shadow: 0 0 12px rgba(255,42,42,0.5);
}
.timeline-step {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.timeline-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.timeline-desc { color: var(--gray); font-size: 0.95rem; }

/* ---- FORMS ---- */
.form-grid { display: grid; gap: 20px; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
}
.required-star { color: var(--red); }
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
select,
textarea {
  background: #0a0a12;
  border: 1px solid #2a2a3a;
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--offwhite);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255,42,42,0.12);
}
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239AA0A6' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
textarea { resize: vertical; min-height: 120px; }
.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.checkbox-wrap input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--red);
  margin-top: 2px;
}
.checkbox-wrap span { font-size: 14px; color: var(--gray); }
.form-error {
  background: rgba(255,42,42,0.1);
  border: 1px solid rgba(255,42,42,0.3);
  border-radius: 8px;
  padding: 12px 16px;
  color: #ff6b6b;
  font-size: 14px;
  display: none;
}
.form-success {
  background: rgba(40,200,100,0.1);
  border: 1px solid rgba(40,200,100,0.3);
  border-radius: 8px;
  padding: 20px 24px;
  color: #4cee90;
  font-size: 15px;
  display: none;
  text-align: center;
}

/* ---- DIVIDER ---- */
.divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 20px 0;
}
.divider-center { margin: 20px auto; }

/* ---- SPONSOR STRIP ---- */
.sponsor-strip {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.sponsor-logo-ph {
  width: 140px;
  height: 60px;
  background: rgba(255,255,255,0.05);
  border: 1px dashed #333;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 12px;
  letter-spacing: 2px;
  transition: border-color var(--transition), opacity var(--transition);
}
.sponsor-logo-ph:hover { border-color: var(--red); opacity: 0.8; }

/* ---- TICKET CARDS ---- */
.ticket-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.ticket-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--border);
  transition: background var(--transition);
}
.ticket-card.selected {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(255,42,42,0.2), 0 16px 40px rgba(0,0,0,0.4);
}
.ticket-card.selected::before { background: var(--red); }
.ticket-card:hover { border-color: rgba(255,42,42,0.4); transform: translateY(-2px); }
.ticket-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}
.ticket-price {
  font-family: var(--font-head);
  font-size: 2.8rem;
  letter-spacing: 2px;
  color: var(--offwhite);
  line-height: 1;
  margin: 12px 0 4px;
}
.ticket-price sup { font-size: 1.2rem; margin-right: 4px; }
.ticket-type { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); font-weight: 700; }

/* ---- FAQ ACCORDION ---- */
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: var(--offwhite);
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--red); }
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.faq-icon::after { content: '+'; font-size: 16px; color: var(--red); line-height: 1; }
.faq-item.open .faq-icon { background: var(--red); border-color: var(--red); transform: rotate(45deg); }
.faq-item.open .faq-icon::after { color: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner { padding: 0 0 24px; color: var(--gray); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 600px; }

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--charcoal);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,7,10,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7,7,10,0.96);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  background: rgba(255,42,42,0.2);
  border: 1px solid var(--red);
  color: var(--offwhite);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: var(--red); }

/* ---- LEADERSHIP CARDS ---- */
.leader-card {
  text-align: center;
  padding: 32px;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color var(--transition), transform var(--transition);
}
.leader-card:hover { border-color: rgba(255,42,42,0.3); transform: translateY(-4px); }
.leader-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--dark-red), var(--charcoal));
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--offwhite);
  overflow: hidden;
}
.leader-avatar img { width: 100%; height: 100%; object-fit: cover; }
.leader-role {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 8px;
}
.leader-name {
  font-family: var(--font-head);
  font-size: 1.6rem;
  letter-spacing: 2px;
}

/* ---- FOOTER ---- */
footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { font-family: var(--font-head); font-size: 24px; letter-spacing: 3px; }
.footer-brand span { color: var(--red); }
.footer-tagline { color: var(--gray); font-size: 0.85rem; margin: 8px 0 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 14px;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-col-title {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--offwhite);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: var(--gray);
  font-size: 14px;
  padding: 6px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--gray);
}
.footer-bottom a { color: var(--gray); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--red); }
.footer-mission {
  background: rgba(255,42,42,0.06);
  border-left: 3px solid var(--red);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin-top: 20px;
  font-size: 13px;
  color: var(--gray);
  font-style: italic;
}

/* ---- BADGE / PILL ---- */
.badge-pill {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(255,42,42,0.12);
  border: 1px solid rgba(255,42,42,0.3);
  border-radius: 20px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- UTILITY ---- */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }

/* ---- LOADER OVERLAY ---- */
.btn-loading { position: relative; pointer-events: none; opacity: 0.7; }
.btn-loading::after {
  content: '';
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  position: absolute;
  right: 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- ADMIN CSS (shared) ---- */
.admin-css {
  --charcoal: #11111A;
  --border: #1e1e2a;
  --red: #FF2A2A;
  --gray: #9AA0A6;
  --offwhite: #F2F2F2;
}

/* ---- MEDIA QUERIES ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .navbar-links, .navbar-cta { display: none; }
  .navbar-burger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-event-card { flex-direction: column; gap: 12px; }
  .vs-module { flex-direction: column; padding: 32px; }
  .vs-divider { width: 80px; height: 2px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row-2 { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
