/* ============================================================
   SLTPL 2026 — Main Stylesheet
   © TEAM CLSORBIT 2026
   ============================================================ */

:root {
  --primary: #1a472a;
  --primary-light: #2d6a4f;
  --gold: #c8a600;
  --gold-light: #f0c000;
  --accent: #e8690a;
  --dark: #0b150e;
  --dark2: #111f14;
  --mid: #1c3521;
  --light: #f5f5f0;
  --white: #ffffff;
  --gray: #8a9a8e;
  --border: rgba(200,166,0,0.2);
  --glass: rgba(26,71,42,0.6);
  --shadow: 0 8px 40px rgba(0,0,0,0.4);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
.checkbox-label a { color: var(--gold); font-weight: 700; }
.checkbox-label a:hover { color: var(--gold-light); }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============ PRELOADER ============ */
#preloader {
  position: fixed; inset: 0; background: var(--dark);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.logo-ball-loader {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  border: 2px solid var(--gold);
  box-shadow: 0 0 30px rgba(200,166,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  overflow: hidden;
  animation: logo-bounce 0.85s ease-in-out infinite alternate;
}
.logo-ball-loader img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  animation: logo-spin 1.7s linear infinite;
}
@keyframes logo-bounce {
  from { transform: translateY(0); box-shadow: 0 0 30px rgba(200,166,0,0.45); }
  to { transform: translateY(-30px); box-shadow: 0 30px 20px rgba(200,166,0,0.3); }
}
@keyframes logo-spin {
  to { transform: rotate(360deg); }
}
.loader-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 6px; color: var(--white);
}
.loader-text span { color: var(--gold); }

/* ============ SCORE TICKER ============ */
.score-ticker {
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  height: 36px; z-index: 1000; overflow: hidden;
}
.ticker-label {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--dark);
  padding: 0 16px;
  height: 100%;
  display: flex; align-items: center;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 2px;
  white-space: nowrap;
}
.live-dot { color: #fff; animation: pulse-dot 1s ease infinite; }
@keyframes pulse-dot { 0%,100% { opacity:1; } 50% { opacity:0.3; } }
.ticker-track { flex: 1; overflow: hidden; height: 100%; display: flex; align-items: center; }
.ticker-content {
  display: inline-flex; align-items: center; gap: 20px;
  white-space: nowrap; font-size: 0.78rem; color: var(--light);
  animation: ticker 40s linear infinite;
}
@keyframes ticker { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }
.ticker-item { display: inline; }
.ticker-content .sep,
.ticker-content .ticker-item:not(:first-child) {
  display: none;
}
.sep { color: var(--gold); }

/* ============ NAVBAR ============ */
#navbar {
  position: fixed; top: 36px; left: 0; right: 0;
  z-index: 999;
  background: rgba(11,21,14,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(11,21,14,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1400px; margin: 0 auto;
  padding: 0 18px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  flex: 0 0 auto;
}
.logo-icon img {
  width: 54px; height: 54px; object-fit: contain; display: block;
}
.logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; color: var(--gold); letter-spacing: 4px;
}
.logo-sub { font-size: 0.6rem; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }
.nav-menu {
  display: flex; align-items: center; justify-content: flex-end; gap: 2px; list-style: none;
  flex: 1 1 auto;
  min-width: 0;
}
.nav-menu li {
  flex: 0 0 auto;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gray);
  padding: 8px 10px; border-radius: 6px;
  transition: var(--transition);
  line-height: 1;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold); background: rgba(200,166,0,0.1);
}
.nav-link-system {
  border: 1px solid rgba(200,166,0,0.35);
  color: var(--gold);
  min-width: max-content;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--light);
  transition: var(--transition); display: block;
}

/* ============ HERO ============ */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-top: 106px;
}
#hero-canvas {
  position: absolute; inset: 0; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg,
    rgba(11,21,14,0.97) 0%,
    rgba(26,71,42,0.6) 50%,
    rgba(11,21,14,0.95) 100%);
}
.court-lines {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(0deg, rgba(200,166,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,166,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 20px;
  max-width: 900px;
}
.hero-badge {
  display: inline-block;
  background: var(--gold); color: var(--dark);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 3px;
  padding: 6px 20px; border-radius: 30px; margin-bottom: 24px;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 0.9; margin-bottom: 16px;
}
.title-line-1 {
  display: block; font-size: clamp(2rem,5vw,4rem);
  color: var(--white); letter-spacing: 10px;
}
.title-line-2 {
  display: block; font-size: clamp(5rem,14vw,10rem);
  color: var(--gold);
  text-shadow: 0 0 60px rgba(200,166,0,0.5);
  letter-spacing: 8px;
  animation: glow-text 3s ease-in-out infinite alternate;
}
@keyframes glow-text {
  from { text-shadow: 0 0 40px rgba(200,166,0,0.4); }
  to { text-shadow: 0 0 80px rgba(200,166,0,0.8), 0 0 120px rgba(200,166,0,0.3); }
}
.title-line-3 {
  display: block; font-size: clamp(1.5rem,4vw,3rem);
  color: var(--white); letter-spacing: 10px;
}
.hero-season {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1.2rem; letter-spacing: 8px; color: var(--accent);
  margin-bottom: 8px;
}
.hero-tagline {
  font-size: 1rem; color: var(--gray); letter-spacing: 2px; margin-bottom: 40px;
}
.hero-stats {
  display: flex; justify-content: center; align-items: center;
  gap: 0; margin-bottom: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 40px; display: inline-flex;
}
.stat-item { text-align: center; padding: 0 24px; }
.stat-num {
  display: block; font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem; color: var(--gold); line-height: 1;
}
.stat-label { font-size: 0.7rem; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.9rem; letter-spacing: 1px;
  transition: var(--transition); text-transform: uppercase;
}
.btn-primary {
  background: var(--gold); color: var(--dark);
  box-shadow: 0 4px 20px rgba(200,166,0,0.3);
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,166,0,0.5);
}
.btn-outline {
  border: 1.5px solid var(--gold); color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold); color: var(--dark); transform: translateY(-2px);
}
.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.7rem; color: var(--gray); letter-spacing: 2px; text-transform: uppercase;
}
.scroll-ball {
  width: 20px; height: 32px; border: 1.5px solid var(--gold);
  border-radius: 10px; position: relative;
}
.scroll-ball::after {
  content: ''; position: absolute; top: 4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--gold); border-radius: 2px;
  animation: scroll-anim 1.5s ease infinite;
}
@keyframes scroll-anim {
  0% { top: 4px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}

/* ============ ANIMATIONS ============ */
.animate-fade-up { animation: fadeUp 0.8s ease both; }
.animate-fade-up:nth-child(1) { animation-delay: 0.1s; }
.animate-fade-up:nth-child(2) { animation-delay: 0.2s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.3s; }
.animate-fade-up:nth-child(4) { animation-delay: 0.4s; }
.animate-fade-up:nth-child(5) { animation-delay: 0.5s; }
.animate-fade-up:nth-child(6) { animation-delay: 0.6s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ SECTIONS ============ */
.section {
  padding: 100px 0;
}
.container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.section-header {
  text-align: center; margin-bottom: 60px;
}
.section-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 3px; color: var(--gold);
  border: 1px solid var(--border); padding: 5px 16px;
  border-radius: 20px; margin-bottom: 16px; text-transform: uppercase;
}
.section-tag.live-pulse {
  animation: pulse-border 1.5s ease infinite;
  border-color: #cc0000; color: #ff4444;
}
@keyframes pulse-border {
  0%,100% { box-shadow: 0 0 0 0 rgba(204,0,0,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(204,0,0,0); }
}
.section-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem,5vw,3.5rem);
  color: var(--white); letter-spacing: 4px; line-height: 1;
  margin-bottom: 16px;
}
.section-title span { color: var(--gold); }
.section-subtitle { color: var(--gray); font-size: 1rem; max-width: 500px; margin: 0 auto; }

/* ============ SCHEDULE ============ */
.schedule-section { background: var(--dark2); }
.schedule-tabs {
  display: flex; gap: 8px; justify-content: center; margin-bottom: 40px;
}
.tab-btn {
  padding: 10px 24px; border-radius: 30px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 1px;
  color: var(--gray); border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--gold); color: var(--dark); border-color: var(--gold);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.matches-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}
.match-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.matches-grid > .match-card,
.results-table tbody tr:not(.official-empty-row) {
  display: none;
}
.match-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--primary-light), var(--gold));
  transform: scaleX(0); transition: var(--transition);
}
.match-card:hover::before { transform: scaleX(1); }
.match-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,166,0,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.match-card.featured {
  border-color: rgba(200,0,0,0.3);
  background: rgba(200,0,0,0.05);
  animation: pulse-card 2s ease infinite;
}
@keyframes pulse-card {
  0%,100% { box-shadow: 0 0 0 0 rgba(204,0,0,0.1); }
  50% { box-shadow: 0 0 20px rgba(204,0,0,0.2); }
}
.match-status { margin-bottom: 8px; }
.live-badge, .upcoming-badge {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 2px; padding: 3px 10px; border-radius: 20px;
}
.live-badge { background: #cc0000; color: #fff; animation: pulse-bg 1s ease infinite; }
@keyframes pulse-bg { 0%,100% { opacity:1; } 50% { opacity:0.7; } }
.upcoming-badge { background: rgba(200,166,0,0.15); color: var(--gold); border: 1px solid var(--border); }
.match-date { font-size: 0.78rem; color: var(--gray); margin-bottom: 16px; }
.match-teams {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 16px;
}
.team-side {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; flex: 1; font-size: 0.82rem; font-weight: 600; text-align: center;
}
.team-badge {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 1px;
}
.t1 { background: linear-gradient(135deg, #1a472a, #2d6a4f); color: #c8a600; }
.t2 { background: linear-gradient(135deg, #4a1942, #7b2d8b); color: #fff; }
.t3 { background: linear-gradient(135deg, #0a3d62, #1e6091); color: #00b4d8; }
.t4 { background: linear-gradient(135deg, #7f1d1d, #991b1b); color: #fca5a5; }
.t5 { background: linear-gradient(135deg, #1e3a5f, #2563eb); color: #93c5fd; }
.t6 { background: linear-gradient(135deg, #6b3300, #c2410c); color: #fed7aa; }
.t7 { background: linear-gradient(135deg, #064e3b, #059669); color: #6ee7b7; }
.t8 { background: linear-gradient(135deg, #1e1b4b, #3730a3); color: #a5b4fc; }
.match-score { text-align: center; flex: 0 0 auto; }
.score-display {
  font-family: 'Bebas Neue'; font-size: 1.4rem; color: var(--gold); letter-spacing: 2px;
}
.score-numbers { font-size: 0.85rem; color: var(--white); font-weight: 700; }
.score-time { font-size: 1.1rem; color: var(--white); }
.match-type { font-size: 0.65rem; color: var(--gray); letter-spacing: 1px; margin-top: 4px; }
.match-meta {
  display: flex; gap: 16px; font-size: 0.72rem; color: var(--gray); flex-wrap: wrap;
}
.match-meta span { display: flex; align-items: center; gap: 4px; }
.results-table-wrap { overflow-x: auto; }
.results-table {
  width: 100%; border-collapse: collapse;
}
.results-table th, .results-table td {
  padding: 12px 16px; font-size: 0.85rem; text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.results-table th {
  background: rgba(200,166,0,0.1); color: var(--gold);
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
}
.results-table tr:hover { background: rgba(255,255,255,0.03); }
.winner { color: var(--gold); font-weight: 700; }
.official-empty-row td {
  padding: 28px;
  border: 1px dashed rgba(200,166,0,0.3);
  border-radius: var(--radius);
  color: var(--gray);
  text-align: center;
  background: rgba(255,255,255,0.02);
}

/* ============ TEAMS ============ */
.teams-section { background: var(--dark); }
.teams-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px; margin-bottom: 60px;
}
.teams-grid > .team-card[data-team],
#playersSpotlight > .player-card {
  display: none;
}
.team-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: rgba(200,166,0,0.2);
}
.team-card-top {
  height: 140px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.t1-bg { background: linear-gradient(135deg, #0b2415, #1a472a, #2d6a4f); }
.t2-bg { background: linear-gradient(135deg, #1e0a1c, #4a1942, #7b2d8b); }
.t3-bg { background: linear-gradient(135deg, #041f30, #0a3d62, #1e6091); }
.t4-bg { background: linear-gradient(135deg, #2d0a0a, #7f1d1d, #991b1b); }
.t5-bg { background: linear-gradient(135deg, #0a1628, #1e3a5f, #2563eb); }
.t6-bg { background: linear-gradient(135deg, #2b1200, #6b3300, #c2410c); }
.t7-bg { background: linear-gradient(135deg, #012112, #064e3b, #059669); }
.t8-bg { background: linear-gradient(135deg, #0a091e, #1e1b4b, #3730a3); }
.team-emblem {
  font-family: 'Bebas Neue'; font-size: 4rem; letter-spacing: 4px;
  color: rgba(255,255,255,0.15); user-select: none;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.team-logo-img {
  width: 92px; height: 92px; object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
}
.team-card-body { padding: 20px; }
.team-card-body h3 {
  font-family: 'Rajdhani'; font-size: 1.2rem; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}
.team-city { font-size: 0.78rem; color: var(--gray); margin-bottom: 12px; }
.team-record {
  display: flex; gap: 8px; margin-bottom: 16px;
}
.wins, .losses, .pts {
  padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 700;
}
.wins { background: rgba(34,197,94,0.15); color: #4ade80; }
.losses { background: rgba(239,68,68,0.15); color: #f87171; }
.pts { background: rgba(200,166,0,0.15); color: var(--gold); }
.team-players-mini { margin-bottom: 16px; }
.mini-player {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.8rem; color: var(--light);
}
.mini-player:last-child { border-bottom: none; }
.mini-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: var(--gold); flex-shrink: 0;
}
.mini-player .rank { margin-left: auto; color: var(--gold); font-weight: 700; font-size: 0.72rem; }
.empty-mini {
  color: var(--gray); font-size: 0.78rem; padding: 10px 0;
}
.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed rgba(200,166,0,0.3);
  border-radius: var(--radius);
  color: var(--gray);
  text-align: center;
  background: rgba(255,255,255,0.02);
}
.btn-team-detail {
  width: 100%; padding: 10px; background: rgba(200,166,0,0.1);
  color: var(--gold); border: 1px solid var(--border); border-radius: 8px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 1px;
  transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-team-detail:hover { background: var(--gold); color: var(--dark); }

/* PLAYER SPOTLIGHT */
.players-spotlight { margin-top: 60px; }
.spotlight-title {
  font-family: 'Bebas Neue'; font-size: 1.6rem; letter-spacing: 3px;
  color: var(--gold); margin-bottom: 24px; text-align: center;
}
.players-row {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px;
}
.player-card {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 16px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.player-card:hover {
  transform: translateX(4px);
  border-color: rgba(200,166,0,0.3);
}
.player-card.rank-1 { border-color: rgba(255,215,0,0.3); background: rgba(255,215,0,0.04); }
.player-card.rank-2 { border-color: rgba(192,192,192,0.3); }
.player-card.rank-3 { border-color: rgba(205,127,50,0.3); }
.rank-badge {
  position: absolute; top: 8px; right: 12px;
  font-family: 'Bebas Neue'; font-size: 1.2rem; color: var(--gold); opacity: 0.5;
}
.player-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg, var(--primary), var(--gold)); color: var(--dark); }
.av2 { background: linear-gradient(135deg, #4a1942, #f0c0ff); color: var(--dark); }
.av3 { background: linear-gradient(135deg, #0a3d62, #00b4d8); color: var(--white); }
.av4 { background: linear-gradient(135deg, #7f1d1d, #fca5a5); color: var(--dark); }
.player-info h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.player-info p { font-size: 0.72rem; color: var(--gray); margin-bottom: 6px; }
.player-stats-row {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.player-stats-row span {
  font-size: 0.65rem; background: rgba(255,255,255,0.06);
  padding: 2px 8px; border-radius: 10px; color: var(--gray);
}

/* ============ STANDINGS ============ */
.standings-section {
  background: var(--dark2); position: relative; overflow: hidden;
}
.section-bg-art {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,166,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.standings-wrap { overflow-x: auto; }
.standings-table {
  width: 100%; border-collapse: collapse; min-width: 700px;
}
.standings-table th {
  padding: 14px 16px; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 1.5px; color: var(--gold); text-transform: uppercase;
  background: rgba(200,166,0,0.08); border-bottom: 2px solid var(--border);
  text-align: center;
}
.standings-table td {
  padding: 14px 16px; font-size: 0.88rem; color: var(--light);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-align: center; transition: var(--transition);
}
.standings-table td:nth-child(2) { text-align: left; }
.standings-table tr { transition: var(--transition); }
.standings-table tr:hover td { background: rgba(200,166,0,0.05); }
.standings-table tr.pos-1 td { background: rgba(255,215,0,0.04); }
.standings-table tr.pos-2 td { background: rgba(192,192,192,0.03); }
.standings-table tr.pos-3 td { background: rgba(205,127,50,0.03); }
.standings-table tbody tr:not(.official-empty-row) {
  display: none;
}
.pos-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  font-weight: 700; font-size: 0.8rem;
  background: rgba(255,255,255,0.07); color: var(--gray);
}
.pos-badge.gold { background: rgba(255,215,0,0.2); color: #ffd700; }
.pos-badge.silver { background: rgba(192,192,192,0.2); color: #c0c0c0; }
.pos-badge.bronze { background: rgba(205,127,50,0.2); color: #cd7f32; }
.team-name-cell { display: flex; align-items: center; gap: 10px; }
.team-name-cell .badge {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 700;
}
.form-dots { display: flex; gap: 4px; }
.form-dots span {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 700;
}
.form-dots .w { background: rgba(34,197,94,0.2); color: #4ade80; }
.form-dots .l { background: rgba(239,68,68,0.15); color: #f87171; }
.standings-legend {
  display: flex; gap: 24px; justify-content: flex-end; margin-top: 16px;
  font-size: 0.75rem; color: var(--gray);
}
#standings .standings-legend {
  display: none;
}
.legend-item { display: flex; align-items: center; gap: 6px; }
.legend-gold { width: 12px; height: 12px; border-radius: 2px; background: rgba(255,215,0,0.3); }
.legend-silver { width: 12px; height: 12px; border-radius: 2px; background: rgba(192,192,192,0.3); }

/* ============ LIVE SCORES ============ */
.scores-section { background: var(--dark); }
.live-scores-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px;
}
.live-score-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.live-scores-grid > .live-score-card {
  display: none;
}
.live-score-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.live-score-card.active-match {
  border-color: rgba(200,0,0,0.3);
  background: linear-gradient(180deg, rgba(200,0,0,0.06) 0%, rgba(255,255,255,0.02) 100%);
}
.live-score-card.completed-match {
  border-color: rgba(200,166,0,0.2);
  background: rgba(255,255,255,0.02);
}
.live-header {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  background: rgba(0,0,0,0.2); font-size: 0.72rem; flex-wrap: wrap;
}
.live-indicator { color: #ff4444; font-weight: 700; display: flex; align-items: center; gap: 4px; }
.live-indicator i { animation: pulse-dot 1s ease infinite; }
.match-round { flex: 1; color: var(--gray); }
.match-duration { color: var(--gray); margin-left: auto; }
.completed-indicator {
  background: rgba(200,166,0,0.2); color: var(--gold);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; padding: 2px 8px; border-radius: 10px;
}
.score-board { padding: 16px; }
.score-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.score-row:last-child { border-bottom: none; }
.score-row.winner-row .score-player { color: var(--gold); }
.score-player {
  display: flex; align-items: center; gap: 10px; flex: 1;
  font-size: 0.88rem; font-weight: 500;
}
.player-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: var(--gold); flex-shrink: 0;
}
.serving-dot { color: var(--gold); font-size: 0.5rem; }
.sets-scores { display: flex; gap: 8px; }
.set-score {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue'; font-size: 1.3rem;
}
.set-score.won { background: rgba(34,197,94,0.15); color: #4ade80; }
.set-score.lost { background: rgba(239,68,68,0.1); color: #f87171; }
.set-score.current { background: rgba(200,166,0,0.15); color: var(--gold); border: 1px solid var(--border); }
.winner-icon { color: var(--gold); margin-left: 8px; font-size: 0.8rem; }
.score-footer {
  display: flex; justify-content: space-between;
  padding: 10px 16px; font-size: 0.72rem; color: var(--gray);
  background: rgba(0,0,0,0.15);
}
.current-game { color: var(--white); font-weight: 600; }

/* ============ NEWS ============ */
.news-section { background: var(--dark2); }
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.news-card { border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); transition: var(--transition); }
.news-grid > .news-card:not([data-live-content]) {
  display: none;
}
.news-card:hover { transform: translateY(-6px); border-color: rgba(200,166,0,0.2); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.news-card.featured-news { grid-column: span 1; grid-row: span 2; }
.news-img {
  height: 200px; position: relative; overflow: hidden;
}
.news-card.featured-news .news-img { height: 100%; min-height: 260px; }
.live-news-img {
  background: linear-gradient(135deg, #1a472a 0%, #2d6a4f 100%);
}
.live-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-card[data-live-content] {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.news-card[data-live-content] .news-img {
  height: 190px;
  min-height: 190px;
  flex: 0 0 auto;
}
.news-card[data-live-content].featured-news .news-img {
  height: 240px;
  min-height: 240px;
}
.news-card[data-live-content].no-image .news-img {
  height: 104px;
  min-height: 104px;
}
.news-card[data-live-content] .news-body {
  flex: 1 1 auto;
}
.live-news-placeholder {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.22);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 4px;
}
.ni1 { background: linear-gradient(135deg, #1a472a 0%, #2d6a4f 50%, #1a472a 100%); }
.ni2 { background: linear-gradient(135deg, #1e1b4b, #3730a3); }
.ni3 { background: linear-gradient(135deg, #7f1d1d, #b91c1c); }
.ni4 { background: linear-gradient(135deg, #0a3d62, #1e6091); }
.ni5 { background: linear-gradient(135deg, #064e3b, #059669); }
.ni6 { background: linear-gradient(135deg, #4a1942, #7b2d8b); }
.news-overlay-img {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(200,166,0,0.1), transparent);
  z-index: 0;
}
.news-category-badge {
  position: absolute; top: 12px; left: 12px;
  z-index: 2;
  background: var(--gold); color: var(--dark);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 2px;
  padding: 4px 10px; border-radius: 20px;
}
.news-body { padding: 20px; }
.news-date { font-size: 0.72rem; color: var(--gray); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.news-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.4; }
.news-card.featured-news h3 { font-size: 1.2rem; }
.news-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.news-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600; color: var(--gold);
  transition: var(--transition);
  background: transparent; border: 0; padding: 0;
  font-family: inherit; cursor: pointer;
}
.news-read-more:hover { gap: 10px; }
.article-modal { color: var(--light); }
.article-modal-image {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.article-modal-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.article-modal-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 12px;
  background: rgba(200,166,0,0.12);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.article-modal h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.7rem;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 18px;
}
.article-modal-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.article-modal-copy p {
  color: var(--light);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}

/* ============ GALLERY ============ */
.gallery-section { background: var(--dark); }
.gallery-filter {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 20px; border-radius: 30px; font-size: 0.82rem; font-weight: 600;
  color: var(--gray); border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery-grid > .gallery-item:not([data-live-content]) {
  display: none;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: var(--transition); display: block; }
.gallery-item:hover { transform: scale(1.02); z-index: 1; }
.gallery-item.g-large { grid-column: span 2; }
.gallery-placeholder {
  width: 100%; height: 100%; position: relative;
  transition: var(--transition);
}
.live-media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gp1 { background: linear-gradient(135deg, #0b2415 0%, #1a472a 40%, #c8a600 100%); }
.gp2 { background: linear-gradient(135deg, #0a3d62, #00b4d8); }
.gp3 { background: linear-gradient(135deg, #4a1942, #7b2d8b, #e879f9); }
.gp4 { background: linear-gradient(135deg, #1e1b4b, #3730a3); }
.gp5 { background: linear-gradient(135deg, #064e3b, #059669, #6ee7b7); }
.gp6 { background: linear-gradient(135deg, #7f1d1d, #dc2626); }
.gp7 { background: linear-gradient(135deg, #0b2415, #1a472a); }
.gp8 { background: linear-gradient(135deg, #2b1200, #c2410c); }
.gp9 { background: linear-gradient(135deg, #1e3a5f, #2563eb); }
.gallery-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px,
    transparent 1px, transparent 20px
  );
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5); opacity: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; transition: var(--transition);
  color: var(--white); font-size: 0.8rem; font-weight: 600;
  text-align: center; padding: 16px;
}
.gallery-overlay i { font-size: 1.5rem; color: var(--gold); }
.gallery-placeholder:hover .gallery-overlay { opacity: 1; }

/* ============ TICKETS ============ */
.tickets-section { background: var(--dark2); }
.tickets-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px;
  margin-bottom: 60px;
}
.ticket-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition); position: relative;
}
.tickets-grid > .ticket-card {
  display: none;
}
.ticket-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.ticket-card.featured-ticket {
  border-color: rgba(200,166,0,0.4);
  background: rgba(200,166,0,0.04);
  transform: scale(1.03);
}
.ticket-card.featured-ticket:hover { transform: scale(1.03) translateY(-8px); }
.ticket-badge {
  position: absolute; top: 16px; right: -24px;
  background: var(--accent); color: #fff;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 2px;
  padding: 4px 36px 4px 12px; transform: rotate(45deg); transform-origin: top left;
  z-index: 1;
}
.ticket-header {
  padding: 32px 24px; text-align: center;
}
.ticket-header.standard { background: linear-gradient(135deg, #0b2415, #1a472a); }
.ticket-header.premium { background: linear-gradient(135deg, #1a1200, #3a2d00, #7a5d00); }
.ticket-header.vip { background: linear-gradient(135deg, #1e0a00, #4a1800, #8b2200); }
.ticket-header.season { background: linear-gradient(135deg, #0a0a2e, #1e1b4b, #3730a3); }
.ticket-icon { font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
.ticket-header h3 { font-family: 'Rajdhani'; font-size: 1.3rem; font-weight: 700; color: var(--white); }
.ticket-price { font-family: 'Bebas Neue'; font-size: 2.5rem; color: var(--gold); }
.ticket-per { font-size: 0.72rem; color: var(--gray); }
.ticket-features { padding: 24px; }
.ticket-features li {
  padding: 8px 0; font-size: 0.85rem; color: var(--light);
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ticket-features li:last-child { border-bottom: none; }
.ticket-features li i.fa-check { color: #4ade80; }
.ticket-features li i.fa-times { color: #f87171; }
.ticket-features li.disabled { color: var(--gray); }
.btn-ticket {
  display: block; text-align: center; margin: 0 24px 24px;
  padding: 12px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.85rem; letter-spacing: 1px;
  transition: var(--transition);
}
.standard-btn { background: rgba(200,166,0,0.1); color: var(--gold); border: 1px solid var(--border); }
.standard-btn:hover { background: var(--gold); color: var(--dark); }
.premium-btn { background: var(--gold); color: var(--dark); }
.premium-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.vip-btn { background: var(--accent); color: #fff; }
.vip-btn:hover { background: #ff7a20; transform: translateY(-2px); }
.season-btn { background: linear-gradient(90deg, #3730a3, #7c3aed); color: #fff; }
.season-btn:hover { transform: translateY(-2px); }
.venue-info { margin-top: 40px; }
.venue-info h3 {
  font-family: 'Bebas Neue'; font-size: 1.6rem; color: var(--gold); letter-spacing: 3px;
  margin-bottom: 24px; text-align: center;
}
.venues-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px;
}
.venue-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 20px; text-align: center; transition: var(--transition);
}
.venues-grid > .venue-card {
  display: none;
}
.venue-card:hover { border-color: rgba(200,166,0,0.3); transform: translateY(-4px); }
.venue-card i { font-size: 1.5rem; color: var(--gold); margin-bottom: 12px; display: block; }
.venue-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.venue-card p { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }

/* ============ SPONSORS ============ */
.sponsors-section { background: var(--dark); }
.sponsor-tiers { display: flex; flex-direction: column; gap: 48px; margin-bottom: 60px; }
.sponsor-tier {}
.sponsor-tiers > .sponsor-tier {
  display: none;
}
.tier-label {
  text-align: center; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3px; color: var(--gray); text-transform: uppercase;
  margin-bottom: 20px; position: relative;
}
.tier-label::before, .tier-label::after {
  content: ''; position: absolute; top: 50%;
  width: 30%; height: 1px; background: rgba(255,255,255,0.08);
}
.tier-label::before { left: 0; }
.tier-label::after { right: 0; }
.sponsor-logos {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.sponsor-logo-item { border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.sponsor-logo-item:hover { transform: translateY(-4px); }
.title-tier .sponsor-logo-item { width: 300px; height: 100px; }
.gold-tier .sponsor-logo-item { width: 200px; height: 80px; }
.silver-tier .sponsor-logo-item.sm { width: 160px; height: 70px; }
.partner-tier .sponsor-logo-item.xs { width: 130px; height: 55px; }
.sponsor-placeholder {
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.sponsor-placeholder:hover { background: rgba(200,166,0,0.08); border-color: var(--border); }
.sp-inner {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--gray); font-size: 0.8rem; font-weight: 600;
}
.sp-inner i { font-size: 1.4rem; color: rgba(200,166,0,0.5); }
.become-sponsor {
  text-align: center; padding: 48px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
}
.become-sponsor h3 { font-family: 'Rajdhani'; font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.become-sponsor p { color: var(--gray); margin-bottom: 24px; }

/* ============ REGISTRATION ============ */
.registration-section { background: var(--dark2); }
.reg-grid {
  display: none;
}
.registration-live-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.registration-live-cta span {
  color: var(--light);
  font-weight: 600;
}
.reg-info h3 {
  font-family: 'Rajdhani'; font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin-bottom: 24px;
}
.reg-details-list { margin-bottom: 32px; }
.reg-details-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.reg-details-list li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.reg-details-list div { display: flex; flex-direction: column; gap: 2px; }
.reg-details-list strong { font-size: 0.82rem; color: var(--light); }
.reg-details-list span { font-size: 0.78rem; color: var(--gray); }
.reg-categories h4 {
  font-family: 'Rajdhani'; font-weight: 600; color: var(--gray);
  letter-spacing: 2px; text-transform: uppercase; font-size: 0.78rem; margin-bottom: 12px;
}
.cat-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-pill {
  padding: 5px 14px; border-radius: 20px; font-size: 0.75rem;
  background: rgba(200,166,0,0.1); color: var(--gold); border: 1px solid var(--border);
}
.reg-form-wrap {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg); padding: 32px;
}
.reg-form h3 { font-family: 'Rajdhani'; font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 600; color: var(--gray);
  letter-spacing: 0.5px; margin-bottom: 6px;
}
.form-input {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; color: var(--light);
  font-size: 0.88rem; transition: var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--gold); background: rgba(200,166,0,0.05);
}
.form-input::placeholder { color: var(--gray); }
select.form-input option { background: var(--dark2); }
textarea.form-input { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.radio-group { display: flex; gap: 24px; }
.radio-opt {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; cursor: pointer; color: var(--light);
}
.radio-opt input { accent-color: var(--gold); }
.checkbox-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; cursor: pointer; color: var(--gray);
}
.checkbox-label input { accent-color: var(--gold); }
.btn-full { width: 100%; justify-content: center; }

/* ============ RULES ============ */
.rules-section { background: var(--dark); }
.rules-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px;
}
.rule-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 28px; transition: var(--transition);
}
.rule-card:hover {
  border-color: rgba(200,166,0,0.2);
  transform: translateY(-4px);
}
.rule-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(200,166,0,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold); margin-bottom: 16px;
}
.rule-card h3 {
  font-family: 'Rajdhani'; font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 14px;
}
.rule-card ul { display: flex; flex-direction: column; gap: 8px; }
.rule-card li {
  font-size: 0.82rem; color: var(--gray); padding-left: 12px; position: relative;
}
.rule-card li::before {
  content: '●'; position: absolute; left: 0;
  color: var(--gold); font-size: 0.5rem; top: 5px;
}
.rule-card li a {
  color: var(--gold); text-decoration: underline; font-size: 0.8rem;
  transition: var(--transition);
}
.rule-card li a:hover { color: var(--gold-light); }
.rule-card li a i { margin-right: 6px; }

/* ============ CONTACT ============ */
.contact-section { background: var(--dark2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.contact-info-col { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 20px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: var(--transition);
}
.contact-info-card:hover { border-color: rgba(200,166,0,0.2); }
.contact-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(200,166,0,0.1); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.contact-info-card h4 { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.contact-info-card p { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }
.contact-info-card a {
  color: var(--gray);
  transition: var(--transition);
}
.contact-info-card a:hover {
  color: var(--gold);
}
.social-links h4 {
  font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 12px;
}
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.social-icon:hover { transform: translateY(-3px); }
.social-icon.fb { background: rgba(24,119,242,0.15); color: #1877f2; }
.social-icon.fb:hover { background: #1877f2; color: #fff; }
.social-icon.tw { background: rgba(29,161,242,0.15); color: #1da1f2; }
.social-icon.tw:hover { background: #1da1f2; color: #fff; }
.social-icon.ig { background: rgba(228,64,95,0.15); color: #e4405f; }
.social-icon.ig:hover { background: #e4405f; color: #fff; }
.social-icon.yt { background: rgba(255,0,0,0.15); color: #ff0000; }
.social-icon.yt:hover { background: #ff0000; color: #fff; }
.social-icon.li { background: rgba(0,119,181,0.15); color: #0077b5; }
.social-icon.li:hover { background: #0077b5; color: #fff; }
.contact-form-col {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg); padding: 36px;
}
.contact-form h3 {
  font-family: 'Rajdhani'; font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin-bottom: 24px;
}

/* ============ POLICY PAGES ============ */
.policy-shell {
  min-height: 100vh;
  background: var(--dark);
}
.policy-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11,21,14,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.policy-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.policy-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  letter-spacing: 4px;
}
.policy-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.policy-nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.policy-nav-links a {
  color: var(--gray);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 6px;
  transition: var(--transition);
}
.policy-nav-links a:hover,
.policy-nav-links a.active {
  color: var(--gold);
  background: rgba(200,166,0,0.1);
}
.policy-main {
  padding: 70px 0 90px;
}
.policy-hero {
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(200,166,0,0.14);
}
.policy-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.policy-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 18px;
}
.policy-subtitle {
  max-width: 820px;
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
}
.policy-meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.policy-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--light);
  background: rgba(255,255,255,0.03);
  font-size: 0.78rem;
}
.policy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  padding-top: 42px;
}
.policy-toc {
  position: sticky;
  top: 100px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255,255,255,0.03);
}
.policy-toc h2 {
  font-family: 'Rajdhani', sans-serif;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 12px;
}
.policy-toc a {
  display: block;
  color: var(--gray);
  font-size: 0.84rem;
  padding: 7px 0;
  transition: var(--transition);
}
.policy-toc a:hover { color: var(--gold); }
.policy-document {
  border-left: 1px solid rgba(200,166,0,0.22);
  padding-left: 32px;
}
.policy-section {
  padding-bottom: 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.policy-section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.policy-section h2 {
  font-family: 'Rajdhani', sans-serif;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 12px;
}
.policy-section p,
.policy-section li {
  color: var(--gray);
  font-size: 0.96rem;
  line-height: 1.8;
}
.policy-section p + p,
.policy-section ul + p,
.policy-section p + ul {
  margin-top: 12px;
}
.policy-section ul {
  list-style: disc;
  padding-left: 20px;
}
.policy-section a {
  color: var(--gold);
  font-weight: 700;
}
.policy-section a:hover { color: var(--gold-light); }
.policy-callout {
  border: 1px solid rgba(200,166,0,0.22);
  border-radius: 8px;
  padding: 18px;
  margin-top: 18px;
  background: rgba(200,166,0,0.06);
}
.policy-footer {
  border-top: 1px solid var(--border);
  background: var(--dark2);
  padding: 22px 0;
}
.policy-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--gray);
  font-size: 0.8rem;
}
.policy-footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.policy-footer-links a {
  color: var(--gray);
  transition: var(--transition);
}
.policy-footer-links a:hover { color: var(--gold); }

/* ============ FOOTER ============ */
.footer { background: var(--dark2); border-top: 1px solid var(--border); }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 48px;
}
.footer-brand p { color: var(--gray); font-size: 0.85rem; line-height: 1.7; margin: 16px 0 24px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
}
.footer-logo img {
  width: 44px; height: 44px; object-fit: contain;
}
.footer-logo span {
  font-family: 'Bebas Neue'; font-size: 1.8rem; letter-spacing: 4px; color: var(--gold);
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 0.85rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--dark); }
.footer-links h4 {
  font-family: 'Rajdhani'; font-weight: 700; color: var(--white);
  letter-spacing: 2px; text-transform: uppercase; font-size: 0.82rem; margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.82rem; color: var(--gray); transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-newsletter h4 {
  font-family: 'Rajdhani'; font-weight: 700; color: var(--white);
  letter-spacing: 2px; text-transform: uppercase; font-size: 0.82rem; margin-bottom: 8px;
}
.footer-newsletter p { font-size: 0.82rem; color: var(--gray); margin-bottom: 16px; }
.newsletter-form { display: flex; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.newsletter-form input {
  flex: 1; padding: 12px 16px; background: rgba(255,255,255,0.04);
  border: none; outline: none; color: var(--light); font-size: 0.85rem;
}
.newsletter-form input::placeholder { color: var(--gray); }
.newsletter-form button {
  padding: 12px 16px; background: var(--gold); color: var(--dark); font-size: 0.9rem;
  cursor: pointer; transition: var(--transition);
}
.newsletter-form button:hover { background: var(--gold-light); }
.footer-badges { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; color: var(--gray);
}
.footer-badge i { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 0; }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: 0.78rem; color: var(--gray);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--gray); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============ BACK TO TOP ============ */
#back-to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(200,166,0,0.4);
  transition: var(--transition); opacity: 0; visibility: hidden; z-index: 999;
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { transform: translateY(-4px); }

/* ============ MODAL ============ */
.modal {
  position: fixed; inset: 0; z-index: 9998;
  display: none; align-items: center; justify-content: center;
}
.modal.open { display: flex; }
.modal-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
}
.modal-content {
  position: relative; z-index: 1;
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  max-width: 600px; width: 90%; max-height: 80vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,0.05); color: var(--gray);
  font-size: 0.9rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.modal-close:hover { background: rgba(255,0,0,0.2); color: #f87171; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card.featured-news { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 900px) {
  .reg-grid, .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.g-large { grid-column: span 2; }
  .hero { margin-top: 106px; }
  .policy-layout { grid-template-columns: 1fr; gap: 28px; }
  .policy-toc { position: static; }
  .policy-document { padding-left: 0; border-left: 0; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 106px; left: -100%; right: 0;
    background: rgba(11,21,14,0.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 24px;
    border-bottom: 1px solid var(--border);
    transition: left 0.3s ease;
    gap: 4px; width: 100%;
  }
  .nav-menu.open { left: 0; }
  .nav-link { width: 100%; padding: 12px 16px; font-size: 0.9rem; }
  .hero-stats { flex-direction: column; gap: 0; width: 100%; padding: 20px; }
  .stat-divider { width: 80%; height: 1px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .section { padding: 60px 0; }
  .teams-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card.featured-news { grid-column: span 1; }
  .tickets-grid { grid-template-columns: 1fr; }
  .ticket-card.featured-ticket { transform: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .policy-nav { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .policy-main { padding: 44px 0 70px; }
  .policy-title { font-size: 3.5rem; }
}
@media (max-width: 480px) {
  .teams-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.g-large { grid-column: span 1; }
  .matches-grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; }
  .players-row { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
}

/* ============ NOTIFICATION TOAST ============ */
.toast {
  position: fixed; bottom: 80px; right: 30px; z-index: 9999;
  background: var(--primary-light); border: 1px solid var(--gold);
  color: var(--white); padding: 14px 20px; border-radius: var(--radius);
  font-size: 0.85rem; display: flex; align-items: center; gap: 10px;
  transform: translateX(200%); transition: transform 0.3s ease;
  box-shadow: var(--shadow);
}
.toast.show { transform: translateX(0); }
.toast i { color: var(--gold); }
