@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: #ff6d00;
  --primary-light: #ffa040;
  --primary-dark: #c43e00;
  --secondary: #1976d2;
  --secondary-light: #42a5f5;
  --secondary-dark: #0d47a1;
  --bg-light: #fff3e0;
  --bg-warm: #ffe0b2;
  --bg-white: #ffffff;
  --text-dark: #263238;
  --text-muted: #607d8b;
  --text-light: #90a4ae;
  --success: #2e7d32;
  --danger: #c62828;
  --border: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(255, 109, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(255, 109, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(255, 109, 0, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* ============ Header ============ */
.site-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 28px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  backdrop-filter: blur(4px);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-sub {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.9;
  font-family: 'Noto Sans SC', sans-serif;
}

.main-nav {
  display: flex;
  gap: 6px;
}

.main-nav a {
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.25s;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}

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

/* ============ Hero / Search ============ */
.hero-section {
  background: linear-gradient(180deg, var(--primary) 0%, var(--bg-light) 100%);
  padding: 50px 20px 60px;
  text-align: center;
}

.hero-title {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 42px;
  color: #fff;
  text-shadow: 0 3px 8px rgba(0,0,0,0.15);
  margin-bottom: 8px;
}

.hero-subtitle {
  color: rgba(255,255,255,0.92);
  font-size: 17px;
  margin-bottom: 30px;
}

.search-box {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255,255,255,0.4);
  transition: box-shadow 0.3s;
}

.search-box:focus-within {
  box-shadow: 0 12px 40px rgba(255, 109, 0, 0.25);
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 26px;
  font-size: 16px;
  font-family: 'Noto Sans SC', sans-serif;
  color: var(--text-dark);
  background: transparent;
}

.search-box input::placeholder {
  color: var(--text-light);
}

.search-box button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border: none;
  padding: 0 36px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s;
  font-family: 'Noto Sans SC', sans-serif;
}

.search-box button:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  transform: scale(1.02);
}

.search-suggestions {
  max-width: 640px;
  margin: 16px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.search-suggestions a {
  background: rgba(255,255,255,0.85);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}

.search-suggestions a:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* ============ Section common ============ */
.section {
  padding: 50px 20px;
}

.section-title {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 30px;
  color: var(--text-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 30px;
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
  border-radius: 3px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 28px;
  padding-left: 18px;
}

/* ============ Card Grid ============ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.event-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255,109,0,0.08);
  cursor: pointer;
  position: relative;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,109,0,0.3);
}

.event-card .card-image {
  height: 150px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  position: relative;
  overflow: hidden;
}

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

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

.event-card .card-status {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.status-live {
  background: rgba(198, 40, 40, 0.92);
  color: #fff;
}

.status-upcoming {
  background: rgba(25, 118, 210, 0.92);
  color: #fff;
}

.status-ended {
  background: rgba(96, 125, 139, 0.92);
  color: #fff;
}

.event-card .card-body {
  padding: 18px 18px 20px;
}

.event-card .card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-card .card-meta {
  display: flex;
  gap: 14px;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 10px;
}

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

.event-card .card-desc {
  color: var(--text-muted);
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}

.event-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #f5f5f5;
}

.event-card .card-tag {
  background: var(--bg-warm);
  color: var(--primary-dark);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.event-card .card-action {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============ Data Panel ============ */
.data-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.panel {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,109,0,0.06);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--bg-light);
}

.panel-title {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 22px;
  color: var(--text-dark);
}

.panel-more {
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
}

/* Hot list */
.hot-list {
  list-style: none;
}

.hot-list li {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed #f0f0f0;
  transition: all 0.2s;
}

.hot-list li:last-child {
  border-bottom: none;
}

.hot-list li:hover {
  padding-left: 6px;
}

.hot-rank {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  margin-right: 14px;
  flex-shrink: 0;
  background: #eceff1;
  color: var(--text-muted);
}

.hot-list li:nth-child(1) .hot-rank {
  background: var(--danger);
  color: #fff;
}

.hot-list li:nth-child(2) .hot-rank {
  background: var(--primary);
  color: #fff;
}

.hot-list li:nth-child(3) .hot-rank {
  background: var(--secondary);
  color: #fff;
}

.hot-title {
  flex: 1;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hot-trend {
  color: var(--success);
  font-size: 13px;
  font-weight: 600;
}

.hot-trend.down {
  color: var(--danger);
}

/* Calendar preview */
.calendar-mini {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 13px;
  position: relative;
  background: #fafafa;
}

.cal-day:hover {
  background: var(--bg-warm);
  transform: scale(1.05);
}

.cal-day.has-event {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  font-weight: 700;
}

.cal-day.today {
  outline: 2px solid var(--primary-dark);
  font-weight: 700;
}

.cal-day .cal-date {
  font-size: 16px;
}

.cal-day .cal-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  margin-top: 2px;
}

/* ============ Tag cloud ============ */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0;
}

.tag-cloud a {
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s;
  background: #fff;
  color: var(--text-dark);
  border: 1px solid var(--border);
}

.tag-cloud a:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.tag-cloud a.tag-size-lg {
  font-size: 18px;
  font-weight: 700;
}

.tag-cloud a.tag-size-md {
  font-size: 16px;
}

/* ============ Results list ============ */
.result-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
  display: flex;
  gap: 18px;
  border-left: 4px solid transparent;
}

.result-item:hover {
  border-left-color: var(--primary);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.result-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.result-content {
  flex: 1;
}

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

.result-title:hover {
  color: var(--primary);
}

.result-url {
  color: var(--success);
  font-size: 13px;
  margin-bottom: 8px;
  display: block;
}

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

/* ============ Schedule table ============ */
.schedule-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 24px;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--text-dark);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
}

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

.schedule-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.schedule-day {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--secondary);
  transition: all 0.25s;
}

.schedule-day:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.schedule-day.mon { border-top-color: #ef5350; }
.schedule-day.tue { border-top-color: #ab47bc; }
.schedule-day.wed { border-top-color: #42a5f5; }
.schedule-day.thu { border-top-color: #66bb6a; }
.schedule-day.fri { border-top-color: #ffa726; }
.schedule-day.sat { border-top-color: #ff6d00; }
.schedule-day.sun { border-top-color: #78909c; }

.day-header {
  text-align: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

-day-name {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 20px;
  color: var(--text-dark);
  display: block;
}

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

.day-events {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.day-event {
  padding: 8px 10px;
  background: var(--bg-light);
  border-radius: 8px;
  font-size: 13px;
  transition: all 0.2s;
  cursor: pointer;
}

.day-event:hover {
  background: var(--bg-warm);
  transform: scale(1.02);
}

.day-event .event-time {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 12px;
}

.day-event .event-name {
  display: block;
  color: var(--text-dark);
  font-weight: 500;
  margin-top: 2px;
}

/* ============ Ranking ============ */
.ranking-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  background: #fff;
  padding: 6px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.ranking-tab {
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s;
  color: var(--text-muted);
  border: none;
  background: none;
  font-family: 'Noto Sans SC', sans-serif;
}

.ranking-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 4px 12px rgba(255,109,0,0.3);
}

.ranking-list {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.ranking-item {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.2s;
}

.ranking-item:last-child {
  border-bottom: none;
}

.ranking-item:hover {
  background: var(--bg-light);
}

.rank-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-right: 18px;
  flex-shrink: 0;
  background: #eceff1;
  color: var(--text-muted);
}

.ranking-item:nth-child(1) .rank-badge {
  background: linear-gradient(135deg, #ffd700, #ffb300);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255,215,0,0.4);
}

.ranking-item:nth-child(2) .rank-badge {
  background: linear-gradient(135deg, #bdbdbd, #9e9e9e);
  color: #fff;
  box-shadow: 0 4px 12px rgba(189,189,189,0.4);
}

.ranking-item:nth-child(3) .rank-badge {
  background: linear-gradient(135deg, #cd7f32, #a0522d);
  color: #fff;
  box-shadow: 0 4px 12px rgba(205,127,50,0.4);
}

.rank-info {
  flex: 1;
}

.rank-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

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

.rank-score {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 22px;
  color: var(--primary);
}

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

.about-hero h1 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 38px;
  margin-bottom: 12px;
}

.about-hero p {
  font-size: 17px;
  opacity: 0.92;
  max-width: 680px;
  margin: 0 auto;
}

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

.feature-card {
  background: #fff;
  padding: 30px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s;
  border-top: 4px solid var(--primary);
}

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

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 18px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

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

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

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

.contact-item {
  display: flex;
  gap: 18px;
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}

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

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

.contact-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-form {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: 'Noto Sans SC', sans-serif;
  color: var(--text-dark);
  transition: border-color 0.2s;
  background: #fafafa;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Noto Sans SC', sans-serif;
  box-shadow: 0 4px 16px rgba(255,109,0,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,109,0,0.4);
}

/* ============ Breadcrumb ============ */
.breadcrumb {
  padding: 16px 20px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--secondary);
  font-weight: 500;
}

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

.breadcrumb .sep {
  margin: 0 8px;
  color: var(--text-light);
}

.breadcrumb .current {
  color: var(--text-dark);
  font-weight: 600;
}

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

.page-header h1 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 36px;
  margin-bottom: 6px;
}

.page-header p {
  font-size: 16px;
  opacity: 0.9;
}

/* ============ Footer ============ */
.site-footer {
  background: linear-gradient(180deg, #263238 0%, #1a1a1a 100%);
  color: #cfd8dc;
  margin-top: 60px;
}

.footer-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 50px 20px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 20px;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #b0bec5;
}

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

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

.footer-col ul li a {
  color: #b0bec5;
  font-size: 14px;
  transition: all 0.2s;
}

.footer-col ul li a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-col .logo {
  color: #fff;
  margin-bottom: 14px;
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: #78909c;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #b0bec5;
  transition: all 0.25s;
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ============ Responsive ============ */
@media (max-width: 992px) {
  .data-panels,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 12px;
    gap: 4px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .search-box {
    margin: 0 10px;
  }

  .search-box input {
    padding: 14px 18px;
    font-size: 14px;
  }

  .search-box button {
    padding: 0 20px;
    font-size: 14px;
  }

  .section {
    padding: 36px 16px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px 20px;
  }

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

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

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

  .ranking-tabs {
    flex-wrap: wrap;
    width: 100%;
  }

  .ranking-tab {
    flex: 1;
    padding: 8px 16px;
    font-size: 13px;
    text-align: center;
  }

  .contact-form {
    padding: 24px 20px;
  }
}

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

  .logo {
    font-size: 22px;
  }

  .logo-sub {
    display: none;
  }

  .search-suggestions {
    gap: 6px;
  }

  .search-suggestions a {
    font-size: 12px;
    padding: 4px 12px;
  }
}