@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&family=Noto+Sans+Devanagari:wght@400;500;600;700;800&display=swap');

/* ===== DESIGN TOKENS — from electric-deer-chase-1oh7.html ===== */
:root {
  --brand: #b5e823;
  --brand-dark: #8fba13;
  --accent-color: #22d3ee;
  --background: #0d0f0c;
  --foreground: #eef2e9;
  --card: #171a15;
  --card-foreground: #eef2e9;
  --border: #2f372c;
  --muted: #232920;
  --muted-foreground: #c8d8c0;
  --primary: #b5e823;
  --destructive: #e5484d;
  --radius: 0.625rem;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glow: 0 0 40px rgba(181,232,35,0.2);
  --glow-shadow: 0 25px 50px rgba(181,232,35,0.12);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5,h6 { font-style: normal !important; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--background); }
::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 3px; }

/* ===== PARTICLES ===== */
.particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%; background: var(--brand); opacity: 0;
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.4; }
  90% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,15,12,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--brand);
  height: 90px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem;
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(13,15,12,0.99); box-shadow: 0 4px 30px rgba(181,232,35,0.06); }
.nav-logo { display: flex; align-items: center; gap: 1rem; opacity: 1; transition: opacity 0.2s; }
.nav-logo:hover { opacity: 0.85; }
.nav-logo img { height: 80px; width: auto; border-radius: calc(var(--radius) - 2px); object-fit: contain; filter: drop-shadow(0 2px 14px rgba(181,232,35,0.28)); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text .brand { font-size: 1.9rem; font-weight: 900; letter-spacing: -0.025em; background: linear-gradient(110deg, #ffffff 30%, #b5e823 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-logo-text .sub { font-size: 0.85rem; font-weight: 600; color: rgba(181,232,35,0.82); text-transform: uppercase; letter-spacing: 0.16em; margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.9375rem; font-weight: 500; color: #fff; transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--brand); }

.nav-cta {
  background: var(--brand) !important;
  color: #000 !important;
  font-weight: 700 !important;
  padding: 10px 24px !important;
  border-radius: calc(var(--radius)) !important;
  transition: all 0.3s !important;
  box-shadow: 0 8px 25px rgba(181,232,35,0.3) !important;
}
.nav-cta:hover { background: var(--brand-dark) !important; transform: scale(1.05); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--foreground); border-radius: 2px; transition: var(--transition); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed; top: 90px; left: 0; right: 0; bottom: 0; z-index: 999;
  background: rgba(13,15,12,0.98); backdrop-filter: blur(16px);
  padding: 2rem; display: flex; flex-direction: column; gap: 0.5rem;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block; padding: 14px 16px; border-radius: var(--radius);
  font-size: 1.1rem; font-weight: 600; color: var(--muted-foreground);
  transition: var(--transition); border: 1px solid transparent;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--brand); background: rgba(181,232,35,0.06); border-color: rgba(181,232,35,0.15); }
.mobile-nav .mobile-cta { margin-top: auto; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 90px;
  background: #000;
}
.hero-bg-img {
  position: absolute; inset: 0;
}
.hero-bg-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg-img::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.70);
}

.hero-content {
  position: relative; z-index: 10;
  text-align: center; max-width: 1100px; padding: 2rem;
}

.hero-badge {
  display: inline-block; margin-bottom: 1.5rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--brand);
  border-radius: 9999px;
}
.hero-badge span {
  color: var(--brand); font-size: 0.875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 8px;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); animation: pulse-dot 1.5s infinite; display: inline-block; }
@keyframes pulse-dot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.5); } }

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.05em;
  line-height: 1;
}
.hero h1 .gradient-text {
  color: transparent;
  background: linear-gradient(to right, var(--brand), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: #fff;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8), 0 0 40px rgba(0,0,0,0.6);
  max-width: 780px; margin: 0 auto 3rem;
  line-height: 1.625;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.7));
}

.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 1.25rem 2.5rem;
  background: var(--brand); color: #000;
  font-size: 1.125rem; font-weight: 700;
  border-radius: var(--radius);
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(181,232,35,0.4);
  text-decoration: none;
}
.btn-primary:hover { transform: scale(1.05); background: var(--brand-dark); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 1.25rem 2.5rem;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.125rem; font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand); background: rgba(181,232,35,0.05); transform: scale(1.05); }

.hero-stats {
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  margin-top: 5rem;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-size: 3.75rem; font-weight: 900; line-height: 1;
  color: transparent;
  background: linear-gradient(to right, var(--brand), var(--accent-color));
  -webkit-background-clip: text; background-clip: text;
}
.hero-stat .label { font-size: 0.75rem; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--muted-foreground); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  cursor: pointer; animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== SECTIONS ===== */
section { padding: 3.5rem 0; position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Anchor scroll offset — prevents navbar covering content */
section[id], div[id] { scroll-margin-top: 84px; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brand); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--brand); border-radius: 2px; }

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900; line-height: 1; letter-spacing: -0.025em;
  color: #fff; margin-bottom: 1rem;
  /* match old: font-black text-white tracking-tight */
}
.section-title .highlight {
  color: transparent;
  background: linear-gradient(to right, var(--brand), var(--accent-color));
  -webkit-background-clip: text; background-clip: text;
}
.section-desc { color: var(--muted-foreground); font-size: 1.125rem; max-width: 500px; }

/* Background image sections — like old site */
.bg-section {
  position: relative; overflow: hidden;
  background: #000;
}
.bg-section-img {
  position: absolute; inset: 0;
}
.bg-section-img img { width: 100%; height: 100%; object-fit: cover; }
.bg-section-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.82); }

/* ===== TEAMS GRID ===== */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem; margin-top: 4rem;
}
@media (min-width: 768px) { .teams-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .teams-grid { grid-template-columns: repeat(4, 1fr); } }

.team-card {
  group: true;
  position: relative;
  background: linear-gradient(to bottom right, #1a1f18, #0d0f0c);
  border: 2px solid #232920;
  border-radius: 1rem; /* rounded-2xl */
  padding: 2rem;
  overflow: hidden;
  transition: all 0.5s;
  text-decoration: none; color: inherit;
  cursor: pointer;
}
.team-card:hover {
  border-color: var(--brand);
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(181,232,35,0.15);
}
.team-card-shine {
  position: absolute; top: 0; right: 0; width: 8rem; height: 8rem;
  opacity: 0.1; transition: opacity 0.5s;
}
.team-card:hover .team-card-shine { opacity: 0.2; }
.team-card-inner { position: relative; z-index: 10; }

.team-icon {
  width: 80px; height: 80px; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 2rem;
  border: 4px solid;
  transition: border-color 0.5s;
}
.team-name {
  font-size: 1.5rem; font-weight: 900; color: #fff;
  text-align: center; margin-bottom: 1.5rem;
  transition: color 0.5s; line-height: 1.3;
}
.team-card:hover .team-name { color: var(--brand); }
.team-state { font-size: 0.75rem; color: var(--muted-foreground); text-align: center; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem; }
.team-bar-wrap { display: none; height: 4px; width: 100%; background: #232920; border-radius: 9999px; overflow: hidden; }
.team-bar {
  height: 100%; width: 0;
  background: linear-gradient(to right, var(--brand), var(--accent-color));
  border-radius: 9999px;
  transition: width 0.7s;
}
.team-card:hover .team-bar { width: 100%; }

/* ===== FORMAT SECTION ===== */
.format-grid {
  display: grid; gap: 2rem; margin-top: 4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .format-grid { grid-template-columns: repeat(3, 1fr); } }

.format-card {
  background: linear-gradient(to bottom right, #1a1f18, #0d0f0c);
  border: 1px solid #232920;
  border-radius: 1rem; padding: 2rem; text-align: center;
  transition: all 0.3s;
}
.format-card:hover { border-color: var(--brand); box-shadow: var(--glow); }
.format-number {
  font-size: 3.75rem; font-weight: 900; line-height: 1;
  color: transparent;
  background: linear-gradient(to right, var(--brand), var(--accent-color));
  -webkit-background-clip: text; background-clip: text;
  margin-bottom: 1rem;
}
.format-label { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.format-desc { color: var(--muted-foreground); font-size: 0.9rem; }

/* ===== PRIZE POOL ===== */
.prize-display {
  background: linear-gradient(to right, rgba(181,232,35,0.08), rgba(34,211,238,0.05));
  border: 1px solid rgba(181,232,35,0.25);
  border-radius: 1rem;
  padding: 2.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  margin-top: 4rem;
}
.prize-card {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.prize-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}
.prize-amount {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  color: transparent;
  background: linear-gradient(to right, var(--brand), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
}
.prize-sub {
  font-size: 0.78rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
  line-height: 1.4;
}
.prize-divider {
  width: 1px;
  height: 80px;
  background: #2f372c;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .prize-display {
    flex-direction: column;
    padding: 2rem 1.25rem;
    gap: 2rem;
  }
  .prize-divider {
    width: 60%;
    height: 1px;
  }
  .prize-amount {
    font-size: 2.75rem;
    white-space: normal;
  }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative; overflow: hidden;
  background: #000;
  padding: 9rem 0 5rem;
  text-align: center;
  border-bottom: 1px solid var(--brand);
}
.page-hero-img { position: absolute; inset: 0; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-img::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.82); }
.page-hero-content { position: relative; z-index: 10; }
.page-hero h1 {
  font-size: clamp(3rem, 8vw, 5rem); font-weight: 900;
  color: #fff; letter-spacing: -0.025em; line-height: 1; margin-bottom: 1rem;
}
.page-hero p { color: var(--muted-foreground); font-size: 1.25rem; max-width: 600px; margin: 0 auto; }

/* ===== CARD REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== MATCH CARDS ===== */
.matches-filter { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 8px 20px; border-radius: 9999px;
  border: 1px solid #2f372c;
  background: transparent; color: var(--muted-foreground);
  font-size: 0.875rem; font-weight: 500; font-family: inherit;
  transition: var(--transition); cursor: pointer;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--brand); color: var(--brand); background: rgba(181,232,35,0.06); }

.match-card {
  background: linear-gradient(to bottom right, #1a1f18, #0d0f0c);
  border: 1px solid #2f372c;
  border-radius: 1rem; padding: 1.75rem;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 1.5rem;
  transition: all 0.3s; margin-bottom: 1rem;
}
.match-card:hover { border-color: rgba(181,232,35,0.3); }
.match-team { display: flex; align-items: center; gap: 12px; }
.match-team.right { flex-direction: row-reverse; text-align: right; }
.match-team-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.match-team-name { font-weight: 700; font-size: 1rem; color: #fff; }
.match-team-state { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 2px; }
.match-vs { text-align: center; }
.match-vs .vs { font-size: 1.875rem; font-weight: 900; color: var(--brand); display: block; letter-spacing: -0.025em; }
.match-vs .date { font-size: 0.75rem; color: var(--muted-foreground); white-space: nowrap; margin-top: 4px; }
.match-vs .match-num { font-size: 0.7rem; color: var(--muted-foreground); background: #232920; padding: 2px 8px; border-radius: 4px; margin-bottom: 4px; display: inline-block; }

/* ===== TIMELINE ===== */
.timeline-wrap { position: relative; max-width: 800px; margin: 4rem auto 0; }
.timeline-wrap::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--brand) 0%, rgba(181,232,35,0.1) 100%);
  transform: translateX(-50%);
}
.timeline-item { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 1.5rem; align-items: start; margin-bottom: 3rem; }
.timeline-date { font-weight: 700; color: var(--brand); font-size: 0.95rem; padding-top: 1.25rem; }
.timeline-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--brand); border: 3px solid var(--background);
  margin: 1.5rem auto 0; box-shadow: 0 0 15px rgba(181,232,35,0.5);
  position: relative; z-index: 1;
}
.timeline-content {
  background: linear-gradient(to bottom right, #1a1f18, #0d0f0c);
  border: 1px solid #2f372c; border-radius: 1rem; padding: 1.5rem;
  transition: var(--transition);
}
.timeline-content:hover { border-color: var(--brand); }
.timeline-content h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.timeline-content p { font-size: 0.875rem; color: var(--muted-foreground); }
.timeline-tag {
  display: inline-block; padding: 3px 10px; border-radius: 9999px;
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

/* ===== REGISTRATION ===== */
.reg-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
@media (max-width: 1024px) { .reg-grid { grid-template-columns: 1fr; } }
.reg-info h2 { font-size: 3rem; font-weight: 900; color: #fff; letter-spacing: -0.025em; line-height: 1; margin-bottom: 1rem; }
.reg-info p { color: var(--muted-foreground); margin-bottom: 2rem; }
.reg-feature { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.reg-feature-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: rgba(181,232,35,0.1); display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.reg-feature-text strong { display: block; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.reg-feature-text span { font-size: 0.875rem; color: var(--muted-foreground); }

.reg-form {
  background: linear-gradient(to bottom right, #1a1f18, #0d0f0c);
  border: 2px solid #2f372c;
  border-radius: 1rem; padding: 2.5rem;
}
.reg-form h3 { font-size: 2rem; font-weight: 900; color: #fff; letter-spacing: -0.025em; margin-bottom: 0.5rem; }
.reg-form .form-sub { color: var(--muted-foreground); font-size: 0.875rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 700;
  color: var(--muted-foreground); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--foreground);
  font-size: 0.95rem; transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--brand); box-shadow: 0 0 0 3px rgba(181,232,35,0.12);
}
.form-group select option { background: var(--card); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  background: var(--brand); color: #000;
  padding: 14px; border-radius: var(--radius);
  font-size: 1rem; font-weight: 700; font-family: inherit;
  transition: all 0.3s; cursor: pointer; border: none;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 8px 25px rgba(181,232,35,0.3);
}
.form-submit:hover { transform: scale(1.02); background: var(--brand-dark); }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success .tick { font-size: 3rem; margin-bottom: 1rem; }
.form-success h4 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.form-success p { color: var(--muted-foreground); }

/* ===== FOOTER ===== */
footer {
  background: #000;
  border-top: none;
  padding: 3rem 0 2rem;
}
.footer-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; margin-bottom: 2.5rem; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand p { color: var(--muted-foreground); font-size: 0.875rem; margin-top: 1rem; line-height: 1.8; max-width: 260px; }
.footer-col h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: #fff; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { color: var(--muted-foreground); font-size: 0.875rem; transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--brand); }
.footer-bottom {
  border-top: none; padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--muted-foreground); font-size: 0.8rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-foreground); font-size: 0.9rem; transition: var(--transition);
}
.footer-social a:hover { background: rgba(181,232,35,0.1); color: var(--brand); border-color: var(--brand); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  background: var(--card); border: 1px solid var(--brand);
  border-radius: var(--radius); padding: 1rem 1.5rem;
  display: flex; gap: 12px; align-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: translateX(200%); transition: var(--transition);
  max-width: min(320px, calc(100vw - 2rem));
  width: max-content;
}
.toast.show { transform: translateX(0); }
.toast-icon { font-size: 1.5rem; flex-shrink: 0; }
.toast-text strong { display: block; font-size: 0.95rem; color: #fff; margin-bottom: 2px; }
.toast-text span { font-size: 0.8rem; color: var(--muted-foreground); }

/* ===== TEAMS DETAIL PAGE ===== */
.team-detail-card {
  background: linear-gradient(to bottom right, #1a1f18, #0d0f0c);
  border: 2px solid #2f372c; border-radius: 1rem; overflow: hidden;
  transition: border-color 0.3s; scroll-margin-top: 90px;
}
.team-detail-card:hover { border-color: rgba(181,232,35,0.3); }
.team-header { padding: 2.5rem; display: flex; align-items: center; gap: 2rem; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.team-big-icon { width: 80px; height: 80px; border-radius: 1.25rem; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; flex-shrink: 0; position: relative; z-index: 1; }
.team-header-info { position: relative; z-index: 1; }
.team-header-info .team-number { font-size: 0.75rem; color: var(--brand); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 0.35rem; }
.team-header-info h2 { font-size: 2.25rem; font-weight: 900; color: #fff; letter-spacing: -0.025em; line-height: 1; }
.team-state-badge { display: inline-block; padding: 4px 12px; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; margin-top: 0.5rem; }
.team-big-num { position: absolute; right: 2rem; top: 50%; transform: translateY(-50%); font-size: 8rem; font-weight: 900; opacity: 0.04; line-height: 1; color: var(--brand); }
.team-body { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid var(--border); }
.team-stat-box { padding: 1.75rem; text-align: center; border-right: 1px solid var(--border); }
.team-stat-box:last-child { border-right: none; }
.team-stat-box .t-num { font-size: 2.5rem; font-weight: 900; color: var(--brand); line-height: 1; }
.team-stat-box .t-lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-foreground); margin-top: 4px; }
.team-foot { padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.team-players { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.player-chip { padding: 5px 12px; border-radius: 9999px; background: rgba(181,232,35,0.06); border: 1px solid rgba(181,232,35,0.15); font-size: 0.78rem; font-weight: 500; color: var(--foreground); white-space: nowrap; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 50% { opacity: .5; } }
@keyframes spin { 0% { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes bounce-slow { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 2.5rem 0; }
  .toast { right: 1rem; bottom: 1rem; left: 1rem; right: 1rem; max-width: calc(100vw - 2rem); transform: translateY(200%); }
  .toast.show { transform: translateY(0); }
  .hero-stats { gap: 2rem; }
  .match-card { grid-template-columns: 1fr; gap: 1rem; }
  .match-team.right { flex-direction: row; text-align: left; }
  .timeline-wrap::before { left: 0; }
  .timeline-item { grid-template-columns: 30px 1fr; grid-template-rows: auto auto; }
  .timeline-item .timeline-date { grid-column: 2; grid-row: 1; text-align: left; padding-top: 0; }
  .timeline-item .timeline-dot { grid-column: 1; grid-row: 1; margin-top: 0; }
  .timeline-item .timeline-content { grid-column: 2; grid-row: 2; }
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; grid-row: 2; }
  .timeline-item:nth-child(even) .timeline-date { grid-column: 2; grid-row: 1; text-align: left; }
  .team-body { grid-template-columns: 1fr; }
  .team-stat-box { border-right: none; border-bottom: 1px solid var(--border); }
  .team-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .team-big-num { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 320px; justify-content: center; }
}

.footer-quick-links ul { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-quick-links ul li { margin-bottom: 0; }

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  section { padding: 2rem 0; }
  .hero { min-height: 80vh; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 3rem); }
  .hero-sub { font-size: 1rem; margin-bottom: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat .num { font-size: 2.8rem; }
  .page-hero { padding: 8rem 0 4rem; }
  .page-hero h1 { font-size: clamp(2rem, 10vw, 3.5rem); }
  .btn-primary, .btn-outline { padding: 1rem 1.5rem; font-size: 1rem; }
  .team-header { padding: 1.5rem; }
  .match-card { padding: 1.25rem 1rem; }
  /* prevent any child from overflowing viewport */
  img, video, iframe, table { max-width: 100%; }
}

.form-submit:hover { transform: scale(1.02); background: var(--brand-dark); }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success .tick { font-size: 3rem; margin-bottom: 1rem; }
.form-success h4 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.form-success p { color: var(--muted-foreground); }

/* ===== FOOTER ===== */
footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}
.footer-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; margin-bottom: 2.5rem; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand p { color: var(--muted-foreground); font-size: 0.875rem; margin-top: 1rem; line-height: 1.8; max-width: 260px; }
.footer-col h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: #fff; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { color: var(--muted-foreground); font-size: 0.875rem; transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--brand); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--muted-foreground); font-size: 0.8rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-foreground); font-size: 0.9rem; transition: var(--transition);
}
.footer-social a:hover { background: rgba(181,232,35,0.1); color: var(--brand); border-color: var(--brand); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  background: var(--card); border: 1px solid var(--brand);
  border-radius: var(--radius); padding: 1rem 1.5rem;
  display: flex; gap: 12px; align-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: translateX(200%); transition: var(--transition);
  max-width: min(320px, calc(100vw - 2rem));
  width: max-content;
}
.toast.show { transform: translateX(0); }
.toast-icon { font-size: 1.5rem; flex-shrink: 0; }
.toast-text strong { display: block; font-size: 0.95rem; color: #fff; margin-bottom: 2px; }
.toast-text span { font-size: 0.8rem; color: var(--muted-foreground); }

/* ===== TEAMS DETAIL PAGE ===== */
.team-detail-card {
  background: linear-gradient(to bottom right, #1a1f18, #0d0f0c);
  border: 2px solid #2f372c; border-radius: 1rem; overflow: hidden;
  transition: border-color 0.3s; scroll-margin-top: 90px;
}
.team-detail-card:hover { border-color: rgba(181,232,35,0.3); }
.team-header { padding: 2.5rem; display: flex; align-items: center; gap: 2rem; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.team-big-icon { width: 80px; height: 80px; border-radius: 1.25rem; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; flex-shrink: 0; position: relative; z-index: 1; }
.team-header-info { position: relative; z-index: 1; }
.team-header-info .team-number { font-size: 0.75rem; color: var(--brand); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 0.35rem; }
.team-header-info h2 { font-size: 2.25rem; font-weight: 900; color: #fff; letter-spacing: -0.025em; line-height: 1; }
.team-state-badge { display: inline-block; padding: 4px 12px; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; margin-top: 0.5rem; }
.team-big-num { position: absolute; right: 2rem; top: 50%; transform: translateY(-50%); font-size: 8rem; font-weight: 900; opacity: 0.04; line-height: 1; color: var(--brand); }
.team-body { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid var(--border); }
.team-stat-box { padding: 1.75rem; text-align: center; border-right: 1px solid var(--border); }
.team-stat-box:last-child { border-right: none; }
.team-stat-box .t-num { font-size: 2.5rem; font-weight: 900; color: var(--brand); line-height: 1; }
.team-stat-box .t-lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-foreground); margin-top: 4px; }
.team-foot { padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.team-players { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.player-chip { padding: 5px 12px; border-radius: 9999px; background: rgba(181,232,35,0.06); border: 1px solid rgba(181,232,35,0.15); font-size: 0.78rem; font-weight: 500; color: var(--foreground); white-space: nowrap; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 50% { opacity: .5; } }
@keyframes spin { 0% { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes bounce-slow { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 2.5rem 0; }
  .toast { right: 1rem; bottom: 1rem; left: 1rem; right: 1rem; max-width: calc(100vw - 2rem); transform: translateY(200%); }
  .toast.show { transform: translateY(0); }
  .hero-stats { gap: 2rem; }
  .match-card { grid-template-columns: 1fr; gap: 1rem; }
  .match-team.right { flex-direction: row; text-align: left; }
  .timeline-wrap::before { left: 0; }
  .timeline-item { grid-template-columns: 30px 1fr; grid-template-rows: auto auto; }
  .timeline-item .timeline-date { grid-column: 2; grid-row: 1; text-align: left; padding-top: 0; }
  .timeline-item .timeline-dot { grid-column: 1; grid-row: 1; margin-top: 0; }
  .timeline-item .timeline-content { grid-column: 2; grid-row: 2; }
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; grid-row: 2; }
  .timeline-item:nth-child(even) .timeline-date { grid-column: 2; grid-row: 1; text-align: left; }
  .team-body { grid-template-columns: 1fr; }
  .team-stat-box { border-right: none; border-bottom: 1px solid var(--border); }
  .team-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .team-big-num { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 320px; justify-content: center; }
}

.footer-quick-links ul { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-quick-links ul li { margin-bottom: 0; }

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  section { padding: 2rem 0; }
  .hero { min-height: 80vh; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 3rem); }
  .hero-sub { font-size: 1rem; margin-bottom: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat .num { font-size: 2.8rem; }
  .page-hero { padding: 8rem 0 4rem; }
  .page-hero h1 { font-size: clamp(2rem, 10vw, 3.5rem); }
  .btn-primary, .btn-outline { padding: 1rem 1.5rem; font-size: 1rem; }
  .team-header { padding: 1.5rem; }
  .match-card { padding: 1.25rem 1rem; }
  /* prevent any child from overflowing viewport */
  img, video, iframe, table { max-width: 100%; }
  border: 2px solid #2f372c; border-radius: 1rem; overflow: hidden;
  transition: border-color 0.3s; scroll-margin-top: 90px;
}
.team-detail-card:hover { border-color: rgba(181,232,35,0.3); }
.team-header { padding: 2.5rem; display: flex; align-items: center; gap: 2rem; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.team-big-icon { width: 80px; height: 80px; border-radius: 1.25rem; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; flex-shrink: 0; position: relative; z-index: 1; }
.team-header-info { position: relative; z-index: 1; }
.team-header-info .team-number { font-size: 0.75rem; color: var(--brand); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 0.35rem; }
.team-header-info h2 { font-size: 2.25rem; font-weight: 900; color: #fff; letter-spacing: -0.025em; line-height: 1; }
.team-state-badge { display: inline-block; padding: 4px 12px; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; margin-top: 0.5rem; }
.team-big-num { position: absolute; right: 2rem; top: 50%; transform: translateY(-50%); font-size: 8rem; font-weight: 900; opacity: 0.04; line-height: 1; color: var(--brand); }
.team-body { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid var(--border); }
.team-stat-box { padding: 1.75rem; text-align: center; border-right: 1px solid var(--border); }
.team-stat-box:last-child { border-right: none; }
.team-stat-box .t-num { font-size: 2.5rem; font-weight: 900; color: var(--brand); line-height: 1; }
.team-stat-box .t-lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-foreground); margin-top: 4px; }
.team-foot { padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.team-players { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.player-chip { padding: 5px 12px; border-radius: 9999px; background: rgba(181,232,35,0.06); border: 1px solid rgba(181,232,35,0.15); font-size: 0.78rem; font-weight: 500; color: var(--foreground); white-space: nowrap; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 50% { opacity: .5; } }
@keyframes spin { 0% { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes bounce-slow { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 2.5rem 0; }
  .toast { right: 1rem; bottom: 1rem; left: 1rem; right: 1rem; max-width: calc(100vw - 2rem); transform: translateY(200%); }
  .toast.show { transform: translateY(0); }
  .hero-stats { gap: 2rem; }
  .match-card { grid-template-columns: 1fr; gap: 1rem; }
  .match-team.right { flex-direction: row; text-align: left; }
  .timeline-wrap::before { left: 0; }
  .timeline-item { grid-template-columns: 30px 1fr; grid-template-rows: auto auto; }
  .timeline-item .timeline-date { grid-column: 2; grid-row: 1; text-align: left; padding-top: 0; }
  .timeline-item .timeline-dot { grid-column: 1; grid-row: 1; margin-top: 0; }
  .timeline-item .timeline-content { grid-column: 2; grid-row: 2; }
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; grid-row: 2; }
  .timeline-item:nth-child(even) .timeline-date { grid-column: 2; grid-row: 1; text-align: left; }
  .team-body { grid-template-columns: 1fr; }
  .team-stat-box { border-right: none; border-bottom: 1px solid var(--border); }
  .team-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .team-big-num { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 320px; justify-content: center; }
}

.footer-quick-links ul { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-quick-links ul li { margin-bottom: 0; }

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  section { padding: 2rem 0; }
  .hero { min-height: 80vh; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 3rem); }
  .hero-sub { font-size: 1rem; margin-bottom: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat .num { font-size: 2.8rem; }
  .page-hero { padding: 8rem 0 4rem; }
  .page-hero h1 { font-size: clamp(2rem, 10vw, 3.5rem); }
  .btn-primary, .btn-outline { padding: 1rem 1.5rem; font-size: 1rem; }
  .team-header { padding: 1.5rem; }
  .match-card { padding: 1.25rem 1rem; }
  /* prevent any child from overflowing viewport */
  img, video, iframe, table { max-width: 100%; }
}

.form-submit:hover { transform: scale(1.02); background: var(--brand-dark); }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success .tick { font-size: 3rem; margin-bottom: 1rem; }
.form-success h4 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.form-success p { color: var(--muted-foreground); }

/* ===== FOOTER ===== */
footer {
  background: #000;
  border-top: none;
  padding: 1.75rem 0;
}
.footer-bottom {
  border-top: none;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--muted-foreground); font-size: 0.8rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-foreground); font-size: 0.9rem; transition: var(--transition);
}
.footer-social a:hover { background: rgba(181,232,35,0.1); color: var(--brand); border-color: var(--brand); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  background: var(--card); border: 1px solid var(--brand);
  border-radius: var(--radius); padding: 1rem 1.5rem;
  display: flex; gap: 12px; align-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: translateX(200%); transition: var(--transition);
  max-width: min(320px, calc(100vw - 2rem));
  width: max-content;
}
.toast.show { transform: translateX(0); }
.toast-icon { font-size: 1.5rem; flex-shrink: 0; }
.toast-text strong { display: block; font-size: 0.95rem; color: #fff; margin-bottom: 2px; }
.toast-text span { font-size: 0.8rem; color: var(--muted-foreground); }

/* ===== TEAMS DETAIL PAGE ===== */
.team-detail-card {
  background: linear-gradient(to bottom right, #1a1f18, #0d0f0c);
  border: 2px solid #2f372c; border-radius: 1rem; overflow: hidden;
  transition: border-color 0.3s; scroll-margin-top: 90px;
}
.team-detail-card:hover { border-color: rgba(181,232,35,0.3); }
.team-header { padding: 2.5rem; display: flex; align-items: center; gap: 2rem; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.team-big-icon { width: 80px; height: 80px; border-radius: 1.25rem; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; flex-shrink: 0; position: relative; z-index: 1; }
.team-header-info { position: relative; z-index: 1; }
.team-header-info .team-number { font-size: 0.75rem; color: var(--brand); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 0.35rem; }
.team-header-info h2 { font-size: 2.25rem; font-weight: 900; color: #fff; letter-spacing: -0.025em; line-height: 1; }
.team-state-badge { display: inline-block; padding: 4px 12px; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; margin-top: 0.5rem; }
.team-big-num { position: absolute; right: 2rem; top: 50%; transform: translateY(-50%); font-size: 8rem; font-weight: 900; opacity: 0.04; line-height: 1; color: var(--brand); }
.team-body { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid var(--border); }
.team-stat-box { padding: 1.75rem; text-align: center; border-right: 1px solid var(--border); }
.team-stat-box:last-child { border-right: none; }
.team-stat-box .t-num { font-size: 2.5rem; font-weight: 900; color: var(--brand); line-height: 1; }
.team-stat-box .t-lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-foreground); margin-top: 4px; }
.team-foot { padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.team-players { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.player-chip { padding: 5px 12px; border-radius: 9999px; background: rgba(181,232,35,0.06); border: 1px solid rgba(181,232,35,0.15); font-size: 0.78rem; font-weight: 500; color: var(--foreground); white-space: nowrap; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 50% { opacity: .5; } }
@keyframes spin { 0% { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes bounce-slow { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 2.5rem 0; }
  .toast { right: 1rem; bottom: 1rem; left: 1rem; right: 1rem; max-width: calc(100vw - 2rem); transform: translateY(200%); }
  .toast.show { transform: translateY(0); }
  .hero-stats { gap: 2rem; }
  .match-card { grid-template-columns: 1fr; gap: 1rem; }
  .match-team.right { flex-direction: row; text-align: left; }
  .timeline-wrap::before { left: 0; }
  .timeline-item { grid-template-columns: 30px 1fr; grid-template-rows: auto auto; }
  .timeline-item .timeline-date { grid-column: 2; grid-row: 1; text-align: left; padding-top: 0; }
  .timeline-item .timeline-dot { grid-column: 1; grid-row: 1; margin-top: 0; }
  .timeline-item .timeline-content { grid-column: 2; grid-row: 2; }
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; grid-row: 2; }
  .timeline-item:nth-child(even) .timeline-date { grid-column: 2; grid-row: 1; text-align: left; }
  .team-body { grid-template-columns: 1fr; }
  .team-stat-box { border-right: none; border-bottom: 1px solid var(--border); }
  .team-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .team-big-num { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 320px; justify-content: center; }
}

.footer-quick-links ul { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-quick-links ul li { margin-bottom: 0; }

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  section { padding: 2rem 0; }
  .hero { min-height: 80vh; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 3rem); }
  .hero-sub { font-size: 1rem; margin-bottom: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat .num { font-size: 2.8rem; }
  .page-hero { padding: 8rem 0 4rem; }
  .page-hero h1 { font-size: clamp(2rem, 10vw, 3.5rem); }
  .btn-primary, .btn-outline { padding: 1rem 1.5rem; font-size: 1rem; }
  .team-header { padding: 1.5rem; }
  .match-card { padding: 1.25rem 1rem; }
  /* prevent any child from overflowing viewport */
  img, video, iframe, table { max-width: 100%; }
}

/* Sponsor Ticker styles have been moved to inline components in index.html for the new carousel */

/* ===== TEAM SCROLLERS ===== */
.team-scroller {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.team-scroller-track {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  padding: 1rem 0;
  width: max-content;
  animation: scrollTrack 30s linear infinite;
}
.team-scroller-track:hover {
  animation-play-state: paused;
}
@keyframes scrollTrack {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 0.75rem)); }
}
.team-scroller-track .team-card {
  width: 260px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .team-scroller-track .team-card {
    width: 220px;
  }
}

/* ===== CUSTOM BALL CURSOR ===== */
@media (hover: hover) and (pointer: fine) {
  *, *::before, *::after {
    cursor: none !important;
  }
}

.custom-ball-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  pointer-events: none !important;
  z-index: 99999999;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
  transition: opacity 0.25s ease;
  will-change: transform;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 2px rgba(217, 4, 41, 0.4));
}

.custom-ball-cursor .ball-icon {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none !important;
  transform-origin: center center;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.22s ease;
}

/* Subtle hover animation on interactive elements */
.custom-ball-cursor.hover .ball-icon {
  transform: scale(1.35);
  filter: drop-shadow(0 0 8px rgba(181, 232, 35, 0.95)) drop-shadow(0 0 4px rgba(255, 107, 107, 0.8));
}

/* Subtle click / tap animation */
.custom-ball-cursor.active .ball-icon {
  transform: scale(0.85);
}

@media (hover: none) or (pointer: coarse) {
  .custom-ball-cursor {
    display: none !important;
  }
}

/* ===== FOOTER BRAND & INITIATIVE (BALANCED IDENTICAL SIZES) ===== */
.footer-brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer-brand-wrap:hover {
  opacity: 0.88;
}
.footer-brand-wrap .footer-logo-img {
  height: clamp(100px, 11vw, 140px);
  width: auto;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
  filter: drop-shadow(0 2px 10px rgba(181, 232, 35, 0.25));
}
.footer-brand-wrap .footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}
.footer-brand-wrap .footer-brand-text .brand {
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.footer-brand-wrap .footer-brand-text .sub {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.footer-initiative {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}
.initiative-header {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.initiative-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.initiative-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(255, 136, 0, 0.3));
}
.initiative-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}
.initiative-hi {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1.2;
  font-family: 'Poppins', 'Noto Sans Devanagari', 'Segoe UI', sans-serif;
}
.initiative-en {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.03em;
  white-space: nowrap;
  line-height: 1.2;
  font-family: 'Poppins', 'Inter', -apple-system, sans-serif;
}
@media (max-width: 768px) {
  .footer-initiative {
    align-items: flex-start;
  }
  .initiative-hi {
    font-size: 1rem;
    white-space: normal;
  }
  .initiative-en {
    font-size: 0.75rem;
    white-space: normal;
  }
}


/* ===== FOOTER LEFT LOGO ALIGNMENT ===== */
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 640px) {
  .footer-brand {
    justify-content: center;
    width: 100%;
  }
}

/* ===== GLOBAL REUSABLE OFFICIAL SPONSORS SECTION ===== */
.sponsors-section {
  position: relative;
  padding: 5.5rem 0 6.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #080a07;
  border-top: 1px solid rgba(47, 55, 44, 0.6);
  width: 100%;
}

.sponsors-section .sponsors-bg-img {
  position: absolute;
  inset: 0;
  background: url('cricket-stadium-bg.jpg') center/cover no-repeat;
  filter: blur(8px) brightness(0.12) saturate(0.5);
  z-index: 0;
  transform: scale(1.08);
  opacity: 0.45;
  pointer-events: none;
}

.sponsors-section .sponsors-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(13, 15, 12, 0.7) 0%, rgba(8, 10, 7, 0.96) 100%);
  z-index: 0;
  pointer-events: none;
}

.sponsors-header-container {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
  padding: 0 1.5rem;
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  display: block !important;
}

.sponsors-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 0.75rem;
}

.sponsors-pill-line {
  width: 36px;
  height: 1px;
  background: var(--brand, #b5e823);
  opacity: 0.8;
}

.sponsors-pill-text {
  color: var(--brand, #b5e823);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0;
}

.sponsors-heading {
  text-align: center;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 3.5rem;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.sponsors-heading .text-gradient-sponsor {
  background: linear-gradient(110deg, var(--brand, #b5e823) 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sponsors-carousel-outer {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.sponsor-nav-btn {
  position: relative;
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 15, 12, 0.85);
  border: 1px solid rgba(181, 232, 35, 0.3);
  color: var(--brand, #b5e823);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.sponsor-nav-btn:hover {
  background: var(--brand, #b5e823);
  color: #000;
  border-color: var(--brand, #b5e823);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(181, 232, 35, 0.45);
}

.sponsor-nav-btn:active {
  transform: scale(0.95);
}

.sponsor-nav-btn.sponsor-prev {
  margin-right: 14px;
}

.sponsor-nav-btn.sponsor-next {
  margin-left: 14px;
}

.sponsor-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1.25rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.sponsor-carousel-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  align-items: center;
  animation: sponsorAutoScroll 28s linear infinite;
  will-change: transform;
}

.sponsor-carousel-track:hover,
.sponsor-carousel-track.is-paused {
  animation-play-state: paused;
}

@keyframes sponsorAutoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.sponsor-card {
  flex-shrink: 0;
  width: 220px;
  height: 170px;
  margin-right: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 22, 16, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(181, 232, 35, 0.16);
  border-radius: 18px;
  box-sizing: border-box;
  padding: 1.8rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.sponsor-card:hover {
  transform: translateY(-4px) scale(1.04);
  border-color: rgba(181, 232, 35, 0.5);
  background: rgba(28, 36, 24, 0.85);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(181, 232, 35, 0.2);
}

.sponsor-card img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0.95) contrast(1.05);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.sponsor-card:hover img {
  filter: brightness(1.05) contrast(1.1);
}

@media (max-width: 992px) {
  .sponsors-section {
    padding: 4.5rem 0 5.5rem;
  }
  .sponsor-card {
    width: 190px;
    height: 150px;
    padding: 1.5rem;
    margin-right: 1.5rem;
  }
}

@media (max-width: 640px) {
  .sponsors-section {
    padding: 3.5rem 0 4.5rem;
  }
  .sponsor-nav-btn {
    display: none;
  }
  .sponsor-carousel-wrapper {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    padding: 0.75rem 0;
  }
  .sponsor-card {
    width: 155px;
    height: 125px;
    padding: 1.15rem;
    margin-right: 1.25rem;
    border-radius: 14px;
  }
  .sponsors-heading {
    margin-bottom: 2.5rem;
  }
}

