/* ============================================================
   MYCOMPANYNAME TOURNAMENTS — style.css
   Fonts: Russo One (headings) + Chakra Petch (body/UI)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Russo+One&family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ============================================================
   COLOR SCHEMES — 3 Variants
   Only one active at a time. Comment/uncomment as needed.
   ============================================================ */

/* --- SCHEME 1: Dark Thunder — Black + Gold + Orange (DEFAULT) --- */
/* :root {
  --primary-color:   #FFD700;
  --primary-tint:    rgba(255, 215, 0, 0.13);
  --primary-glow:    rgba(255, 215, 0, 0.35);
  --on-primary:      #0A0A0A;
  --secondary-color: #FF6B35;
  --secondary-tint:  rgba(255, 107, 53, 0.13);
  --on-secondary:    #FFFFFF;
  --font-heading:    'Russo One', sans-serif;
  --font-body:       'Chakra Petch', sans-serif;
} */

/* --- SCHEME 2: Midnight Neon — Cyan + Gold --- UNCOMMENT TO USE */
:root {
  --primary-color:   #00D4FF;
  --primary-tint:    rgba(0, 212, 255, 0.13);
  --primary-glow:    rgba(0, 212, 255, 0.35);
  --on-primary:      #0A0A0A;
  --secondary-color: #FFD700;
  --secondary-tint:  rgba(255, 215, 0, 0.13);
  --on-secondary:    #0A0A0A;
  --font-heading:    'Russo One', sans-serif;
  --font-body:       'Chakra Petch', sans-serif;
}


/* --- SCHEME 3: Fire Storm — Red + Gold --- UNCOMMENT TO USE */
/* :root {
  --primary-color:   #FF2D20;
  --primary-tint:    rgba(255, 45, 32, 0.13);
  --primary-glow:    rgba(255, 45, 32, 0.35);
  --on-primary:      #FFFFFF;
  --secondary-color: #FFD700;
  --secondary-tint:  rgba(255, 215, 0, 0.13);
  --on-secondary:    #0A0A0A;
  --font-heading:    'Russo One', sans-serif;
  --font-body:       'Chakra Petch', sans-serif;
} */


/* ============================================================
   DARK MODE (default)
   ============================================================ */
:root,
[data-theme="dark"] {
  --bg:          #0A0A0A;
  --bg-2:        #111111;
  --bg-3:        #181818;
  --surface:     #1C1C1C;
  --surface-2:   #242424;
  --text:        #FFFFFF;
  --text-muted:  #888888;
  --text-sub:    #BBBBBB;
  --border:      rgba(255,255,255,0.07);
  --border-s:    rgba(255,255,255,0.15);
  --card-bg:     #1C1C1C;
  --nav-bg:      rgba(10,10,10,0.95);
  --shadow:      0 8px 40px rgba(0,0,0,0.55);
  --hex-bg:      #1E1E1E;
  --hex-text:    #FFFFFF;
}

/* ============================================================
   LIGHT MODE
   ============================================================ */
[data-theme="light"] {
  --bg:          #F9F9F6;
  --bg-2:        #F0F0ED;
  --bg-3:        #E8E8E4;
  --surface:     #FFFFFF;
  --surface-2:   #F5F5F2;
  --text:        #0A0A0A;
  --text-muted:  #555555;
  --text-sub:    #333333;
  --border:      rgba(0,0,0,0.07);
  --border-s:    rgba(0,0,0,0.15);
  --card-bg:     #FFFFFF;
  --nav-bg:      rgba(249,249,246,0.95);
  --shadow:      0 8px 32px rgba(0,0,0,0.09);
  --hex-bg:      #EAEAE6;
  --hex-text:    #0A0A0A;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--font-body); }
input,textarea,select { font-family: var(--font-body); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 3px; }
:focus-visible { outline: 2px solid var(--primary-color); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.12; }
.bg-dark { background: var(--bg); }
.text-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-color);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.8vw, 2.7rem);
  color: var(--text);
  margin-top: 6px;
}
.section-desc {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 520px;
  margin-top: 10px;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: var(--on-primary);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  padding: 13px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.13);
  transform: translateX(-105%);
  transition: transform 0.3s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--primary-glow); }
.btn-primary:hover::after { transform: translateX(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  padding: 11px 26px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-outline:hover { background: var(--primary-color); color: var(--on-primary); transform: translateY(-2px); box-shadow: 0 8px 28px var(--primary-glow); }

/* Status badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.badge-live   { background: #FF2020; color: #fff; }
.badge-open   { background: rgba(34,197,94,0.14); color: #22C55E; border: 1px solid #22C55E; }
.badge-upcoming { background: var(--primary-tint); color: var(--primary-color); border: 1px solid var(--primary-color); }
.badge-completed { background: rgba(136,136,136,0.12); color: var(--text-muted); border: 1px solid var(--border-s); }

.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: pulse 1.4s infinite; }
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.6); }
}

/* Hex tile background pattern */
.hex-bg-pattern {
  /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V18L28 2l28 16v32L28 66zM28 98L0 82V50l28-16 28 16v32z' fill='none' stroke='rgba(255,215,0,0.04)' stroke-width='1'/%3E%3C/svg%3E"); */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V18L28 2l28 16v32L28 66zM28 98L0 82V50l28-16 28 16v32z' fill='none' stroke='rgba(0,0,0,0.04)' stroke-width='1'/%3E%3C/svg%3E");

}
[data-theme="light"] .hex-bg-pattern {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V18L28 2l28 16v32L28 66zM28 98L0 82V50l28-16 28 16v32z' fill='none' stroke='rgba(0,0,0,0.04)' stroke-width='1'/%3E%3C/svg%3E");
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
.site-nav.scrolled {
  background: var(--nav-bg);
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  cursor: pointer;
}
.nav-logo img {
  height: 90px;
  transition: all 0.22s ease;
}
.site-nav.scrolled .nav-logo img { height: 50px; }
.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--primary-color);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--on-primary);
  flex-shrink: 0;
}
.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--text);
  white-space: nowrap;
}
.nav-logo-name em { color: var(--primary-color); font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hex-text);
  padding: 6px 11px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary-color); background: var(--primary-tint); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border-s);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.22s ease;
}
.theme-toggle:hover { border-color: var(--primary-color); color: var(--primary-color); transform: rotate(22deg); }

.btn-nav-register {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  background: var(--primary-color);
  color: var(--on-primary);
  padding: 9px 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-nav-register:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 6px 18px var(--primary-glow); }

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

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  color: var(--text);
  padding: 8px 24px;
  transition: color 0.2s;
  cursor: pointer;
}
.mobile-menu a:hover { color: var(--primary-color); }
.mobile-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-s);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.mobile-close:hover { border-color: var(--primary-color); color: var(--primary-color); }
.mobile-menu-footer {
  position: absolute;
  bottom: 28px;
  display: flex; gap: 12px;
}
.mobile-menu-footer a {
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .nav-links { display: none; }
  .btn-nav-register { display: none; }
  .hamburger { display: flex; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section { position: relative; height: 90vh; min-height: 580px; overflow: hidden; }
.hero-slider,
.hero-slide {
  height: 90vh;
  min-height: 580px;
}

.hero-slider .slick-track, .hero-slider .slick-list {
  height: 100%;
}


.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex !important;
  align-items: flex-end;
}
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.2) 55%, rgba(0,0,0,0.0) 100%);
  z-index: 1;
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
  width: 100%;
}
.hero-sport-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary-tint);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5.5vw, 3.8rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero-title span { color: var(--primary-color); }
.hero-tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  font-style: italic;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
}
.hero-meta-item svg { color: var(--primary-color); flex-shrink: 0; }
.hero-prize-box {
  display: inline-block;
  background: var(--primary-tint);
  border: 1px solid rgba(255,215,0,0.35);
  border-radius: 6px;
  padding: 10px 18px;
  margin-bottom: 22px;
}
.hero-prize-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.hero-prize-val { font-family: var(--font-heading); font-size: 1.6rem; color: var(--primary-color); }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Slick slider dots */
.hero-slider .slick-dots { bottom: 24px; }
.hero-slider .slick-dots li button::before { color: rgba(255,255,255,0.35); font-size: 8px; }
.hero-slider .slick-dots li.slick-active button::before { color: var(--primary-color); }
.hero-slider .slick-prev,
.hero-slider .slick-next { display: none !important; }

/* Progress bar */
.hero-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--primary-color);
  z-index: 10;
  transition: width linear;
}

/* ============================================================
   SPORT SELECTOR — HONEYCOMB + PILLS
   ============================================================ */
.sport-filter-section {
  background: var(--bg-2);
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}
.sport-filter-head { text-align: center; margin-bottom: 36px; }

/* Desktop honeycomb */
.honeycomb-wrap {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}
@media (min-width: 768px) {
  .honeycomb-wrap { display: flex; }
  .pills-wrap { display: none; }
}

.hex-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: -20px;
}
.hex-row:first-child { margin-top: 0; }
.hex-row.offset { transform: translateX(55px); }

.hex-cell {
  width: 102px;
  height: 116px;
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  background: var(--hex-bg);
  cursor: pointer;
  transition: background 0.24s, transform 0.22s;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.hex-cell:hover { background: var(--surface-2); transform: scale(1.08); }
.hex-cell.active { background: var(--primary-color); transform: scale(1.11); }
.hex-cell.active .hex-icon,
.hex-cell.active .hex-name { color: var(--on-primary); }

.hex-inner { display: flex; flex-direction: column; align-items: center; gap: 6px; pointer-events: none; }
.hex-icon { color: var(--primary-color); transition: color 0.24s; }
.hex-name {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hex-text);
  text-align: center;
  line-height: 1.25;
  transition: color 0.24s;
}

/* Mobile pills */
.pills-wrap {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.pills-wrap::-webkit-scrollbar { display: none; }
.sport-pill {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--surface);
  border: 1.5px solid var(--border-s);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.sport-pill svg { color: var(--primary-color); flex-shrink: 0; width: 14px; height: 14px; }
.sport-pill:hover,
.sport-pill.active { background: var(--primary-color); color: var(--on-primary); border-color: var(--primary-color); }
.sport-pill.active svg,
.sport-pill:hover svg { color: var(--on-primary); }

/* Filter animation */
.filterable { transition: opacity 0.28s, transform 0.28s; }
.filterable.hidden { opacity: 0; transform: scale(0.95); pointer-events: none; display: none; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--primary-color);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem,4vw,2.8rem);
  color: var(--on-primary);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin-top: 5px;
}

/* ============================================================
   SECTION HEADER HELPER
   ============================================================ */
.sec-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 10px;
}
.see-all {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: gap 0.2s;
}
.see-all:hover { gap: 10px; }

/* ============================================================
   EVENTS GRID
   ============================================================ */
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 576px) { .events-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 992px) { .events-grid { grid-template-columns: repeat(3,1fr); } }

/* Event Card */
.event-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.24s, box-shadow 0.24s, border-color 0.24s;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(0,0,0,0.22), 0 0 0 1.5px var(--primary-color);
  border-color: var(--primary-color);
}
.event-img-wrap {
  position: relative;
  height: 176px;
  overflow: hidden;
}
.event-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.38s ease; }
.event-card:hover .event-img-wrap img { transform: scale(1.06); }
.event-img-badge { position: absolute; top: 12px; left: 12px; }
.event-sport-dot {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex; align-items: center; justify-content: center;
  color: var(--on-primary);
}
.event-body { padding: 16px 18px; flex: 1; display: flex; flex-direction: column; }
.event-title { font-family: var(--font-heading); font-size: 0.96rem; color: var(--text); margin: 8px 0; line-height: 1.3; flex: 1; }
.event-metas { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.event-meta { display: flex; align-items: center; gap: 7px; font-size: 0.76rem; color: var(--text-muted); }
.event-meta svg { color: var(--primary-color); flex-shrink: 0; width: 13px; height: 13px; }
.event-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.event-prize { font-family: var(--font-heading); font-size: 1.05rem; color: var(--primary-color); }
.event-fee { font-size: 0.72rem; color: var(--text-muted); text-align: right; }

/* Countdown */
.event-countdown { display: flex; gap: 8px; margin: 10px 0; }
.cd-unit { background: var(--bg-2); border-radius: 5px; padding: 5px 9px; min-width: 42px; text-align: center; }
.cd-num { font-family: var(--font-heading); font-size: 1.15rem; color: var(--primary-color); display: block; line-height: 1; }
.cd-lbl { font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

/* Live score bar */
.live-bar {
  background: rgba(255,32,32,0.08);
  border: 1px solid rgba(255,32,32,0.22);
  border-radius: 6px;
  padding: 8px 12px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.live-teams { font-family: var(--font-heading); font-size: 0.85rem; display: flex; align-items: center; gap: 8px; }
.live-score-num { font-family: var(--font-heading); font-size: 1rem; color: #FF2020; }
.live-period-txt { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* ============================================================
   FEATURED EVENT (UPCOMING)
   ============================================================ */
.featured-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  cursor: pointer;
  transition: border-color 0.24s, box-shadow 0.24s;
  margin-bottom: 20px;
}
@media (min-width: 768px) { .featured-card { grid-template-columns: 300px 1fr; } }
.featured-card:hover { border-color: var(--primary-color); box-shadow: var(--shadow), 0 0 0 1px var(--primary-color); }
.featured-img { height: 220px; overflow: hidden; }
@media (min-width: 768px) { .featured-img { height: 100%; min-height: 260px; } }
.featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.38s; }
.featured-card:hover .featured-img img { transform: scale(1.04); }
.featured-body {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.featured-title { font-family: var(--font-heading); font-size: clamp(1.1rem,2.4vw,1.65rem); color: var(--text); line-height: 1.2; }
.featured-tagline { font-size: 0.85rem; color: var(--primary-color); font-weight: 600; }
.featured-details { display: flex; flex-wrap: wrap; gap: 16px; }
.feat-detail { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: var(--text-muted); }
.feat-detail svg { color: var(--primary-color); width: 14px; height: 14px; }
.featured-prize { font-family: var(--font-heading); font-size: 1.5rem; color: var(--primary-color); }
.featured-prize small { font-family: var(--font-body); font-size: 0.7rem; color: var(--text-muted); display: block; }
.featured-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }

/* ============================================================
   VIDEOS SECTION
   ============================================================ */
.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 576px) { .videos-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 992px) { .videos-grid { grid-template-columns: repeat(3,1fr); } }

.video-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.24s, box-shadow 0.24s, border-color 0.24s;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-s); }
.vid-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.vid-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.video-card:hover .vid-thumb img { transform: scale(1.05); }
.vid-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.32);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
}
.video-card:hover .vid-overlay { background: rgba(0,0,0,0.5); }
.play-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex; align-items: center; justify-content: center;
  color: var(--on-primary);
  transform: scale(0.9);
  transition: transform 0.24s;
}
.video-card:hover .play-btn { transform: scale(1.05); }
.vid-duration {
  position: absolute;
  bottom: 9px; right: 9px;
  background: rgba(0,0,0,0.78);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
}
.vid-info { padding: 14px 16px; }
.vid-sport { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--primary-color); margin-bottom: 5px; }
.vid-title { font-family: var(--font-heading); font-size: 0.87rem; color: var(--text); line-height: 1.35; margin-bottom: 5px; }
.vid-meta { font-size: 0.7rem; color: var(--text-muted); }

/* ============================================================
   RESULTS SECTION
   ============================================================ */
.results-list { display: flex; flex-direction: column; gap: 10px; }
.result-row {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.22s ease;
}
.result-row:hover { border-color: var(--border-s); transform: translateX(4px); }
.result-icon {
  width: 44px; height: 44px;
  border-radius: 9px;
  background: var(--primary-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
}
.result-info { flex: 1; min-width: 0; }
.result-name { font-family: var(--font-heading); font-size: 0.88rem; color: var(--text); margin-bottom: 3px; line-height: 1.3; }
.result-sub { font-size: 0.72rem; color: var(--text-muted); }
.result-right { text-align: right; flex-shrink: 0; }
.result-winner-lbl { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.result-winner-name { font-family: var(--font-heading); font-size: 0.85rem; color: var(--primary-color); }

/* ============================================================
   HOW TO REGISTER — STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 576px) { .steps-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 992px) { .steps-grid { grid-template-columns: repeat(4,1fr); } }

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 20px 24px;
  text-align: center;
  position: relative;
  transition: all 0.24s ease;
}
.step-card:hover { border-color: var(--primary-color); transform: translateY(-5px); box-shadow: var(--shadow); }
.step-badge {
  position: absolute;
  top: -13px; left: 20px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  background: var(--primary-color);
  color: var(--on-primary);
  padding: 4px 11px;
  border-radius: 2px;
}
.step-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--primary-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-color);
  margin: 18px auto 16px;
  transition: background 0.24s, color 0.24s, transform 0.24s;
}
.step-card:hover .step-icon-wrap { background: var(--primary-color); color: var(--on-primary); transform: scale(1.1) rotate(-8deg); }
.step-title { font-family: var(--font-heading); font-size: 1rem; color: var(--text); margin-bottom: 8px; }
.step-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   SPONSORS MARQUEE
   ============================================================ */
.sponsors-section {
  background: var(--bg-2);
  padding: 44px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.sponsors-lbl { text-align: center; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 28px; }
.marquee-outer { overflow: hidden; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  animation: marqueeScroll 26s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.sponsor-item {
  flex-shrink: 0;
  opacity: 0.42;
  filter: grayscale(100%);
  transition: opacity 0.25s, filter 0.25s;
  cursor: pointer;
}
.sponsor-item:hover { opacity: 1; filter: none; }
.sponsor-item-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.07em;
  color: var(--text);
  white-space: nowrap;
  border: 1.5px solid var(--border-s);
  padding: 10px 20px;
  border-radius: 6px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { background: var(--bg); padding: 80px 0; }
.cta-box {
  position: relative;
  background: var(--primary-color);
  border-radius: 16px;
  padding: 64px 48px;
  text-align: center;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  pointer-events: none;
}
.cta-title { font-family: var(--font-heading); font-size: clamp(1.7rem,4vw,2.8rem); color: var(--on-primary); margin-bottom: 10px; position: relative; z-index: 1; }
.cta-sub { font-size: 0.96rem; color: rgba(0,0,0,0.6); margin-bottom: 28px; position: relative; z-index: 1; }
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--on-primary);
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  letter-spacing: 0.09em;
  padding: 14px 32px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.24s ease;
  position: relative; z-index: 1;
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.22); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--bg-2); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) { .contact-wrap { grid-template-columns: 1fr 1.1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.c-item { display: flex; gap: 14px; align-items: flex-start; }
.c-icon {
  width: 42px; height: 42px;
  border-radius: 9px;
  background: var(--primary-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: background 0.22s, color 0.22s, transform 0.22s;
}
.c-item:hover .c-icon { background: var(--primary-color); color: var(--on-primary); transform: scale(1.08); }
.c-label { font-family: var(--font-heading); font-size: 0.82rem; color: var(--text); margin-bottom: 3px; }
.c-val { font-size: 0.8rem; color: var(--text-muted); }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .form-row-2 { grid-template-columns: 1fr; } }
.field-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 6px; }
.f-input,
.f-select,
.f-textarea {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border-s);
  border-radius: 6px;
  padding: 11px 15px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.f-input:focus,
.f-select:focus,
.f-textarea:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px var(--primary-tint); }
.f-input::placeholder,
.f-textarea::placeholder { color: var(--text-muted); opacity: 0.55; }
.f-select { appearance: none; cursor: pointer; }
.f-textarea { resize: vertical; min-height: 110px; }
.form-msg { font-size: 0.78rem; color: var(--text-muted); }
#form-success { display: none; color: #22C55E; font-size: 0.85rem; font-weight: 600; }

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 48px;
}
@media (min-width: 576px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 992px) { .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1.4fr; } }

.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { display: flex; align-items: center; gap: 9px; }
.footer-logo-icon { width: 32px; height: 32px; background: var(--primary-color); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--on-primary); }
.footer-logo-name { font-family: var(--font-heading); font-size: 0.96rem; color: var(--text); }
.footer-logo-name em { color: var(--primary-color); font-style: normal; }
.footer-tagline { font-size: 0.8rem; color: var(--text-muted); line-height: 1.68; max-width: 248px; }
.footer-socials { display: flex; gap: 8px; }
.soc-btn {
  width: 34px; height: 34px;
  border-radius: 7px;
  border: 1.5px solid var(--border-s);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.22s;
}
.soc-btn:hover { border-color: var(--primary-color); color: var(--primary-color); background: var(--primary-tint); transform: translateY(-2px); }

.footer-col h5 { font-family: var(--font-heading); font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.8rem; color: var(--text-muted); transition: color 0.2s; cursor: pointer; display: flex; align-items: center; gap: 5px; }
.footer-links a:hover { color: var(--primary-color); }

.footer-nl { display: flex; flex-direction: column; gap: 10px; }
.footer-nl p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; }
.nl-form { display: flex; }
.nl-input {
  flex: 1;
  background: var(--surface);
  border: 1.5px solid var(--border-s);
  border-right: none;
  border-radius: 6px 0 0 6px;
  padding: 10px 13px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.8rem;
  outline: none;
  transition: border-color 0.2s;
}
.nl-input:focus { border-color: var(--primary-color); }
.nl-input::placeholder { color: var(--text-muted); opacity: 0.55; }
.nl-btn {
  background: var(--primary-color);
  color: var(--on-primary);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.nl-btn:hover { opacity: 0.85; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 0.73rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 0.73rem; color: var(--text-muted); cursor: pointer; transition: color 0.2s; }
.footer-legal a:hover { color: var(--primary-color); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--on-primary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 18px var(--primary-glow);
}
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 575px) {
  .section-pad { padding: 52px 0; }
  .hero-slide-content { padding-bottom: 60px; }
  .cta-box { padding: 40px 20px; }
  .featured-body { padding: 20px; }
}
