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

:root {
  --primary: #1a237e;
  --primary-dark: #0d1642;
  --primary-light: #3949ab;
  --secondary: #ff6f00;
  --secondary-dark: #e65100;
  --bg: #e8eaf6;
  --bg-white: #ffffff;
  --text: #263238;
  --text-light: #546e7a;
  --border: #c5cae9;
  --success: #43a047;
  --danger: #e53935;
  --shadow: 0 4px 20px rgba(26, 35, 126, 0.12);
  --shadow-hover: 0 8px 30px rgba(26, 35, 126, 0.2);
  --radius: 12px;
  --transition: all 0.3s ease;
}

@font-face {
  font-family: 'Noto Sans SC';
  src: local('Noto Sans SC'), local('NotoSansSC-Regular');
  font-display: swap;
}

body {
  font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'ZCOOL KuaiLe', 'Noto Sans SC', sans-serif;
  color: var(--primary);
  line-height: 1.3;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary); }

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== Header / Navigation ========== */
.header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: 'ZCOOL KuaiLe', sans-serif;
  font-size: 24px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--secondary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.logo span { color: var(--secondary); }

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

.nav-link {
  color: rgba(255,255,255,0.9);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* ========== Hero / Banner ========== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #283593 50%, var(--primary-light) 100%);
  color: #fff;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,111,0,0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,111,0,0.9);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 52px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero h1 span { color: var(--secondary); }

.hero-desc {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255,111,0,0.4);
}

.btn-primary:hover {
  background: var(--secondary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,111,0,0.5);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

.btn-secondary {
  background: var(--primary);
  color: #fff;
}

.btn-secondary:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* ========== Section Common ========== */
.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--bg-white);
}

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

.section-tag {
  display: inline-block;
  background: rgba(255,111,0,0.1);
  color: var(--secondary);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: 36px;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-light);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== Quick Stats ========== */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stat-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  font-family: 'ZCOOL KuaiLe', sans-serif;
}

.stat-label {
  color: var(--text-light);
  font-size: 14px;
}

/* ========== Today's Events (Cards) ========== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.event-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--primary);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.event-card.live {
  border-top-color: var(--danger);
}

.event-card.upcoming {
  border-top-color: var(--secondary);
}

.event-card.football { border-top-color: #2e7d32; }
.event-card.basketball { border-top-color: #e65100; }
.event-card.esports { border-top-color: #6a1b9a; }
.event-card.boxing { border-top-color: #c62828; }
.event-card.racing { border-top-color: #ef6c00; }
.event-card.swimming { border-top-color: #00838f; }

.event-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

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

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

.event-status {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.status-live {
  background: var(--danger);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.status-upcoming {
  background: var(--secondary);
  color: #fff;
}

.status-finished {
  background: var(--text-light);
  color: #fff;
}

.event-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-category {
  font-size: 12px;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.event-title {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.event-meta {
  display: flex;
  gap: 16px;
  color: var(--text-light);
  font-size: 13px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.event-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px;
  background: var(--bg);
  border-radius: 10px;
}

.team {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.team-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.team-name {
  font-size: 14px;
  font-weight: 600;
}

.vs {
  font-family: 'ZCOOL KuaiLe', sans-serif;
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}

.event-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.event-time {
  font-size: 13px;
  color: var(--text-light);
}

.watch-btn {
  background: var(--primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.watch-btn:hover {
  background: var(--secondary);
  color: #fff;
}

/* ========== Quick Access (Home) ========== */
.access-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.access-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: var(--text);
}

.access-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  color: var(--text);
}

.access-icon {
  font-size: 42px;
  margin-bottom: 16px;
  display: block;
}

.access-title {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
}

.access-desc {
  font-size: 13px;
  color: var(--text-light);
}

/* ========== Filter (Events Page) ========== */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--border);
  background: var(--bg-white);
  color: var(--text);
  border-radius: 24px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ========== Schedule Table ========== */
.schedule-week {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.schedule-day {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 14px 12px;
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.schedule-day:hover,
.schedule-day.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.schedule-day-date {
  font-family: 'ZCOOL KuaiLe', sans-serif;
  font-size: 24px;
  font-weight: 700;
  display: block;
}

.schedule-day-name {
  font-size: 13px;
  opacity: 0.8;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.schedule-item {
  display: flex;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border-left: 5px solid var(--primary);
}

.schedule-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-hover);
}

.schedule-item.live { border-left-color: var(--danger); }
.schedule-item.upcoming { border-left-color: var(--secondary); }
.schedule-item.finished { border-left-color: var(--text-light); }

.schedule-time {
  width: 140px;
  padding: 24px 20px;
  background: var(--bg);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.schedule-time .time {
  font-family: 'ZCOOL KuaiLe', sans-serif;
  font-size: 28px;
  color: var(--primary);
  font-weight: 700;
}

.schedule-time .date {
  font-size: 13px;
  color: var(--text-light);
}

.schedule-content {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.schedule-info {
  flex: 1;
}

.schedule-category {
  font-size: 12px;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.schedule-title {
  font-size: 17px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 8px;
}

.schedule-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
}

.schedule-score {
  text-align: center;
  padding: 0 24px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  min-width: 160px;
}

.score-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 6px;
}

.score-team {
  font-size: 14px;
  font-weight: 600;
}

.score-value {
  font-family: 'ZCOOL KuaiLe', sans-serif;
  font-size: 24px;
  color: var(--primary);
  font-weight: 700;
}

.score-vs {
  color: var(--text-light);
}

.schedule-action {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ========== Results / History ========== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.result-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.result-card:hover {
  box-shadow: var(--shadow-hover);
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.result-category {
  font-size: 13px;
  color: var(--secondary);
  font-weight: 600;
}

.result-date {
  font-size: 13px;
  color: var(--text-light);
}

.result-match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.result-team {
  text-align: center;
  flex: 1;
}

.result-team-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 8px;
}

.result-team-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.result-team-score {
  font-family: 'ZCOOL KuaiLe', sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.result-team.winner .result-team-score { color: var(--success); }
.result-team.loser .result-team-score { color: var(--text-light); }

.result-vs {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 600;
}

.result-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  font-size: 13px;
}

.result-detail-item {
  text-align: center;
  padding: 8px;
  background: var(--bg);
  border-radius: 8px;
}

.result-detail-label {
  color: var(--text-light);
  font-size: 11px;
  margin-bottom: 2px;
}

.result-detail-value {
  color: var(--primary);
  font-weight: 600;
}

/* ========== Ranking ========== */
.ranking-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  background: var(--bg-white);
  padding: 6px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.ranking-tab {
  flex: 1;
  padding: 12px 20px;
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
}

.ranking-tab.active {
  background: var(--primary);
  color: #fff;
}

.ranking-table {
  width: 100%;
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ranking-header {
  display: grid;
  grid-template-columns: 60px 1fr 100px 100px 100px 120px;
  padding: 16px 24px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.ranking-row {
  display: grid;
  grid-template-columns: 60px 1fr 100px 100px 100px 120px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: var(--transition);
}

.ranking-row:last-child { border-bottom: none; }
.ranking-row:hover { background: rgba(26,35,126,0.04); }

.ranking-pos {
  font-family: 'ZCOOL KuaiLe', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
}

.ranking-pos.gold { color: #ffd700; }
.ranking-pos.silver { color: #c0c0c0; }
.ranking-pos.bronze { color: #cd7f32; }

.ranking-team {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ranking-team-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

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

.ranking-stat {
  text-align: center;
  font-size: 14px;
  color: var(--text);
}

.ranking-stat.highlight {
  color: var(--secondary);
  font-weight: 700;
}

/* ========== About Page ========== */
.about-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.about-hero h1 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 16px;
}

.about-hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 640px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.about-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.about-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
}

.team-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-member {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.team-member h4 {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 4px;
}

.team-role {
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-desc {
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.6;
}

/* ========== Contact Page ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

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

.contact-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-hover);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 17px;
  margin-bottom: 6px;
}

.contact-item p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}

.contact-form-wrap {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-form-wrap .form-desc {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 14px;
}

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

.form-label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: var(--bg);
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-white);
}

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

/* ========== Footer ========== */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer-col h5 {
  color: #fff;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 16px;
  margin-bottom: 18px;
  font-weight: 600;
}

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

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

.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .quick-stats { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .access-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .team-section { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }

  .ranking-header, .ranking-row {
    grid-template-columns: 50px 1fr 80px 80px 80px;
  }
  .ranking-header .hide-sm,
  .ranking-row .hide-sm { display: none; }
}

@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 20px;
    gap: 8px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }

  .nav-list.open { transform: translateY(0); }

  .nav-link { display: block; padding: 12px 16px; }

  .nav-toggle { display: block; }

  .hero { padding: 56px 0 72px; }
  .hero h1 { font-size: 32px; }
  .hero-desc { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .section { padding: 48px 0; }
  .section-title { font-size: 26px; }

  .quick-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -30px;
  }

  .events-grid { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .team-section { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .schedule-item { flex-direction: column; }
  .schedule-time { width: 100%; padding: 16px; }
  .schedule-content { flex-direction: column; align-items: flex-start; }
  .schedule-score {
    border-left: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    width: 100%;
  }

  .ranking-header { display: none; }
  .ranking-row {
    grid-template-columns: 40px 1fr 80px;
    padding: 12px 16px;
  }
  .ranking-row > div:nth-child(4),
  .ranking-row > div:nth-child(5) { display: none; }

  .result-details { grid-template-columns: 1fr; }

  .contact-grid { gap: 32px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .quick-stats { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 22px; }
  .btn { padding: 12px 24px; font-size: 15px; }
}

/* ========== Utilities ========== */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
