/* ============================================================
   HUMANITARNI TURNIR 2026 – EESTEC LC Zagreb
   ============================================================ */

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

:root {
  --black:        #080808;
  --deep:         #0d0d0d;
  --card:         #141414;
  --card-hover:   #1a1a1a;

  --red:          #e03131;
  --red-bright:   #ff4444;
  --red-dim:      rgba(224, 49, 49, 0.12);
  --red-border:   rgba(224, 49, 49, 0.28);
  --red-glow:     rgba(224, 49, 49, 0.08);

  --white:        #f0ede8;
  --muted:        #6b6b6b;
  --muted-dark:   #3a3a3a;

  --border:       rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.10);

  --font: 'Outfit', sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

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

/* ============================================================
   BACKGROUND – sportski red glow
   ============================================================ */

/* Fiksni bg glow slojevi */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(200, 20, 20, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 75%, rgba(180, 10, 10, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(220, 30, 30, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle noise texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(8, 8, 8, 0.80);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.navbar.scrolled { background: rgba(8, 8, 8, 0.97); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

/* Hero logo – small inline, used in "powered by" row */
.nav-logo-img {
  height: 40px;
  width: auto;
}

.hero-powered-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.6s 0.3s ease both;
  opacity: 0;
}

.hero-powered-text {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-logo-link {
  display: flex;
  align-items: center;
  opacity: 0.9;
  transition: opacity var(--transition), transform var(--transition);
}
.hero-logo-link:hover { opacity: 1; transform: scale(1.03); }

.hero-logo-img {
  height: 56px;
  width: auto;
  display: block;
}

/* OLD hero-logo-wrap no longer used but keep for safety */
.hero-logo-wrap { display: none; }
.hero-powered   { display: none; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--white); }

.nav-cta {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 0.55rem 1.4rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--red-bright); transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(224, 49, 49, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}

/* Dekorativni orbs u pozadini heroja */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-orb--1 {
  width: 400px; height: 400px;
  top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(200,20,20,0.1) 0%, transparent 70%);
}
.hero-orb--2 {
  width: 350px; height: 350px;
  bottom: -80px; right: -80px;
  background: radial-gradient(circle, rgba(180,10,10,0.08) 0%, transparent 70%);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  border: 1px solid var(--red-border);
  padding: 7px 18px;
  border-radius: 100px;
  background: var(--red-dim);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.6s ease both;
}

.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.hero-logo-wrap {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.6s 0.1s ease both;
  opacity: 0;
}

.hero-title {
  font-family: var(--font);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.6s 0.1s ease both;
  opacity: 0;
}
.hero-title-red    { color: var(--red); }
.hero-title-outline {
  -webkit-text-stroke: 1.5px rgba(240, 237, 232, 0.25);
  color: transparent;
}

.hero-tagline-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
  text-align: center;
  animation: fadeUp 0.6s 0.4s ease both;
  opacity: 0;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0;
}

.hero-tagline-sub {
  font-size: clamp(0.8rem, 1.8vw, 0.95rem);
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.5px;
  margin: 0;
}

.hero-sos-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 500;
  transition: opacity var(--transition);
}
.hero-sos-link:hover { opacity: 0.8; }

.hero-tagline strong { color: var(--white); font-weight: 600; }

.hero-stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.6s 0.4s ease both;
  opacity: 0;
  background: rgba(255,255,255,0.015);
  backdrop-filter: blur(10px);
}

.stat {
  padding: 1.2rem 1.8rem;
  text-align: center;
  border-right: 1px solid var(--border-light);
}
.stat:last-child { border-right: none; }

.stat-val {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-val--red { color: var(--red); }

.stat-lbl {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.6s 0.5s ease both;
  opacity: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn--primary {
  color: var(--white);
  background: var(--red);
  position: relative;
  overflow: hidden;
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent);
}
.btn--primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(224, 49, 49, 0.35);
}

.btn--secondary {
  color: var(--white);
  background: transparent;
  border: 1px solid var(--border-light);
}
.btn--secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
}

.btn--large { font-size: 1rem; padding: 1.1rem 3rem; }

/* ============================================================
   CHARITY BANNER
   ============================================================ */
.charity-banner {
  background: linear-gradient(135deg, rgba(26,8,8,0.9), rgba(32,10,10,0.9));
  border-top: 1px solid var(--red-border);
  border-bottom: 1px solid var(--red-border);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
  position: relative;
  z-index: 1;
}

.charity-heart { font-size: 2rem; }

.charity-text h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.charity-text p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.charity-text a { color: var(--red); text-decoration: none; }
.charity-text a:hover { text-decoration: underline; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 5rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.section--no-top { padding-top: 0; }
.section-header { margin-bottom: 3rem; }

.section-tag {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}
.section-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.section-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

/* ============================================================
   SPORTS
   ============================================================ */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
}

.sport-card {
  background: var(--card);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  cursor: default;
}
.sport-card:hover { background: var(--card-hover); }

.sport-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.sport-card:hover .sport-accent { transform: scaleX(1); }

.sport-num {
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  position: absolute;
  bottom: -10px; right: 20px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.sport-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--red-dim);
  border: 1px solid var(--red-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.sport-name { font-size: 1.7rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.5px; }
.sport-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.2rem; }

.sport-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}
.sport-badge--competitive { background: rgba(224,49,49,0.15); color: var(--red); border: 1px solid var(--red-border); }
.sport-badge--fun { background: rgba(255,255,255,0.07); color: var(--muted); border: 1px solid var(--border-light); }

/* ============================================================
   VIBES
   ============================================================ */
.vibes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.vibe {
  background: var(--card);
  padding: 2rem;
  text-align: center;
  transition: background var(--transition);
}
.vibe:hover { background: var(--card-hover); }

.vibe-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.vibe-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.3rem; }
.vibe-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

/* ============================================================
   SPONSORS – novi dizajn s logoom i IG ikonama
   ============================================================ */
.sponsors-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted-dark);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 500;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.sponsor-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.sponsor-card:hover {
  background: var(--card-hover);
  border-color: var(--red-border);
  transform: translateY(-3px);
}

/* Logo container – fixed height, logo se skalira unutra */
.sponsor-logo-wrap {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.sponsor-logo-img {
  max-height: 60px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Logoi s bijelom/crnom pozadinom – screen blend ih čini prozirnim */
  mix-blend-mode: screen;
  filter: brightness(1.1);
}

.sponsor-type {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* Gumbi web / ig ispod */
.sponsor-actions {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.sponsor-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.sponsor-btn--web {
  color: var(--muted);
  border-color: var(--border-light);
}
.sponsor-btn--web:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}

.sponsor-btn--ig {
  color: var(--white);
  background: linear-gradient(135deg, #833ab4, #e1306c, #fd1d1d);
  border-color: transparent;
}
.sponsor-btn--ig:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(225,48,108,0.35);
}

/* ============================================================
   RECAP VIDEO
   ============================================================ */
.recap-video-wrap {
  margin-bottom: 2.5rem;
}

.recap-video-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 1rem;
}

.recap-play-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

.recap-video-container {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #000;
  /* 16:9 max, but let video dictate height */
  max-height: 560px;
  border: 1px solid var(--border-light);
}

.recap-video {
  width: 100%;
  height: 100%;
  max-height: 560px;
  display: block;
  object-fit: cover;
  cursor: pointer;
}

.recap-video-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(8,8,8,0.6), transparent);
  pointer-events: none;
}

.recap-video-controls {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(8,8,8,0.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  padding: 8px 12px;
  border-radius: 100px;
  z-index: 2;
  transition: all var(--transition);
}
.recap-video-controls:hover {
  border-color: rgba(255,255,255,0.2);
}

.recap-mute-btn {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0;
  opacity: 0.85;
  transition: opacity var(--transition);
  flex-shrink: 0;
}
.recap-mute-btn:hover { opacity: 1; }

.recap-volume {
  -webkit-appearance: none;
  appearance: none;
  width: 80px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.25);
  outline: none;
  cursor: pointer;
  transition: background var(--transition);
}
.recap-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.recap-volume::-webkit-slider-thumb:hover {
  background: var(--red);
  transform: scale(1.2);
}
.recap-volume::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  border: none;
}

/* Mobile: smaller volume slider */
@media (max-width: 480px) {
  .recap-volume { width: 55px; }
  .recap-video-controls { bottom: 0.8rem; right: 0.8rem; padding: 6px 10px; }
}

/* Divider between video and photos */
.recap-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.recap-divider::before,
.recap-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}
.recap-divider span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

/* 2-column row: each takes 3/6 = 50% */
.gallery-item--half {
  grid-column: span 3;
}

/* 3-column row: each takes 2/6 = 33% */
.gallery-item--third {
  grid-column: span 2;
}

/* Fallback for any plain .gallery-item */
.gallery-item {
  grid-column: span 2;
}

.gallery-item,
.gallery-item--half,
.gallery-item--third {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--card);
  cursor: pointer;
}

/* Fixed height rows so grid looks balanced */
.gallery-item--half    { aspect-ratio: 4/5; }
.gallery-item--third   { aspect-ratio: 3/4; }

.gallery-item img,
.gallery-item--half img,
.gallery-item--third img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item--half:hover img,
.gallery-item--third:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay,
.gallery-item--half:hover .gallery-overlay,
.gallery-item--third:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(224, 49, 49, 0.85);
  padding: 5px 12px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}

/* ============================================================
   CTA BOX
   ============================================================ */
.cta-box {
  background: linear-gradient(135deg, rgba(13,13,13,0.95), rgba(19,5,5,0.95));
  border: 1px solid var(--red-border);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(224,49,49,0.10), transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.cta-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.cta-price { color: var(--red); font-weight: 700; }

.recap-divider-v {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.team-card:hover {
  border-color: var(--red-border);
  transform: translateY(-4px);
}

.team-photo-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo { transform: scale(1.04); }

.team-info {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.team-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}

.team-role {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}

.team-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
  word-break: break-all;
}
.team-email:hover { color: var(--white); }
.team-email svg { flex-shrink: 0; }

.team-email--muted {
  font-size: 0.75rem;
  color: var(--muted-dark);
  font-style: italic;
}

.team-socials {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.team-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition);
  flex-shrink: 0;
}

.team-social-btn--ig {
  background: linear-gradient(135deg, #833ab4, #e1306c, #fd1d1d);
  color: #fff;
}
.team-social-btn--ig:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(225,48,108,0.4);
}

.team-social-btn--li {
  background: #0a66c2;
  color: #fff;
}
.team-social-btn--li:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(10,102,194,0.4);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-left {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.9;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-left strong {
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color var(--transition);
}
.footer-contact-item:hover { color: var(--red); }
.footer-contact-item svg { flex-shrink: 0; opacity: 0.6; }

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.footer-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: color var(--transition);
}
.footer-icon-link:hover { color: var(--white); }
.footer-icon-link svg { flex-shrink: 0; }

/* Gallery clickable */
.gallery-img-click { cursor: zoom-in; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.2s ease;
}

.lightbox.open {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: zoomIn 0.25s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox-close:hover { background: var(--red); border-color: var(--red); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .navbar { padding: 1rem 1.25rem; }
  .nav-hamburger { display: flex; }

  .nav-right {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(8,8,8,0.98);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
  }
  .nav-right.open { display: flex; }
  .nav-link { padding: 0.75rem 0; border-bottom: 1px solid var(--border); width: 100%; font-size: 0.95rem; }
  .nav-cta { margin-top: 1rem; align-self: flex-start; }

  /* Hero */
  .hero { padding: 6rem 1.25rem 3rem; }
  .hero-title { letter-spacing: -1px; }
  .hero-eyebrow { font-size: 0.62rem; letter-spacing: 1.5px; text-align: center; }

  /* Stats: 3 across on mobile */
  .hero-stats { flex-wrap: wrap; border-radius: var(--radius-md); }
  .stat {
    padding: 0.9rem 1rem;
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    flex: 1 1 calc(33% - 1px);
    min-width: 80px;
  }
  .stat:last-child { border-bottom: none; }

  /* Buttons */
  .hero-btns { flex-direction: column; align-items: center; width: 100%; }
  .btn { width: 100%; justify-content: center; font-size: 0.9rem; }

  /* Powered by */
  .hero-powered-wrap { gap: 8px; }
  .hero-logo-img { height: 28px; }
  .hero-powered-text { font-size: 0.65rem; }

  /* Sections */
  .section { padding: 3rem 1.25rem; }
  .section--no-top { padding-top: 0; }
  .section-heading { font-size: clamp(1.8rem, 7vw, 2.5rem); }

  /* Sports */
  .sports-grid { grid-template-columns: 1fr; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Vibes: 2 cols on mobile */
  .vibes-grid  { grid-template-columns: repeat(2, 1fr); }

  /* Gallery: 2 columns, each image equal */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--half  { grid-column: span 1; aspect-ratio: 4/5; }
  .gallery-item--third { grid-column: span 1; aspect-ratio: 3/4; }

  /* Video recap */
  .recap-video { max-height: 280px; }
  .recap-video-container { max-height: 280px; }
  .recap-volume { width: 60px; }

  /* Sponsors */
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* CTA */
  .cta-box { padding: 2.5rem 1.25rem; margin: 0; }
  .cta-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }

  /* Footer */
  .footer { flex-direction: column; align-items: flex-start; padding: 1.5rem 1.25rem; }
  .footer-right { align-items: flex-start; }

  /* Charity */
  .charity-banner { padding: 1.5rem 1.25rem; gap: 1rem; }
}

@media (max-width: 480px) {
  /* Hero title even tighter */
  .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }

  /* Stats: 2 across */
  .stat { flex: 1 1 calc(50% - 1px); }

  /* Sponsors single col */
  .sponsors-grid { grid-template-columns: 1fr; }

  /* Gallery: single col on very small */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--half  { grid-column: span 1; aspect-ratio: 16/10; }
  .gallery-item--third { grid-column: span 1; aspect-ratio: 16/10; }

  /* Nav logo smaller */
  .nav-logo-img { height: 32px; }

  /* CTA box tighter */
  .cta-box { padding: 2rem 1rem; }
}

/* Tablet: vibes 3 cols, gallery 3 cols */
@media (min-width: 600px) and (max-width: 768px) {
  .vibes-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item--third { grid-column: span 1; }
}
