/* styles.css */

:root {
  --bg: #050509;
  --bg-alt: #0d0f15;
  --card-bg: #11141c;
  --accent: #f4c85b;
  --accent-soft: rgba(244, 200, 91, 0.14);
  --text: #f5f5f7;
  --muted: #9ca3af;
  --border: #202331;
  --danger: #ef4444;
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
  --transition-fast: 150ms ease-out;
  --transition-med: 220ms ease-out;
  --max-width: 1120px;
  --nav-height: 70px;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background: radial-gradient(circle at top, #141628 0, var(--bg) 55%);
  color: var(--text);
  min-height: 100vh;
}

/* Layout */

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav-shell {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 9, 0.92),
    rgba(5, 5, 9, 0.78),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--nav-height);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #000;
  flex-shrink: 0;
}

.nav-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-title {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-title span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color var(--transition-fast), background var(--transition-fast),
    border-color var(--transition-fast), transform var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.nav-links a.nav-active {
  color: #020617;
  background: var(--accent);
  border-color: var(--accent);
  font-weight: 600;
}

/* Page shell */

.page-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 20px 64px;
  flex: 1;
}

/* Home hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 28px;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 40px;
}

.hero-text-eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.hero-meta {
  color: var(--muted);
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}

.hero-meta strong {
  color: var(--text);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-med), transform var(--transition-fast),
    box-shadow var(--transition-fast), border-color var(--transition-fast),
    color var(--transition-fast);
}

.btn-primary {
  background: var(--accent);
  color: #020617;
  box-shadow: 0 14px 30px rgba(244, 200, 91, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(244, 200, 91, 0.52);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.7);
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.5);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.95);
  transform: translateY(-1px);
}

.hero-footnote {
  font-size: 13px;
  color: var(--muted);
}

/* Hero field map */

.hero-map-card {
  background: radial-gradient(circle at top, #20253b, var(--bg-alt));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 14px 16px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-map-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
}

.hero-map-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-map-img {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
}

.hero-map-img img {
  display: block;
  width: 100%;
  height: auto;
}

/* Events section */

.section {
  margin-bottom: 46px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
}

.section-subtitle {
  font-size: 13px;
  color: var(--muted);
}

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

.event-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 10px 10px 14px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med),
    border-color var(--transition-med);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(244, 200, 91, 0.5);
}

.event-card-img {
  border-radius: 14px;
  overflow: hidden;
  height: 180px;
  background: #020617;
  position: relative;
}

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.event-card-logo-overlay {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(0,0,0,0.5);
  padding: 3px;
  backdrop-filter: blur(4px);
}

.event-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.event-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: -56px;
}

.event-card-logo-inline {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.event-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.event-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.event-date {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 2px;
}

.event-meta {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Location/date row */

.event-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  color: var(--muted);
}

/* Photo Slideshow */

.slideshow {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: #020617;
}

.slideshow-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slideshow-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slideshow-slide.active {
  opacity: 1;
}

.slideshow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideshow-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.slideshow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.slideshow-dot.active {
  background: #fff;
}

.slideshow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.slideshow-arrow:hover {
  background: rgba(0, 0, 0, 0.75);
}

.slideshow-arrow-left {
  left: 12px;
}

.slideshow-arrow-right {
  right: 12px;
}

/* Join the club */

.join-card {
  background: radial-gradient(circle at top left, var(--accent-soft), var(--bg-alt));
  border-radius: var(--radius-lg);
  padding: 20px 18px 20px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(0, 1.6fr);
  gap: 16px;
  align-items: center;
}

.join-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.join-text {
  font-size: 14px;
  color: var(--muted);
}

.join-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.join-input {
  flex: 1;
  min-width: 160px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.85);
  color: var(--text);
  font-size: 14px;
}

.join-input::placeholder {
  color: #6b7280;
}

.join-success {
  margin-top: 6px;
  font-size: 12px;
  color: #4ade80;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  padding: 18px 20px 26px;
  background: linear-gradient(to top, #020617, #020617, transparent);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-app-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 14px 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s, background-color 0.2s;
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(15, 23, 42, 0.95);
}

.store-badge::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.store-badge-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.store-badge-kicker {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.82);
}

.store-badge-label {
  font-size: 15px;
  font-weight: 700;
}

.store-badge-ios::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512' fill='white'%3E%3Cpath d='M318.7 268.7c-.2-36.7 16.3-64.4 49.8-84.8-18.7-26.8-47-41.6-84.5-44.5-35.4-2.8-74.1 20.6-88.3 20.6-15.1 0-49.3-19.6-76.3-19.6C64.7 140.4 0 191.8 0 299.3c0 31.8 5.8 64.6 17.4 98.4 15.5 44.7 71.3 154.3 129.5 152.5 30.4-.7 51.9-21.6 91.5-21.6 38.4 0 58.3 21.6 92.2 21.6 58.7-.8 109.2-100.5 123.9-145.3-58.9-27.7-70.3-112.5-70.8-136.2zM260.8 100.3c27.2-32.2 24.7-61.5 23.9-72.1-24 .9-51.8 16.4-67.6 34.8-17.4 19.9-27.7 44.4-25.5 71.8 26.1 2 49.7-11.2 69.2-34.5z'/%3E%3C/svg%3E");
}

.store-badge-android::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%2300d26a' d='M325.3 234.3L104.6 13.6c-8.7-8.7-22.8-8.7-31.5 0L256 196.5l69.3-69.3z'/%3E%3Cpath fill='%23ffd400' d='M73.1 498.4c8.7 8.7 22.8 8.7 31.5 0l220.7-220.7L256 208.5 73.1 391.4c-8.7 8.7-8.7 22.8 0 31.5z'/%3E%3Cpath fill='%2300a6ff' d='M498.4 256L381.7 139.3 291.3 229.7l90.4 90.4L498.4 256c8.7-8.7 8.7-22.8 0-31.4z'/%3E%3Cpath fill='%23ff4f5e' d='M381.7 372.7L291.3 282.3l-35.3 35.3L73.1 500.4c8.7 8.7 22.8 8.7 31.5 0l277.1-127.7z'/%3E%3C/svg%3E");
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0;
  color: #fff;
  transition: opacity 0.2s, transform 0.2s;
  background-size: 20px 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.social-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.social-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z'/%3E%3C/svg%3E"), linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  background-size: 18px 18px, 100% 100%;
  background-position: center, center;
}

.social-facebook {
  background-color: #1877F2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
}

.social-youtube {
  background-color: #FF0000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 00-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 00.502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 002.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 002.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E");
}

.social-twitter {
  background-color: #000;
  border: 1px solid rgba(255,255,255,0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
}

@media (max-width: 700px) {
  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .footer-links,
  .footer-socials,
  .footer-app-links {
    justify-content: center;
  }
}

/* Generic page headers */

.page-header {
  margin: 16px 0 24px;
}

.page-kicker {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 6px;
}

.page-title {
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.page-lead {
  font-size: 14px;
  color: var(--muted);
}

.results-header-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.results-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Gender toggle (Boys / Girls / All) */
.gender-toggle {
  display: flex;
  gap: 8px;
}

.gender-toggle-btn {
  padding: 7px 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.gender-toggle-btn.active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* Event hero pages */

.event-hero {
  display: grid;
  grid-template-columns: minmax(0, 2.5fr) minmax(0, 2fr);
  gap: 24px;
  align-items: center;
}

.event-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #020617;
}

.event-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

.event-hero-meta {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

/* Contact page */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 24px;
  align-items: start;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--accent-soft);
}

.contact-info-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
}

.contact-info-value:hover {
  text-decoration: underline;
}

.contact-info-text {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.contact-social-links {
  display: flex;
  gap: 12px;
}

.contact-social-links a {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
}

.contact-social-links a:hover {
  text-decoration: underline;
}

.contact-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 24px 22px 26px;
  box-shadow: var(--shadow-soft);
}

.contact-card-title {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 16px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field-label {
  font-size: 13px;
  color: var(--muted);
}

.field-input,
.field-textarea {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 10px 12px;
  background: rgba(15, 23, 42, 0.95);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
}

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

.field-textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-success {
  margin-top: 6px;
  font-size: 13px;
  color: #4ade80;
}

.contact-error {
  margin-top: 6px;
  font-size: 13px;
  color: #fca5a5;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .btn:disabled {
  cursor: wait;
  opacity: 0.65;
}

/* News list */

.news-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
  max-width: 800px;
}

.news-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  transition: transform var(--transition-med), box-shadow var(--transition-med),
    border-color var(--transition-med);
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(244, 200, 91, 0.5);
}

.news-card-link {
  color: inherit;
  text-decoration: none;
}

.news-card-img {
  width: 220px;
  min-height: 140px;
  flex-shrink: 0;
  background: #020617;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

.news-card-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.news-card-snippet {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.news-card-meta {
  color: rgba(156, 163, 175, 0.72);
  font-size: 12px;
}

.news-card-read {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 4px;
  text-transform: uppercase;
}

/* Editorial articles */

.article-page {
  padding-top: 118px;
}

.news-article {
  margin: 0 auto;
  max-width: 980px;
}

.article-back {
  color: var(--accent);
  display: inline-block;
  font-size: 13px;
  margin-bottom: 28px;
  text-decoration: none;
}

.article-header {
  max-width: 850px;
}

.article-header h1 {
  font-size: clamp(34px, 6vw, 64px);
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 12px 0 20px;
}

.article-deck {
  color: #d1d5db;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  margin: 0 0 16px;
  max-width: 760px;
}

.article-byline {
  color: var(--muted);
  font-size: 13px;
}

.article-hero {
  aspect-ratio: 16 / 8.5;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin: 34px 0 42px;
  overflow: hidden;
}

.article-hero img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.article-body {
  color: #d1d5db;
  font-size: 17px;
  line-height: 1.85;
  margin: 0 auto;
  max-width: 700px;
}

.article-body p {
  margin: 0 0 24px;
}

.article-footer,
.partner-cta,
.program-interest {
  align-items: center;
  background: radial-gradient(circle at top left, rgba(244, 200, 91, 0.12), var(--card-bg));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 54px;
  padding: 28px;
}

.article-footer h2,
.partner-cta h2,
.program-interest h2 {
  margin: 6px 0 0;
}

/* Partners */

.partner-section {
  margin-top: 34px;
}

.section-heading-row {
  align-items: flex-end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 22px;
}

.partner-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partner-logo {
  align-items: center;
  aspect-ratio: 4 / 3;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  display: flex;
  justify-content: center;
  padding: 22px;
}

.partner-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.partner-cta p,
.program-interest p,
.program-details p {
  color: var(--muted);
  line-height: 1.7;
  margin: 8px 0 0;
  max-width: 680px;
}

/* Soccer program */

.program-hero {
  align-items: center;
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  min-height: 520px;
}

.program-hero-copy .page-title {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  margin-bottom: 20px;
}

.program-hero-image {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.program-hero-image::after {
  background: linear-gradient(120deg, transparent 50%, rgba(244, 200, 91, 0.2));
  content: "";
  inset: 0;
  position: absolute;
}

.program-hero-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.program-details {
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  margin-top: 60px;
}

.program-feature-list {
  border-top: 1px solid var(--border);
}

.program-feature-list > div {
  align-items: baseline;
  border-bottom: 1px solid var(--border);
  display: grid;
  gap: 20px;
  grid-template-columns: 140px 1fr;
  padding: 17px 0;
}

.program-feature-list strong {
  color: var(--accent);
}

.program-feature-list span,
.program-contact a {
  color: var(--muted);
  font-size: 14px;
}

.program-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.program-contact a:hover {
  color: var(--accent);
}

.news-thumb {
  height: 180px;
  background: #020617;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-body {
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.news-title {
  font-size: 16px;
  font-weight: 600;
}

.news-meta {
  font-size: 12px;
  color: var(--muted);
}

.news-excerpt {
  font-size: 13px;
  color: var(--muted);
}

/* Upcoming event card (home hero right side) */

.upcoming-card {
  background: radial-gradient(circle at top, #20253b, var(--bg-alt));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 22px 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.upcoming-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--upcoming-accent, var(--accent)), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.upcoming-card-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.upcoming-card-logo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

.upcoming-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upcoming-card-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.upcoming-card-meta {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 4px 0;
}

.countdown-number {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--upcoming-accent, var(--accent)), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/* Event hero banner — photo bg + logo + text overlay */

.event-hero-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  background: #020617;
}

.event-hero-bg {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  opacity: 0.5;
}

.event-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding: 28px 28px;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.6) 50%, transparent 100%);
}

.event-hero-logo {
  width: 110px;
  height: 110px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: #000;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.event-hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-hero-info {
  flex: 1;
  min-width: 0;
}

.hero-simple-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.hero-simple-subtext {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 14px;
}

/* Previous results */

.prev-results-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.prev-result-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.prev-result-btn:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

/* Event info card (shared on event pages) */

.event-info-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 20px 18px 22px;
  box-shadow: var(--shadow-soft);
}

.event-info-title {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 14px;
}

.event-info-grid {
  display: grid;
  gap: 10px;
}

.event-info-row {
  display: flex;
  gap: 10px;
  font-size: 14px;
  align-items: center;
}

.info-label {
  color: var(--muted);
  min-width: 90px;
  flex-shrink: 0;
}

/* Field map card */

.fieldmap-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.fieldmap-img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: var(--radius-md);
  display: block;
  margin-top: 12px;
}

/* Data section wrapper (teams, schedule, standings on event pages) */

.data-section {
  margin-top: 12px;
}

.data-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.data-section-title {
  font-size: 18px;
  font-weight: 600;
}

.data-section-count {
  font-size: 13px;
  color: var(--muted);
}

/* Filter bar */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.filter-bar select,
.filter-bar input {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.85);
  color: var(--text);
  font-size: 13px;
  min-width: 180px;
}

.filter-bar label {
  font-size: 13px;
  color: var(--muted);
}

/* View toggle buttons */

.view-toggle {
  display: flex;
  gap: 6px;
}

.view-toggle .btn {
  padding: 7px 14px;
  font-size: 13px;
}

/* Teams grid */

.teams-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.team-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color var(--transition-fast);
}

.team-card:hover {
  border-color: rgba(148, 163, 184, 0.4);
}

.team-card a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.team-stats {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.team-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: #020617;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.team-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  min-width: 0;
}

.team-name {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-club {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-age {
  font-size: 11px;
  color: var(--muted);
}

/* Standings & Schedule tables */

.standings-group-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin: 16px 0 8px;
}

.standings-group-title:first-child {
  margin-top: 0;
}

.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.standings-table th {
  text-align: left;
  padding: 8px 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.standings-table td {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  white-space: nowrap;
}

.standings-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.standings-table td:first-child {
  color: var(--muted);
  font-weight: 600;
}

/* Score highlight in schedule */
.score-final {
  font-weight: 600;
  color: var(--accent);
}

/* Empty / loading / error states */

.data-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  font-size: 14px;
}

.data-loading {
  text-align: center;
  padding: 30px 20px;
  color: var(--muted);
  font-size: 14px;
}

/* Small button variant */

.btn-sm {
  padding: 6px 14px;
  font-size: 13px;
}

/* Event nav links (above field map) */

.event-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.event-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.event-nav-link:hover {
  background: rgba(255,255,255,0.22);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.event-nav-link.disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

/* Club cards (larger, with stats) */

.club-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.club-card:hover {
  border-color: rgba(148, 163, 184, 0.4);
  transform: translateY(-2px);
}

.club-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: #020617;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.club-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.club-info {
  flex: 1;
  min-width: 0;
}

.club-name {
  font-size: 15px;
  font-weight: 600;
}

.club-meta {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.club-stats {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.clubs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

/* Clubs logo wall (event page) */

.clubs-wall-section {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  margin-top: 8px;
}

.clubs-wall-section[data-theme="winter-fest"] {
  background: linear-gradient(135deg, #1a2940, #2C3E50);
}

.clubs-wall-section[data-theme="playmakers-cup"] {
  background: linear-gradient(135deg, #1a1a00, #2a2a00);
}

.clubs-wall-section[data-theme="summer-championship"] {
  background: linear-gradient(135deg, #2d1008, #3D1308);
}

.clubs-wall-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 28px;
}

.clubs-wall-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.clubs-wall-logo {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.clubs-wall-logo:hover {
  transform: scale(1.08);
  background: rgba(255,255,255,0.15);
}

.clubs-wall-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

/* Team detail header */

.team-detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.team-detail-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  background: #020617;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.team-detail-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-detail-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-detail-meta {
  font-size: 14px;
  color: var(--muted);
}

/* Record box */

.record-box {
  display: inline-flex;
  gap: 20px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  border: 1px solid rgba(244, 200, 91, 0.2);
  margin-bottom: 20px;
}

.record-stat {
  text-align: center;
}

.record-stat-value {
  font-size: 22px;
  font-weight: 700;
}

.record-stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Match cards */

.match-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}

.match-team {
  display: flex;
  align-items: center;
  gap: 10px;
}

.match-team-away {
  flex-direction: row-reverse;
  text-align: right;
}

.match-team-name {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.match-team-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  background: #020617;
  flex-shrink: 0;
}

.match-team-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.match-center {
  text-align: center;
  min-width: 60px;
}

.match-score {
  font-size: 18px;
  font-weight: 700;
}

.match-time {
  font-size: 11px;
  color: var(--muted);
}

.match-meta {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
}

.matches-list {
  display: grid;
  gap: 8px;
}

/* Back link */

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 16px;
}

.back-link:hover {
  color: var(--text);
}

/* Rules page */

.rules-content {
  max-width: 780px;
}

.rules-header {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 20px;
  text-align: center;
}

.rules-section-header {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin: 24px 0 8px;
}

.rules-sub-header {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin: 16px 0 6px;
}

.rules-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 8px;
}

.rules-italic {
  font-size: 13px;
  font-style: italic;
  color: rgba(156, 163, 175, 0.7);
  margin: 0 0 8px;
}

.rules-list-item {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  padding-left: 16px;
  margin: 0 0 4px;
}

.rules-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 10px 0 16px;
}

.rules-table th {
  text-align: left;
  padding: 6px 10px;
  border-bottom: 1px solid var(--border);
  color: var(--accent);
  font-weight: 600;
}

.rules-table td {
  padding: 6px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Utilities */

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.85);
  font-size: 11px;
  color: var(--muted);
}

/* Responsive */

@media (max-width: 900px) {
  .hero,
  .event-hero,
  .join-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    gap: 22px;
  }

  .events-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .news-card {
    flex-direction: column;
  }

  .news-card-img {
    width: 100%;
    height: 180px;
  }

  .nav-inner {
    flex-direction: column;
    height: auto;
    padding: 10px 16px;
    gap: 8px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .nav-links a {
    white-space: nowrap;
    padding: 6px 10px;
    font-size: 13px;
  }

  .page-shell {
    padding-top: 110px;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .teams-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .standings-table {
    font-size: 12px;
  }

  .standings-table th,
  .standings-table td {
    padding: 6px 6px;
  }

  .data-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-bar select,
  .filter-bar input {
    min-width: 0;
    width: 100%;
  }

  .event-hero-bg {
    height: 280px;
  }

  .event-hero-overlay {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
  }

  .event-hero-logo {
    width: 70px;
    height: 70px;
  }

  .hero-simple-title {
    font-size: 22px;
  }

  .hero-simple-subtext {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .event-hero-info .hero-buttons {
    gap: 8px;
  }

  .event-hero-info .btn {
    font-size: 13px;
    padding: 8px 14px;
  }

  .event-nav-link {
    padding: 8px 12px;
    font-size: 11px;
  }

  .clubs-wall-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .clubs-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .program-hero,
  .program-details {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .page-shell {
    padding-inline: 16px;
  }

  .hero-title {
    font-size: 28px;
  }

  .join-card {
    padding: 16px 14px;
  }

  .contact-card {
    padding-inline: 14px;
  }

  .article-footer,
  .partner-cta,
  .program-interest,
  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .partner-logo {
    padding: 14px;
  }

  .program-feature-list > div {
    gap: 4px;
    grid-template-columns: 1fr;
  }
}

/* 2026 image-led tournament redesign */

.home-main,
.event-page-shell {
  flex: 1;
  overflow: hidden;
}

.home-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: calc(100svh - var(--nav-height));
  margin: 0;
  padding: clamp(36px, 7vw, 96px) max(20px, calc((100vw - var(--max-width)) / 2));
  isolation: isolate;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  transition: transform 160ms linear;
}

.home-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(1, 4, 11, 0.93) 0%, rgba(1, 4, 11, 0.62) 46%, rgba(1, 4, 11, 0.08) 78%),
    linear-gradient(0deg, rgba(1, 4, 11, 0.92) 0%, transparent 45%);
}

.home-hero .hero-title {
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.22);
}

.home-hero-title-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.event-hero-kicker,
.event-section-kicker {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.home-hero .hero-title {
  max-width: 780px;
  margin: 14px 0 18px;
  font-size: clamp(48px, 8.4vw, 112px);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.88;
  text-transform: uppercase;
}

.home-hero .hero-meta {
  display: flex;
  flex-flow: row wrap;
  gap: 10px 24px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
}

.home-hero .hero-footnote {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.home-events-section,
.home-join-section,
.event-page-content {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
}

.home-events-section {
  padding-top: 88px;
}

.home-events-section .section-header {
  margin-bottom: 34px;
}

.home-events-section .section-title {
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 780;
  letter-spacing: -0.035em;
}

.home-events-section .section-subtitle {
  margin-top: 10px;
  font-size: 15px;
}

.home-events-section .events-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.home-events-section .event-story {
  position: relative;
  min-height: 520px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #050509;
  color: var(--text);
  text-decoration: none;
  opacity: 1;
  transform: none;
  transition: transform 520ms ease;
}

.home-events-section .event-story:first-child {
  grid-row: span 2;
  min-height: 760px;
}

.home-events-section .event-story.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-events-section .event-card-img {
  position: absolute;
  inset: 0;
  height: auto;
  border-radius: 0;
}

.home-events-section .event-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.04) 70%);
}

.home-events-section .event-card-bg {
  transition: transform 650ms cubic-bezier(.2,.8,.2,1), filter 650ms ease;
}

.home-events-section .event-story:hover .event-card-bg {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.home-events-section .event-story-summer-championship .event-card-bg,
.home-events-section .event-story-summer-championship:hover .event-card-bg {
  filter: grayscale(1) contrast(1.06);
}

.home-events-section .event-card-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  align-items: flex-start;
  padding: clamp(24px, 4vw, 44px);
  text-align: left;
}

.home-events-section .event-name {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
}

.home-events-section .event-card-text {
  margin-top: 12px;
}

.home-events-section .event-date {
  color: #fff;
  font-size: 14px;
}

.home-events-section .event-row,
.home-events-section .event-meta {
  color: rgba(255, 255, 255, 0.68);
}

.event-story-arrow {
  margin-top: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform var(--transition-med);
}

.event-story:hover .event-story-arrow {
  transform: translateX(5px);
}

.home-join-section {
  margin-top: 92px;
  margin-bottom: 80px;
}

.event-hero-banner {
  min-height: calc(100svh - var(--nav-height));
  margin: 0;
  border-radius: 0;
}

.event-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  object-position: center;
}

.event-hero-overlay {
  align-items: flex-end;
  padding: clamp(38px, 7vw, 90px) max(20px, calc((100vw - var(--max-width)) / 2));
  background:
    linear-gradient(90deg, rgba(1, 4, 11, 0.92) 0%, rgba(1, 4, 11, 0.48) 48%, transparent 80%),
    linear-gradient(0deg, rgba(1, 4, 11, 0.93), transparent 66%);
}

.event-hero-info {
  max-width: 850px;
  opacity: 1;
  transform: none;
}

.event-ready .event-hero-info {
  opacity: 1;
  transform: translateY(0);
}

.event-hero-kicker {
  margin-bottom: 16px;
}

.event-page-shell .hero-simple-title {
  max-width: 900px;
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.event-page-shell .hero-simple-subtext {
  max-width: 720px;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(15px, 2vw, 19px);
}

.event-page-shell .event-nav {
  gap: 10px;
  margin-top: 12px;
}

.event-page-shell .event-nav-link {
  border-radius: 999px;
  background: rgba(4, 8, 17, 0.62);
}

.event-page-shell .event-nav-link:first-child {
  background: var(--accent);
  border-color: var(--accent);
  color: #050509;
}

.event-page-content {
  padding-top: 82px;
}

.event-details-rail {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  padding: 0 0 54px;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.event-info-intro .event-info-title {
  margin-top: 12px;
  font-size: clamp(30px, 5vw, 52px);
  letter-spacing: -0.035em;
}

.event-info-grid {
  gap: 0;
}

.event-info-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px;
}

.event-info-row:first-child {
  padding-top: 0;
}

.event-page-shell .fieldmap-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.event-page-shell .fieldmap-card .section-title {
  margin-bottom: 22px;
  font-size: clamp(28px, 4vw, 46px);
}

.event-page-shell .fieldmap-img {
  max-height: 720px;
  border-radius: 0;
}

@media (max-width: 760px) {
  .home-hero {
    min-height: calc(100svh - var(--nav-height));
    padding-bottom: 44px;
  }

  .home-hero-shade {
    background: linear-gradient(0deg, rgba(1, 4, 11, 0.97) 0%, rgba(1, 4, 11, 0.48) 70%, rgba(1, 4, 11, 0.18));
  }

  .home-hero .hero-title,
  .event-page-shell .hero-simple-title {
    font-size: clamp(44px, 14vw, 70px);
  }

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

  .home-events-section .event-story,
  .home-events-section .event-story:first-child {
    grid-row: auto;
    min-height: 500px;
  }

  .event-hero-banner {
    min-height: 720px;
  }

  .event-hero-overlay {
    align-items: flex-end;
  }

  .event-details-rail {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .event-info-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .event-hero-info,
  .home-events-section .event-story {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .home-hero-media,
  .home-events-section .event-card-bg {
    transform: none !important;
    transition: none;
  }
}

/* Surf-inspired editorial direction */

.nav-shell {
  background: rgba(3, 4, 7, 0.97);
  border-bottom-color: rgba(244, 200, 91, 0.18);
  backdrop-filter: blur(18px);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.76);
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav-links a.nav-active {
  background: transparent;
  border-color: rgba(244, 200, 91, 0.5);
  color: var(--accent);
}

.nav-wordmark {
  gap: 8px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-wordmark .nav-logo-img {
  width: 46px;
  height: 46px;
  margin-right: 3px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #030407;
}

.nav-wordmark .nav-logo-img img {
  transform: scale(1.13);
}

.nav-wordmark-playmaker {
  color: var(--accent);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.055em;
}

.nav-wordmark-sports {
  color: #fff;
  font-size: 20px;
  font-weight: 720;
  letter-spacing: 0.055em;
}

.store-badge-official {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.store-badge-official::before {
  display: none;
}

.store-badge-official:hover {
  border-color: transparent;
  background: transparent;
  opacity: 0.88;
}

.store-badge-official img {
  display: block;
  width: auto;
  height: 40px;
}

.store-badge-official.store-badge-android img {
  height: 58px;
  margin: -9px -12px;
}

.home-hero-media-stack {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.home-hero-media-stack .home-hero-media {
  z-index: auto;
  opacity: 0;
  transition: opacity 1100ms ease, transform 160ms linear;
}

.home-hero-media-stack .home-hero-media.is-active {
  opacity: 1;
}

.home-hero-pagination {
  position: absolute;
  right: max(20px, calc((100vw - var(--max-width)) / 2));
  bottom: 28px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.home-hero-pagination button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 220ms ease, background-color 220ms ease;
}

.home-hero-pagination button.is-active {
  width: 52px;
  background: var(--accent);
}

.event-countdown {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: -8px 0 22px;
  color: #fff;
}

.event-countdown[hidden] {
  display: none;
}

.event-countdown strong {
  color: var(--accent);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1;
}

.event-countdown span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.event-info-identity {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 0 34px;
}

.event-page-shell .event-info-logo {
  display: block;
  width: 132px;
  height: 132px;
  flex: 0 0 132px;
  object-fit: cover;
  border: 1px solid rgba(7, 22, 41, 0.1);
  border-radius: 24px;
  background: #000;
  box-shadow: 0 18px 42px rgba(7, 22, 41, 0.16);
}

.event-info-identity .event-countdown {
  margin: 0;
  color: #071629;
}

@media (max-width: 760px) {
  .nav-wordmark .nav-logo-img {
    width: 40px;
    height: 40px;
  }

  .nav-wordmark-playmaker,
  .nav-wordmark-sports {
    font-size: 17px;
  }

  .event-info-identity {
    gap: 20px;
    margin-bottom: 28px;
  }

  .event-page-shell .event-info-logo {
    width: 104px;
    height: 104px;
    flex-basis: 104px;
    border-radius: 19px;
  }
}

.home-main {
  background: #f2f0ea;
  color: #071629;
}

.home-hero {
  height: clamp(600px, 80svh, 900px);
  min-height: 0;
}

.home-hero-shade {
  background: linear-gradient(0deg, rgba(3, 14, 28, 0.5) 0%, rgba(3, 14, 28, 0.08) 42%, transparent 68%);
}

@media (max-width: 760px) {
  .home-hero {
    height: clamp(480px, 68svh, 650px);
    min-height: 0;
  }
}

.home-positioning {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(50px, 9vw, 140px);
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
  padding: clamp(92px, 12vw, 160px) 0;
}

.home-light-kicker {
  margin-bottom: 18px;
  color: #96731e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.home-positioning h2,
.home-experience h2 {
  margin: 0;
  color: #071629;
  font-size: clamp(44px, 6.2vw, 78px);
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-transform: uppercase;
}

.home-positioning-detail {
  align-self: end;
  padding-bottom: 6px;
}

.home-positioning-detail p {
  margin: 0 0 28px;
  color: #465365;
  font-size: 18px;
  line-height: 1.65;
}

.home-upcoming-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  color: #071629;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-upcoming-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.home-upcoming-actions .btn-primary {
  color: #050509;
}

.text-link {
  color: #071629;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  display: inline-block;
  margin-left: 7px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(6px);
}

.home-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  min-height: 720px;
  background: #fff;
}

.home-experience-media {
  min-height: 620px;
  overflow: hidden;
}

.home-experience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(.2,.8,.2,1);
}

.home-experience:hover .home-experience-media img {
  transform: scale(1.025);
}

.home-experience-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 110px);
}

.home-experience h2 {
  max-width: 620px;
  font-size: clamp(38px, 5vw, 68px);
}

.home-experience-points {
  margin-top: 54px;
  border-top: 1px solid #d9d9d3;
}

.home-experience-points > div {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid #d9d9d3;
}

.home-experience-points strong {
  color: #071629;
  font-size: 13px;
  text-transform: uppercase;
}

.home-experience-points span {
  color: #667080;
  font-size: 14px;
  line-height: 1.5;
}

.home-events-section {
  padding-top: clamp(90px, 11vw, 150px);
}

.home-events-section .section-title {
  color: #071629;
  font-size: clamp(42px, 6vw, 76px);
  text-transform: uppercase;
}

.home-events-section .section-subtitle {
  color: #667080;
}

.home-events-section .events-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(7, 22, 41, 0.13);
}

.home-events-section .event-story,
.home-events-section .event-story:first-child {
  grid-row: auto;
  min-height: 0;
  aspect-ratio: 4 / 5;
}

.home-join-section .join-card {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(36px, 7vw, 100px);
  padding: clamp(38px, 5vw, 58px) clamp(34px, 6vw, 76px);
  border: 0;
  border-radius: 0;
  background: #071629;
  box-shadow: none;
}

.home-join-section .join-kicker {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.home-join-section .join-title {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 820;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.home-join-section .join-text {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

.home-join-section .join-action {
  align-self: center;
}

.home-join-section .btn-primary {
  padding: 13px 24px;
  font-weight: 800;
  box-shadow: none;
}

.home-join-section .btn-primary:hover {
  box-shadow: none;
}

.event-page-content {
  width: 100%;
  max-width: none;
  padding: 0;
  background: #f2f0ea;
  color: #071629;
}

.event-details-section {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
  padding: clamp(90px, 11vw, 150px) 0;
}

.event-details-rail {
  border-bottom-color: rgba(7, 22, 41, 0.18);
}

.event-info-intro .event-info-title,
.event-info-row,
.event-info-row span:last-child {
  color: #071629;
}

.event-info-row {
  border-bottom-color: rgba(7, 22, 41, 0.13);
}

.event-info-row .info-label {
  color: #667080;
}

.event-page-content #field-map {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
  padding-bottom: 110px;
}

.event-page-shell .fieldmap-card .section-title {
  color: #071629;
}

@media (max-width: 760px) {
  .home-positioning,
  .home-experience {
    grid-template-columns: 1fr;
  }

  .home-positioning {
    gap: 34px;
  }

  .home-positioning-detail {
    max-width: 560px;
  }

  .home-experience-media {
    min-height: 470px;
  }

  .home-experience-copy {
    padding: 54px 20px 70px;
  }

  .home-experience-points > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

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

  .home-events-section .event-story,
  .home-events-section .event-story:first-child {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .home-join-section .join-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 28px;
  }

  .home-join-section .join-action {
    justify-self: start;
  }
}

