/* =========================================================
   SEE3SLAM — SHARED STYLESHEET
   style-modern.css
   Extracted from index.html, register.html, volunteer.html,
   and sponsor-opportunities.html and combined here.
   ========================================================= */

/* =========================================================
   CUSTOM PROPERTIES
   ========================================================= */
:root {
  --orange: #FF6B00;
  --teal: #00ABBE;
  --yellow: #E1E100;
  --yellow2: #FFB81D;
  --black: #0a0a0a;
  --dark: #111;
  --white: #fff;
  --gray: #777;
  --light: #f6f6f6;
  --border: #e0e0e0;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
  background: var(--white);
  padding-top: 79px; /* height of fixed header */
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--orange); }
strong { color: #444; }
mark { background: var(--yellow); color: #111; padding: 1px 4px; }

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section--dark { background: var(--black); }
.section--gray { background: var(--light); }
.section--white { background: var(--white); }

.section-label {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Arvo', serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.section-title em { color: var(--orange); font-style: normal; }
.section-title--light { color: #fff; }
.section-desc {
  font-size: 16px;
  color: var(--gray);
  max-width: 580px;
  line-height: 1.8;
}
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header--center .section-desc { margin: 0 auto; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 22px;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--yellow { background: var(--yellow); color: #111; border-color: var(--yellow); }
.btn--yellow:hover { background: #c8c800; color: #111; border-color: #c8c800; }
.btn--orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn--orange:hover { background: #e05e00; color: #fff; border-color: #e05e00; }
.btn--teal { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn--teal:hover { background: #009aab; color: #fff; border-color: #009aab; }
.btn--outline { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn--outline:hover { background: var(--orange); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--outline-light:hover { background: #fff; color: var(--dark); border-color: #fff; }
.btn--lg { padding: 14px 32px; font-size: 13px; }
.btn--xl { padding: 18px 48px; font-size: 15px; }
.btn--full { width: 100%; text-align: center; }
.btn--disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
#site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 200;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--orange);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
#site-logo img { height: 56px; }
.main-nav {
  display: flex;
  list-style: none;
  gap: 2px;
}
.main-nav a {
  display: block;
  padding: 8px 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bbb;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a.active { color: var(--orange); }
.header-ctas { display: flex; gap: 8px; align-items: center; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

/* =========================================================
   TICKER BANNER
   ========================================================= */
.ticker-wrap {
  background: #000;
  overflow: hidden;
  border-bottom: 2px solid #1a1a1a;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 45s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 9px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #ddd;
  white-space: nowrap;
}
.ticker-item b { color: var(--orange); font-weight: 700; margin-right: 6px; }
.ticker-sep { color: var(--teal); margin: 0 24px; font-size: 16px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   GRADIENT DIVIDER
   ========================================================= */
.gradient-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--teal) 50%, var(--yellow) 100%);
}

/* =========================================================
   PAGE HERO (inner pages: register, volunteer, sponsor)
   ========================================================= */
.page-hero {
  position: relative;
  min-height: 52vh;
  background: var(--black);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 60px;
}
.page-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-eyebrow {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,171,190,0.1);
  border: 1px solid rgba(0,171,190,0.25);
  border-radius: 20px;
  padding: 5px 18px;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: 'Arvo', serif;
  font-size: clamp(42px, 9vw, 88px);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 0.95;
  margin-bottom: 14px;
}
.page-hero h1 em { color: var(--orange); font-style: normal; }
.page-hero p.sub {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(15px, 2.5vw, 19px);
  font-weight: 300;
  color: #888;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-note {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: #555;
  letter-spacing: 0.05em;
  margin-top: 12px;
}
.hero-note strong { color: var(--yellow); }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   SPONSORS GRID (shared across index, volunteer, sponsor)
   ========================================================= */
.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.sp-item {
  padding: 14px 22px;
  background: var(--light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.sp-item:hover { background: #ebebeb; }
.sp-item img {
  height: 56px;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(0.2);
  opacity: 0.85;
  transition: all 0.25s;
}
.sp-item:hover img { filter: grayscale(0); opacity: 1; }

.partners-section {
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
}
.partners-label {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 24px;
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.pt-item {
  padding: 10px 18px;
  background: var(--light);
  border-radius: 4px;
}
.pt-item img {
  height: 40px;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(0.2);
  opacity: 0.8;
  transition: all 0.25s;
}
.pt-item:hover img { filter: grayscale(0); opacity: 1; }

/* =========================================================
   CONTACT
   ========================================================= */
#contact {
  background: #111;
  padding: 48px 24px;
  text-align: center;
}
#contact h2 {
  font-family: 'Arvo', serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}
#contact p {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #888;
}
#contact a { color: var(--teal); font-weight: 700; }
#contact a:hover { color: var(--orange); }

/* =========================================================
   FOOTER
   ========================================================= */
#site-footer {
  background: #000;
  border-top: 3px solid #111;
  padding: 28px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-left, .footer-right {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: #555;
}
.footer-left a, .footer-right a { color: var(--teal); }
.footer-right { text-align: right; }
.footer-center img { height: 48px; }

/* =========================================================
   MOBILE NAV DRAWER
   ========================================================= */
@media (max-width: 960px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(0,0,0,0.98);
    flex-direction: column;
    padding: 12px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 24px; }
  .nav-toggle { display: flex; }
}

/* =========================================================
   RESPONSIVE — SHARED
   ========================================================= */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-right { text-align: center; }
  .header-ctas .btn--teal,
  .header-ctas .btn--orange { display: none; }
}
@media (max-width: 480px) {
  .header-inner { padding: 10px 16px; }
  #site-logo img { height: 44px; }
  .btn--lg { padding: 12px 24px; }
  body { padding-top: 67px; } /* smaller header on mobile */
}

/* =========================================================
   === INDEX PAGE ===
   ========================================================= */

/* Hero Section */
#home {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 0;
}
#hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 15% 50%, rgba(255,107,0,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 85% 40%, rgba(0,171,190,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px 32px;
  position: relative;
  z-index: 2;
}
.hero-title {
  font-family: 'Arvo', serif;
  font-size: clamp(72px, 16vw, 148px);
  font-weight: 700;
  line-height: 0.88;
  color: #fff;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-title em { color: var(--orange); font-style: normal; }
.hero-sub {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 300;
  color: #888;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-date {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(20px, 4vw, 34px);
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero-location {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #666;
  letter-spacing: 0.05em;
  margin-bottom: 36px;
}

/* Countdown */
.countdown {
  display: inline-flex;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 40px rgba(255,107,0,0.3);
  margin-bottom: 36px;
}
.cd-unit {
  background: var(--orange);
  padding: 18px 28px;
  text-align: center;
  min-width: 90px;
  position: relative;
}
.cd-unit + .cd-unit::before {
  content: ':';
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-60%);
  color: rgba(255,255,255,0.4);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
.cd-num {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}
.cd-lbl {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  background: rgba(0,0,0,0.12);
  padding: 3px 0;
  margin-top: 6px;
}

.reg-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, rgba(255,107,0,0.15), rgba(0,171,190,0.15));
  border: 1px solid rgba(255,107,0,0.5);
  border-radius: 40px;
  padding: 10px 24px;
  margin-bottom: 28px;
  animation: reg-pulse 2.5s ease-in-out infinite;
}
.reg-banner-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: reg-dot 2.5s ease-in-out infinite;
}
.reg-banner span {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.reg-banner strong { color: var(--orange); }
@keyframes reg-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); border-color: rgba(255,107,0,0.5); }
  50%       { box-shadow: 0 0 18px 4px rgba(255,107,0,0.2); border-color: rgba(255,107,0,0.9); }
}
@keyframes reg-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* Hero sponsor strip */
.hero-strip {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-strip span {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #444;
}
.hero-strip img {
  height: 32px;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.hero-strip a:hover img { opacity: 1; }

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text h3 {
  font-family: 'Arvo', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  margin: 24px 0 10px;
}
.about-text p { font-size: 15px; line-height: 1.85; color: var(--gray); }
.about-text p + p { margin-top: 12px; }
.about-sponsor-img { max-width: 260px; margin-bottom: 14px; }
.about-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.about-visuals { display: flex; flex-direction: column; gap: 14px; }
.about-visuals img { border-radius: 6px; width: 100%; }
.photo-credit {
  font-size: 11px;
  color: #aaa;
  font-style: italic;
  text-align: right;
  margin-top: -6px;
}

/* Schedule Section */
.schedule-day { margin-bottom: 44px; }
.schedule-day:last-child { margin-bottom: 0; }

.day-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.day-label span { font-size: 16px; letter-spacing: 0.04em; font-weight: 700; }

.sched-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 3px;
}
.sched-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #1a1a1a;
}
.sched-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.sched-card:hover img { transform: scale(1.06); }
.sched-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.2) 55%, transparent 100%);
  transition: background 0.3s;
}
.sched-card:hover .sched-overlay {
  background: linear-gradient(to top, rgba(0,171,190,0.9) 0%, rgba(0,171,190,0.3) 55%, transparent 100%);
}
.sched-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 14px;
}
.sched-time {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 3px;
}
.sched-time sup { font-size: 9px; font-weight: 700; letter-spacing: 0.05em; }
.sched-event {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

/* Divisions Section */
.divisions-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 56px;
  align-items: start;
}
.div-col h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 6px;
  margin: 0 0 10px;
}
.div-col { margin-bottom: 24px; }
.div-col ul { list-style: none; padding: 0; }
.div-col ul li {
  font-size: 14px;
  color: #555;
  padding: 4px 0 4px 16px;
  position: relative;
}
.div-col ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 11px;
  top: 6px;
}
.div-col .div-note {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 8px;
  padding-left: 0;
}

.info-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px;
  border-left: 4px solid var(--orange);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.info-card h2 {
  font-family: 'Arvo', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.info-list { list-style: none; padding: 0; }
.info-list li {
  font-size: 13.5px;
  color: #555;
  padding: 8px 0 8px 18px;
  position: relative;
  border-bottom: 1px solid #f2f2f2;
  line-height: 1.6;
}
.info-list li:last-child { border-bottom: none; }
.info-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 13px;
  color: var(--orange);
  font-size: 7px;
}

/* Rules Section */
.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.rules-col h2 {
  font-family: 'Arvo', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.rules-col p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 22px;
}
.doc-links { list-style: none; padding: 0; }
.doc-links li { margin-bottom: 10px; }
.doc-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--light);
  border-left: 3px solid var(--teal);
  border-radius: 0 4px 4px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  transition: all 0.2s;
}
.doc-links a::before { content: '↓'; font-size: 15px; font-weight: 700; }
.doc-links a:hover { background: var(--teal); color: #fff; border-left-color: var(--teal); }

/* Maps Section */
.maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.map-card { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
.map-card-head {
  background: var(--orange);
  padding: 13px 20px;
}
.map-card-head h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.map-card img { width: 100%; display: block; }
.map-card iframe { display: block; }

/* Charities Section */
.charities-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
}
.charity-text .section-label { color: var(--teal); }
.charity-text h2 {
  font-family: 'Arvo', serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.charity-text h2 em { color: var(--orange); font-style: normal; }
.charity-text p { font-size: 15px; color: #999; line-height: 1.8; margin-bottom: 14px; }
.charity-logos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.charity-logos img {
  height: 56px;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.2s;
}
.charity-logos a:hover img { opacity: 1; }
.charity-img { border-radius: 8px; overflow: hidden; }
.charity-img img { width: 100%; border-radius: 8px; }

/* Index-page responsive overrides */
@media (max-width: 768px) {
  .about-grid,
  .divisions-grid,
  .rules-grid,
  .charities-grid,
  .maps-grid { grid-template-columns: 1fr; gap: 32px; }

  .countdown { flex-wrap: wrap; justify-content: center; }
  .cd-unit { min-width: 80px; padding: 14px 18px; }
  .cd-num { font-size: 34px; }
  .cd-unit + .cd-unit::before { display: none; }

  .hero-actions { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }

  .sched-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .sched-cards { grid-template-columns: 1fr; }
  .hero-title { letter-spacing: -2px; }
}

/* =========================================================
   === REGISTER PAGE ===
   ========================================================= */

/* Status Banner */
.status-banner {
  background: linear-gradient(135deg, #1a0a00 0%, #111 50%, #001a1a 100%);
  border-top: 4px solid var(--orange);
  padding: 56px 24px;
  text-align: center;
}
.status-inner { max-width: 700px; margin: 0 auto; }
.status-dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,0,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(255,107,0,0); }
}
.status-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.status-banner h2 {
  font-family: 'Arvo', serif;
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 12px;
}
.status-banner h2 em { color: var(--yellow); font-style: normal; }
.status-banner p { font-size: 15px; color: #888; line-height: 1.8; }

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  background: #fff;
  border-radius: 8px;
  border: 2px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.price-card--featured { border-color: var(--orange); }
.price-card-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--orange);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 12px;
}
.price-card-head {
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--border);
}
.price-tier {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.price-amount {
  font-family: 'Arvo', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.price-amount sup { font-size: 22px; vertical-align: top; margin-top: 8px; }
.price-amount span { font-size: 14px; color: var(--gray); font-weight: 400; }
.price-dates {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: var(--gray);
  margin-top: 6px;
}
.price-card-body { padding: 20px 24px; }
.price-features { list-style: none; padding: 0; }
.price-features li {
  font-size: 13px;
  color: #555;
  padding: 5px 0 5px 18px;
  position: relative;
  border-bottom: 1px solid #f5f5f5;
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; font-size: 12px; }
.price-features li.warn::before { content: '!'; color: #e55; }
.price-note { font-size: 11px; color: #aaa; margin-top: 12px; line-height: 1.5; }

/* How to Register */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.steps-list { list-style: none; padding: 0; counter-reset: step; }
.steps-list li {
  counter-increment: step;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.steps-list li:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.step-num::before { content: counter(step); }
.step-text h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}
.step-text p { font-size: 13px; color: var(--gray); }

.details-card {
  background: var(--light);
  border-radius: 8px;
  padding: 32px;
  border-left: 4px solid var(--teal);
}
.details-card h3 {
  font-family: 'Arvo', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.detail-list { list-style: none; padding: 0; }
.detail-list li {
  font-size: 13.5px;
  color: #555;
  padding: 7px 0 7px 18px;
  position: relative;
  border-bottom: 1px solid #e8e8e8;
  line-height: 1.5;
}
.detail-list li:last-child { border-bottom: none; }
.detail-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--orange);
  font-size: 7px;
}

/* Check-In Section */
.checkin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.checkin-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 36px;
  border-top: 4px solid var(--orange);
}
.checkin-card.alt { border-top-color: var(--teal); }
.checkin-type {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.checkin-card.alt .checkin-type { color: var(--teal); }
.checkin-card h3 {
  font-family: 'Arvo', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.checkin-card p { font-size: 15px; color: #999; line-height: 1.7; }
.checkin-time {
  display: inline-block;
  margin-top: 14px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--orange);
  border-radius: 4px;
  padding: 6px 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
}
.checkin-card.alt .checkin-time {
  background: rgba(0,171,190,0.1);
  border-color: rgba(0,171,190,0.3);
  color: var(--teal);
}

/* Register page responsive */
@media (max-width: 768px) {
  .pricing-grid, .how-grid, .checkin-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* =========================================================
   === VOLUNTEER PAGE ===
   ========================================================= */

/* Volunteer Signup Section */
.signup-section { padding: 72px 0; background: var(--white); text-align: center; }
.signup-image { max-width: 720px; margin: 0 auto 36px; border-radius: 8px; overflow: hidden; }
.signup-image img { width: 100%; border-radius: 8px; }
.signup-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }

/* Why Volunteer Cards */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  border-top: 4px solid var(--orange);
  text-align: center;
  transition: transform 0.2s;
}
.why-card:hover { transform: translateY(-4px); }
.why-card:nth-child(2) { border-top-color: var(--teal); }
.why-card:nth-child(3) { border-top-color: var(--yellow); }
.why-icon {
  font-size: 42px;
  margin-bottom: 16px;
  line-height: 1;
}
.why-card h3 {
  font-family: 'Arvo', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.why-card p { font-size: 14px; color: var(--gray); line-height: 1.75; }

/* Volunteer page responsive */
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  #scorekeeper-forms .wrap > div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}

/* =========================================================
   === SPONSOR OPPORTUNITIES PAGE ===
   ========================================================= */

/* Why Sponsor — Stats */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
/* Note: .why-grid is overloaded between volunteer (3-col) and sponsor (2-col).
   The 3-col volunteer rule is declared above; the 2-col sponsor rule here
   overrides for sponsor-opportunities.html context — both work because the
   sections are on separate pages. */
.stats-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-item {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  border-top: 4px solid var(--orange);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  text-align: center;
}
.stat-item:nth-child(2) { border-top-color: var(--teal); }
.stat-item:nth-child(3) { border-top-color: var(--yellow); }
.stat-item:nth-child(4) { border-top-color: #888; }
.stat-num {
  font-family: 'Arvo', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}
.desc-col h2 {
  font-family: 'Arvo', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.desc-col p { font-size: 15px; color: var(--gray); line-height: 1.85; margin-bottom: 14px; }
.desc-col a { color: var(--teal); font-weight: 600; }
.impact-quote {
  background: linear-gradient(135deg, var(--black) 0%, #1a0a00 100%);
  border-left: 4px solid var(--orange);
  border-radius: 0 6px 6px 0;
  padding: 20px 24px;
  margin-top: 20px;
}
.impact-quote p {
  font-family: 'Arvo', serif;
  font-size: 15px;
  font-style: italic;
  color: #ccc;
  line-height: 1.7;
  margin: 0;
}
.impact-quote p em { color: var(--orange); font-style: normal; }

/* Tier Cards */
.tier-note {
  text-align: center;
  margin-bottom: 36px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #aaa;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 12px 24px;
  display: inline-block;
}
.tier-note-wrap { text-align: center; }
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tier-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tier-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.tier-head {
  padding: 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tier-head--teal { border-top: 4px solid var(--teal); }
.tier-head--yellow { border-top: 4px solid var(--yellow); }
.tier-head--orange { border-top: 4px solid var(--orange); }
.tier-name {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tier-head--teal .tier-name { color: var(--teal); }
.tier-head--yellow .tier-name { color: var(--yellow); }
.tier-head--orange .tier-name { color: var(--orange); }
.tier-title {
  font-family: 'Arvo', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.tier-price {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #666;
}
.tier-body { padding: 24px; }
.tier-features { list-style: none; padding: 0; margin-bottom: 24px; }
.tier-features li {
  font-size: 13px;
  color: #999;
  padding: 6px 0 6px 18px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.tier-features li:last-child { border-bottom: none; }
.tier-features li::before { content: '✓'; position: absolute; left: 0; font-weight: 700; font-size: 11px; }
.tier-head--teal ~ .tier-body .tier-features li::before { color: var(--teal); }
.tier-head--yellow ~ .tier-body .tier-features li::before { color: var(--yellow); }
.tier-head--orange ~ .tier-body .tier-features li::before { color: var(--orange); }

/* Sponsor page responsive */
@media (max-width: 768px) {
  .tier-grid { grid-template-columns: 1fr; gap: 24px; }
  .stats-col { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats-col { grid-template-columns: 1fr; }
}

/* === PHOTO GALLERY PAGE === */

/* External highlight links */
.gallery-ext-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.video-wrap { display: flex; flex-direction: column; gap: 10px; }
.video-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--teal);
}
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Photo grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.photo-item { overflow: hidden; border-radius: 4px; aspect-ratio: 1; background: #111; }
.photo-item a { display: block; width: 100%; height: 100%; }
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease, filter .3s ease;
  filter: brightness(.85);
}
.photo-item:hover img { transform: scale(1.06); filter: brightness(1); }

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

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: calc(100vw - 140px);
  max-height: 90vh;
}
.lightbox-content img {
  max-width: 100%;
  max-height: calc(90vh - 60px);
  object-fit: contain;
  border-radius: 4px;
  display: block;
}
.lightbox-caption {
  margin-top: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.lightbox-counter {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 4px;
}

.lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  opacity: .7;
  transition: opacity .2s;
  z-index: 10000;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  background: none;
  border: none;
  color: #fff;
  font-size: 64px;
  line-height: 1;
  cursor: pointer;
  opacity: .5;
  transition: opacity .2s;
  padding: 0 16px;
  flex-shrink: 0;
  user-select: none;
}
.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }

/* Gallery responsive */
@media (max-width: 1100px) {
  .video-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 768px) {
  .video-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-ext-links { flex-direction: column; align-items: center; }
  .lightbox-content { max-width: calc(100vw - 100px); }
  .lightbox-prev, .lightbox-next { font-size: 44px; padding: 0 8px; }
}
@media (max-width: 480px) {
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
  .lightbox-content { max-width: calc(100vw - 70px); }
}
