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

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

:root {
  --bg-deep: #0d0d1a;
  --bg-card: #12122a;
  --bg-card-hover: #1a1a3e;
  --neon-green: #39ff14;
  --neon-purple: #ff00ff;
  --neon-blue: #00ffff;
  --neon-pink: #ff2d75;
  --neon-yellow: #ffff00;
  --text-primary: #e0e0e0;
  --text-secondary: #a0a0b0;
  --text-muted: #606070;
  --border-color: rgba(57, 255, 20, 0.3);
  --glow-green: 0 0 8px #39ff14, 0 0 20px rgba(57, 255, 20, 0.5);
  --glow-purple: 0 0 8px #ff00ff, 0 0 20px rgba(255, 0, 255, 0.5);
  --glow-blue: 0 0 8px #00ffff, 0 0 20px rgba(0, 255, 255, 0.5);
  --glow-pink: 0 0 8px #ff2d75, 0 0 20px rgba(255, 45, 117, 0.5);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans SC', sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    transparent 0%,
    rgba(57, 255, 20, 0.01) 50%,
    transparent 100%
  );
  background-size: 100% 4px;
  background-repeat: repeat;
  animation: scanline 8s linear infinite;
  pointer-events: none;
  z-index: 9999;
}

@keyframes scanline {
  0% { background-position: 0 -100vh; }
  100% { background-position: 0 100vh; }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.4; }
}

@keyframes float-up {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slide-in {
  from { transform: translateX(-20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes live-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

@keyframes border-glow {
  0%, 100% {
    box-shadow: 0 0 5px var(--neon-green), 0 0 10px rgba(57, 255, 20, 0.5), inset 0 0 5px rgba(57, 255, 20, 0.1);
  }
  50% {
    box-shadow: 0 0 10px var(--neon-green), 0 0 25px rgba(57, 255, 20, 0.6), inset 0 0 10px rgba(57, 255, 20, 0.2);
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Noto Sans SC', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}

a {
  color: var(--neon-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--neon-purple);
  text-shadow: var(--glow-purple);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ========== Header & Navigation ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 13, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(13, 13, 26, 0.98);
  box-shadow: 0 2px 30px rgba(57, 255, 20, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-brand {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--neon-green);
  text-shadow: var(--glow-green);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand .logo-icon {
  font-size: 1.8rem;
  animation: live-pulse 2s infinite;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 5px;
}

.nav-menu a {
  display: block;
  padding: 8px 18px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--neon-green);
  background: rgba(57, 255, 20, 0.1);
  text-shadow: 0 0 8px var(--neon-green);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--neon-green);
  box-shadow: var(--glow-green);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--neon-green);
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(57, 255, 20, 0.5);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ========== Hero Section ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(57, 255, 20, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 0, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(0, 255, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--bg-deep), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(57, 255, 20, 0.15);
  border: 1px solid var(--neon-green);
  border-radius: 30px;
  color: var(--neon-green);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 24px;
  animation: neon-flicker 4s infinite;
}

.hero-badge .live-dot {
  width: 8px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  animation: live-pulse 1s infinite;
  box-shadow: var(--glow-green);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
  text-shadow:
    0 0 10px rgba(57, 255, 20, 0.6),
    0 0 30px rgba(57, 255, 20, 0.3);
}

.hero-title .highlight {
  color: var(--neon-green);
  text-shadow: var(--glow-green);
}

.hero-title .highlight-purple {
  color: var(--neon-purple);
  text-shadow: var(--glow-purple);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  border: 2px solid var(--neon-green);
  background: transparent;
  color: var(--neon-green);
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: var(--neon-green);
  color: var(--bg-deep);
  box-shadow: var(--glow-green);
}

.btn-secondary {
  border-color: var(--neon-purple);
  color: var(--neon-purple);
}

.btn-secondary:hover {
  background: var(--neon-purple);
  color: #fff;
  box-shadow: var(--glow-purple);
}

.btn-secondary::before {
  background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.2), transparent);
}

.btn-outline {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
}

.btn-outline:hover {
  background: var(--neon-blue);
  color: var(--bg-deep);
  box-shadow: var(--glow-blue);
}

.btn-outline::before {
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
}

/* ========== Sections ========== */
.section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--neon-green);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: #fff;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-green), var(--neon-purple));
  margin: 20px auto 0;
  box-shadow: var(--glow-green);
}

/* ========== Cards ========== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-green), var(--neon-purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-green);
  box-shadow: 0 8px 30px rgba(57, 255, 20, 0.15), 0 0 15px rgba(57, 255, 20, 0.1);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 16/9;
  background: #000;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: rgba(57, 255, 20, 0.9);
  color: var(--bg-deep);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.card-badge.live {
  background: var(--neon-pink);
  color: #fff;
  box-shadow: var(--glow-pink);
}

.card-badge.live::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: live-pulse 1s infinite;
}

.card-badge.purple {
  background: var(--neon-purple);
  color: #fff;
}

.card-badge.blue {
  background: var(--neon-blue);
  color: var(--bg-deep);
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(57, 255, 20, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-price {
  color: var(--neon-green);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

/* ========== Grids ========== */
.grid {
  display: grid;
  gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ========== Match Cards (Hero + Matches) ========== */
.match-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.match-card:hover {
  border-color: var(--neon-green);
  box-shadow: 0 4px 20px rgba(57, 255, 20, 0.2);
  transform: translateY(-3px);
}

.match-card.live-match {
  border-color: var(--neon-pink);
  box-shadow: 0 0 15px rgba(255, 45, 117, 0.2);
}

.match-card.live-match .match-live-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 10px;
  background: var(--neon-pink);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 1px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.match-card.live-match .match-live-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  animation: live-pulse 1s infinite;
}

.match-teams {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.match-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.match-team-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-deep), var(--bg-card-hover));
  border: 2px solid var(--neon-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  color: var(--neon-green);
  font-size: 1.4rem;
}

.match-team-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  text-align: center;
}

.match-vs {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--neon-purple);
  text-shadow: 0 0 8px rgba(255, 0, 255, 0.5);
  padding: 0 8px;
}

.match-score {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
}

.match-score .score-home { color: var(--neon-green); }
.match-score .score-away { color: var(--neon-purple); }
.match-score .score-sep { color: var(--text-muted); }

.match-info {
  text-align: right;
  min-width: 100px;
}

.match-game {
  font-size: 0.8rem;
  color: var(--neon-blue);
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.match-time {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.match-status {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(57, 255, 20, 0.15);
  color: var(--neon-green);
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
}

.match-status.ended {
  background: rgba(160, 160, 176, 0.15);
  color: var(--text-muted);
}

.match-status.live {
  background: rgba(255, 45, 117, 0.15);
  color: var(--neon-pink);
}

/* ========== Filter Tabs ========== */
.filter-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-tab {
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
  background: rgba(57, 255, 20, 0.15);
  border-color: var(--neon-green);
  color: var(--neon-green);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
}

/* ========== Game Cards ========== */
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.game-card:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 8px 30px rgba(255, 0, 255, 0.2);
  transform: translateY(-5px);
}

.game-card-header {
  padding: 24px;
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.1), rgba(255, 0, 255, 0.1));
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.game-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-deep), var(--bg-card-hover));
  border: 2px solid var(--neon-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--neon-green);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.game-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.game-category {
  font-size: 0.85rem;
  color: var(--neon-blue);
  letter-spacing: 1px;
}

.game-body {
  padding: 20px 24px;
}

.game-stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin-bottom: 16px;
}

.game-stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--neon-green);
}

.game-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.game-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.game-footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(57, 255, 20, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ========== VOD Cards ========== */
.vod-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.vod-card:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.2);
  transform: translateY(-4px);
}

.vod-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}

.vod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vod-card:hover .vod-thumb img {
  transform: scale(1.05);
}

.vod-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(57, 255, 20, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: var(--glow-green);
}

.vod-card:hover .vod-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.vod-play::after {
  content: '';
  border-left: 18px solid var(--bg-deep);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

.vod-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 3px 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 0.8rem;
  border-radius: 3px;
}

.vod-info {
  padding: 16px;
}

.vod-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vod-meta {
  display: flex;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ========== Stats / Table ========== */
.stats-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.1);
}

.stats-table thead {
  background: linear-gradient(90deg, rgba(57, 255, 20, 0.2), rgba(255, 0, 255, 0.2));
}

.stats-table th {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 16px 20px;
  text-align: left;
  color: var(--neon-green);
  text-transform: uppercase;
}

.stats-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(57, 255, 20, 0.1);
  color: var(--text-primary);
  font-size: 0.95rem;
}

.stats-table tbody tr:hover {
  background: rgba(57, 255, 20, 0.05);
}

.stats-table tbody tr:last-child td {
  border-bottom: none;
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
  background: var(--bg-deep);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.rank-badge.top1 {
  background: linear-gradient(135deg, var(--neon-yellow), #ff8c00);
  color: var(--bg-deep);
  border-color: var(--neon-yellow);
  box-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.rank-badge.top2 {
  background: linear-gradient(135deg, #c0c0c0, #808080);
  color: var(--bg-deep);
  border-color: #c0c0c0;
}

.rank-badge.top3 {
  background: linear-gradient(135deg, #cd7f32, #8b4513);
  color: #fff;
  border-color: #cd7f32;
}

.stat-value {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: var(--neon-green);
}

.stat-bar {
  width: 100%;
  height: 8px;
  background: var(--bg-deep);
  border-radius: 4px;
  overflow: hidden;
  max-width: 120px;
}

.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
}

/* ========== About / Feature Cards ========== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.feature-card {
  text-align: center;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  transition: all 0.4s ease;
  position: relative;
}

.feature-card:hover {
  border-color: var(--neon-green);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(57, 255, 20, 0.2);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.2), rgba(255, 0, 255, 0.2));
  border: 2px solid var(--neon-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--neon-green);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #fff;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== Contact Forms ========== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--neon-green);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-primary);
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon-green);
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ========== Partner Logos ========== */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.partner-logo {
  aspect-ratio: 2/1;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: var(--neon-blue);
  letter-spacing: 1px;
  transition: all 0.3s ease;
  padding: 16px;
  text-align: center;
}

.partner-logo:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  transform: scale(1.05);
}

/* ========== Footer ========== */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-green), var(--neon-purple), var(--neon-blue), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--neon-green);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-col p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--neon-green);
  padding-left: 5px;
}

.footer-brand {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--neon-green);
  margin-bottom: 12px;
  text-shadow: var(--glow-green);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: var(--bg-deep);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: var(--neon-green);
  color: var(--bg-deep);
  border-color: var(--neon-green);
  box-shadow: var(--glow-green);
}

.footer-bottom {
  border-top: 1px solid rgba(57, 255, 20, 0.1);
  padding: 24px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ========== Scrollbar ========== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--neon-green), var(--neon-purple));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--neon-purple), var(--neon-pink));
}

/* ========== Animations ========== */
.fade-in {
  animation: float-up 0.6s ease-out both;
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }
.fade-in-delay-4 { animation-delay: 0.4s; }

/* ========== Responsive ========== */
@media (max-width: 968px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .match-card { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(13, 13, 26, 0.98);
    padding: 20px;
    gap: 5px;
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero {
    padding: 90px 0 40px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 50px 0;
  }

  .match-teams {
    width: 100%;
    justify-content: center;
  }

  .match-info {
    text-align: center;
    width: 100%;
  }

  .stats-table {
    font-size: 0.85rem;
  }

  .stats-table th,
  .stats-table td {
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section {
    padding: 40px 0;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .match-team-logo {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}