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

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

:root {
  --primary: #4527a0;
  --primary-light: #7e57c2;
  --primary-dark: #311b92;
  --accent: #ff5722;
  --accent-light: #ff8a65;
  --accent-dark: #e64a19;
  --bg: #1a1a2e;
  --bg-light: #252540;
  --bg-card: #2d2d50;
  --bg-dark: #0f0f1e;
  --text: #e8eaf6;
  --text-muted: #b39ddb;
  --text-dim: #9575cd;
  --border: #3d3d5c;
  --success: #4caf50;
  --warning: #ff9800;
  --font-body: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'ZCOOL KuaiLe', 'Noto Sans SC', sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(69, 39, 160, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(255, 87, 34, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(15, 15, 30, 0.8) 0%, var(--bg) 100%);
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: linear-gradient(180deg, var(--primary-dark) 0%, rgba(49, 27, 146, 0.95) 100%);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 20px rgba(255, 87, 34, 0.4);
}

.logo span {
  background: linear-gradient(90deg, var(--text) 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav {
  display: flex;
  gap: 4px;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

nav a:hover,
nav a.active {
  color: var(--text);
  background: rgba(255, 87, 34, 0.15);
}

nav a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.hero {
  padding: 60px 0 40px;
  position: relative;
}

.hero-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 60%, var(--accent-dark) 100%);
  border-radius: 16px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

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

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

.hero-tag {
  display: inline-block;
  background: rgba(255, 87, 34, 0.2);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #fff 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 550px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 87, 34, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 87, 34, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--text-muted);
}

.section {
  padding: 50px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text);
  position: relative;
  padding-left: 18px;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 32px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary-light) 100%);
  border-radius: 3px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 15px;
}

.dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.dashboard-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-light) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.dashboard-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(255, 87, 34, 0.15) 0%, transparent 70%);
}

.dashboard-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.dashboard-icon.purple {
  background: rgba(126, 87, 194, 0.2);
  color: var(--primary-light);
}

.dashboard-icon.orange {
  background: rgba(255, 87, 34, 0.15);
  color: var(--accent);
}

.dashboard-icon.green {
  background: rgba(76, 175, 80, 0.15);
  color: var(--success);
}

.dashboard-icon.blue {
  background: rgba(33, 150, 243, 0.15);
  color: #2196f3;
}

.dashboard-value {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--text);
  margin-bottom: 4px;
}

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

.dashboard-trend {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 12px;
}

.dashboard-trend.up {
  background: rgba(76, 175, 80, 0.15);
  color: var(--success);
}

.dashboard-trend.down {
  background: rgba(244, 67, 54, 0.15);
  color: #f44336;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.card {
  background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-light) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 22px;
}

.card-tag {
  display: inline-block;
  background: rgba(255, 87, 34, 0.15);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
}

.card-tag.purple {
  background: rgba(126, 87, 194, 0.2);
  color: var(--primary-light);
}

.card-tag.green {
  background: rgba(76, 175, 80, 0.15);
  color: var(--success);
}

.card-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card-excerpt {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.card-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  font-size: 13px;
}

.card-meta-item .live-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

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

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 600;
}

.status-live {
  background: rgba(76, 175, 80, 0.2);
  color: var(--success);
}

.status-upcoming {
  background: rgba(255, 152, 0, 0.2);
  color: var(--warning);
}

.status-finished {
  background: rgba(158, 158, 158, 0.2);
  color: #9e9e9e;
}

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

.league-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-light) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.league-item:hover {
  border-color: var(--accent);
  transform: translateX(6px);
}

.league-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.league-logo.gold {
  background: linear-gradient(135deg, #ffd700 0%, #ff8f00 100%);
}

.league-logo.silver {
  background: linear-gradient(135deg, #c0c0c0 0%, #757575 100%);
}

.league-logo.bronze {
  background: linear-gradient(135deg, #cd7f32 0%, #8d6e63 100%);
}

.league-info {
  flex: 1;
}

.league-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.league-meta {
  color: var(--text-muted);
  font-size: 13px;
}

.league-status {
  text-align: right;
  flex-shrink: 0;
}

.broadcast-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.broadcast-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(45, 45, 80, 0.6);
  border-radius: 10px;
  padding: 16px 20px;
  border-left: 3px solid var(--accent);
  transition: background 0.3s ease;
}

.broadcast-item:hover {
  background: rgba(45, 45, 80, 0.9);
}

.broadcast-time {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--accent);
  min-width: 70px;
}

.broadcast-content {
  flex: 1;
}

.broadcast-title {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}

.broadcast-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.ranking-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
}

.ranking-table thead {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.ranking-table th {
  padding: 16px 20px;
  text-align: left;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.ranking-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

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

.ranking-table tbody tr:hover {
  background: rgba(255, 87, 34, 0.08);
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
}

.rank-1 {
  background: linear-gradient(135deg, #ffd700 0%, #ff8f00 100%);
  color: #1a1a2e;
}

.rank-2 {
  background: linear-gradient(135deg, #e0e0e0 0%, #9e9e9e 100%);
  color: #1a1a2e;
}

.rank-3 {
  background: linear-gradient(135deg, #cd7f32 0%, #8d6e63 100%);
  color: #1a1a2e;
}

.rank-other {
  background: var(--bg-light);
  color: var(--text-muted);
}

.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab {
  padding: 10px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.tab:hover {
  background: var(--bg-light);
  color: var(--text);
}

.tab.active {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border-color: var(--accent);
}

.calendar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.calendar-day {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  transition: all 0.3s ease;
}

.calendar-day:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.calendar-day.today {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: var(--accent);
}

.calendar-day.has-match {
  border-color: var(--accent);
}

.calendar-date {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.calendar-day.today .calendar-date {
  color: var(--accent);
}

.calendar-matches {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calendar-match {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--text);
}

.calendar-match .teams {
  display: block;
  margin-bottom: 4px;
}

.calendar-match .time {
  color: var(--accent);
  font-size: 11px;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark) 100%);
  padding: 50px 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 40px;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--text);
  margin-bottom: 10px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 17px;
}

.breadcrumb {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 12px;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.about-hero {
  text-align: center;
  padding: 60px 0 40px;
}

.about-hero h2 {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--text);
  margin-bottom: 16px;
}

.about-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.stat-block {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.team-member {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

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

.team-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.team-role {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 10px;
}

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

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

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
}

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

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

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
}

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

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

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.contact-detail {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-detail a {
  color: var(--accent);
  text-decoration: none;
}

.contact-detail a:hover {
  text-decoration: underline;
}

.category-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.category-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 87, 34, 0.1) 50%, transparent 100%);
  transition: left 0.5s ease;
}

.category-item:hover::before {
  left: 100%;
}

.category-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.category-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.category-name {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--text);
  margin-bottom: 4px;
}

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

.tag-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.tag-filter-item {
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.tag-filter-item:hover,
.tag-filter-item.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.news-ticker {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  overflow: hidden;
}

.ticker-label {
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.ticker-content {
  flex: 1;
  color: var(--text);
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-ticker .live-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

footer {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a15 100%);
  border-top: 2px solid var(--primary);
  margin-top: 60px;
  padding: 50px 0 0;
}

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

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-col p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

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

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

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

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

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--accent);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.pagination-item:hover,
.pagination-item.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 36px;
  }

  .about-hero h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 16px;
    gap: 8px;
    border-bottom: 2px solid var(--accent);
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 12px 18px;
  }

  nav a.active::after {
    display: none;
  }

  .hero {
    padding: 30px 0 20px;
  }

  .hero-banner {
    padding: 30px 22px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

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

  .page-header h1 {
    font-size: 30px;
  }

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

  .ranking-table {
    font-size: 13px;
  }

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

  .calendar {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .dashboard {
    grid-template-columns: 1fr;
  }

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

  .hero-actions {
    flex-direction: column;
  }

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

  .league-item {
    flex-wrap: wrap;
  }

  .league-status {
    width: 100%;
    text-align: left;
  }
}