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

:root {
  --dark-green: #2d5016;
  --light-green: #7ba63d;
  --light-bg: #f5f8f0;
  --accent: #c8e6c9;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --border: #e0e0d8;
  --shadow: 0 4px 16px rgba(45, 80, 22, 0.08);
  --shadow-hover: 0 6px 24px rgba(45, 80, 22, 0.15);
  --radius: 12px;
}

body {
  font-family: Arial, "Microsoft YaHei", sans-serif;
  background-color: var(--light-bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

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

ul {
  list-style: none;
}

/* ========== Header ========== */
.header {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--light-green) 100%);
  color: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(45, 80, 22, 0.2);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: bold;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #a4c639, #7ba63d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

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

.nav a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s;
  color: rgba(255, 255, 255, 0.85);
}

.nav a:hover,
.nav a.active {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input {
  padding: 8px 14px;
  border: none;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  width: 220px;
  outline: none;
}

.header-search button {
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.header-search button:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* ========== Layout ========== */
.container {
  max-width: 1200px;
  margin: 24px auto;
  padding: 0 24px;
  display: flex;
  gap: 24px;
}

.sidebar {
  width: 260px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main {
  flex: 1;
  min-width: 0;
}

/* ========== Cards ========== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
}

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

.card-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--dark-green);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 20px;
  background: var(--light-green);
  border-radius: 2px;
}

/* ========== Sidebar ========== */
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.sidebar-card h3 {
  font-size: 16px;
  color: var(--dark-green);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}

.sidebar-nav li {
  margin-bottom: 6px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  transition: all 0.2s;
}

.sidebar-nav a:hover {
  background: var(--accent);
  color: var(--dark-green);
}

.sidebar-nav .count {
  margin-left: auto;
  background: var(--light-green);
  color: var(--white);
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 10px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud span {
  padding: 6px 12px;
  background: var(--light-bg);
  color: var(--dark-green);
  border-radius: 16px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.tag-cloud span:hover {
  background: var(--light-green);
  color: var(--white);
}

/* ========== Hero Banner ========== */
.hero {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--light-green) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 24px;
  max-width: 500px;
  position: relative;
  z-index: 1;
}

.hero-btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--white);
  color: var(--dark-green);
  border-radius: 24px;
  font-weight: bold;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ========== Video Grid ========== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

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

.video-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-thumb .play-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--dark-green);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s;
}

.video-card:hover .play-icon {
  opacity: 1;
  transform: scale(1);
}

.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.video-info {
  padding: 14px;
}

.video-title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light);
}

.video-meta .views {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========== Thumbnail Gradients ========== */
.thumb-1 { background: linear-gradient(135deg, #a4c639, #7ba63d); }
.thumb-2 { background: linear-gradient(135deg, #7ba63d, #2d5016); }
.thumb-3 { background: linear-gradient(135deg, #c8e6c9, #7ba63d); }
.thumb-4 { background: linear-gradient(135deg, #2d5016, #4a7c2a); }
.thumb-5 { background: linear-gradient(135deg, #a4c639, #c8e6c9); }
.thumb-6 { background: linear-gradient(135deg, #7ba63d, #c8e6c9); }
.thumb-7 { background: linear-gradient(135deg, #5a8a2a, #a4c639); }
.thumb-8 { background: linear-gradient(135deg, #c8e6c9, #2d5016); }
.thumb-9 { background: linear-gradient(135deg, #4a7c2a, #7ba63d); }
.thumb-10 { background: linear-gradient(135deg, #a4c639, #5a8a2a); }
.thumb-11 { background: linear-gradient(135deg, #7ba63d, #c8e6c9); }
.thumb-12 { background: linear-gradient(135deg, #2d5016, #a4c639); }

/* ========== Section Title ========== */
.section-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--dark-green);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-title .more {
  font-size: 14px;
  color: var(--light-green);
  font-weight: normal;
}

.section-title .more:hover {
  color: var(--dark-green);
}

/* ========== Category Grid ========== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.category-item:hover {
  border-color: var(--light-green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.category-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--accent), var(--light-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.category-name {
  font-size: 15px;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 4px;
}

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

/* ========== Ranking List ========== */
.ranking-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  background: var(--white);
  padding: 6px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.ranking-tabs button {
  flex: 1;
  padding: 10px 20px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s;
}

.ranking-tabs button.active {
  background: var(--light-green);
  color: var(--white);
  font-weight: bold;
}

.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ranking-item {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  gap: 16px;
}

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

.ranking-num {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  background: var(--light-bg);
  color: var(--text-light);
  flex-shrink: 0;
}

.ranking-item.top-1 .ranking-num {
  background: linear-gradient(135deg, #ffd700, #ffb300);
  color: var(--white);
}

.ranking-item.top-2 .ranking-num {
  background: linear-gradient(135deg, #c0c0c0, #9e9e9e);
  color: var(--white);
}

.ranking-item.top-3 .ranking-num {
  background: linear-gradient(135deg, #cd7f32, #a0522d);
  color: var(--white);
}

.ranking-thumb {
  width: 120px;
  height: 68px;
  border-radius: 8px;
  flex-shrink: 0;
}

.ranking-info {
  flex: 1;
  min-width: 0;
}

.ranking-info h4 {
  font-size: 15px;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ranking-info p {
  font-size: 13px;
  color: var(--text-light);
}

.ranking-stats {
  text-align: right;
  flex-shrink: 0;
}

.ranking-stats .stat-num {
  font-size: 20px;
  font-weight: bold;
  color: var(--light-green);
}

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

/* ========== Pagination ========== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
}

.pagination button,
.pagination span {
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination button:hover {
  border-color: var(--light-green);
  color: var(--light-green);
}

.pagination .active {
  background: var(--light-green);
  color: var(--white);
  border-color: var(--light-green);
}

/* ========== VIP / Membership ========== */
.vip-header {
  background: linear-gradient(135deg, var(--dark-green), var(--light-green));
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin-bottom: 28px;
}

.vip-header h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

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

.vip-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.vip-tier {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  transition: all 0.3s;
  border: 2px solid transparent;
}

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

.vip-tier.featured {
  border-color: var(--light-green);
}

.vip-tier.featured::before {
  content: "推荐";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--light-green);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 13px;
}

.vip-tier h3 {
  font-size: 20px;
  color: var(--dark-green);
  margin-bottom: 12px;
}

.vip-price {
  font-size: 36px;
  font-weight: bold;
  color: var(--light-green);
  margin-bottom: 8px;
}

.vip-price span {
  font-size: 16px;
  color: var(--text-light);
  font-weight: normal;
}

.vip-tier .benefits {
  text-align: left;
  margin: 20px 0;
}

.vip-tier .benefits li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.vip-tier .benefits li::before {
  content: "✓";
  color: var(--light-green);
  font-weight: bold;
}

.vip-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--dark-green), var(--light-green));
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.vip-btn:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.vip-login {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.vip-login h2 {
  font-size: 22px;
  color: var(--dark-green);
  margin-bottom: 20px;
  text-align: center;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--light-green);
}

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

/* ========== About Page ========== */
.about-intro {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.about-intro h1 {
  font-size: 28px;
  color: var(--dark-green);
  margin-bottom: 16px;
}

.about-intro p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.team-member {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

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

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--accent), var(--light-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
  font-weight: bold;
}

.team-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 4px;
  color: var(--dark-green);
}

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

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

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

.stat-card .stat-value {
  font-size: 32px;
  font-weight: bold;
  color: var(--light-green);
  margin-bottom: 4px;
}

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

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

.contact-form h2 {
  font-size: 22px;
  color: var(--dark-green);
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--dark-green), var(--light-green));
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* ========== Filter Sidebar ========== */
.filter-group {
  margin-bottom: 18px;
}

.filter-group h4 {
  font-size: 14px;
  color: var(--dark-green);
  margin-bottom: 10px;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}

.filter-options label:hover {
  color: var(--dark-green);
}

/* ========== Sub Category Nav ========== */
.sub-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  background: var(--white);
  padding: 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sub-nav a {
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 13px;
  color: var(--text);
  background: var(--light-bg);
  transition: all 0.2s;
}

.sub-nav a:hover,
.sub-nav a.active {
  background: var(--light-green);
  color: var(--white);
}

/* ========== Creators Sidebar ========== */
.creator-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.creator-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.2s;
}

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

.creator-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--light-green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
}

.creator-info {
  flex: 1;
  min-width: 0;
}

.creator-info .name {
  font-size: 14px;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 2px;
}

.creator-info .desc {
  font-size: 12px;
  color: var(--text-light);
}

.creator-follow {
  padding: 4px 12px;
  background: var(--light-green);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 12px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.creator-follow:hover {
  opacity: 0.8;
}

/* ========== Quick Categories ========== */
.quick-cats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.quick-cat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 10px;
  text-align: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all 0.3s;
}

.quick-cat:hover {
  background: var(--light-green);
  color: var(--white);
  transform: translateY(-4px);
}

.quick-cat:hover .qc-icon,
.quick-cat:hover .qc-name {
  color: var(--white);
}

.qc-icon {
  font-size: 28px;
  margin-bottom: 6px;
  display: block;
}

.qc-name {
  font-size: 13px;
  color: var(--text);
}

/* ========== Footer ========== */
.footer {
  background: var(--dark-green);
  color: var(--white);
  padding: 40px 0 20px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-card {
    flex: 1;
    min-width: 240px;
  }

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

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

  .vip-tiers {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-search input {
    width: 160px;
  }

  .hero {
    padding: 32px 24px;
  }

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

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

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

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

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

  .stats-row {
    grid-template-columns: 1fr;
  }

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

  .ranking-thumb {
    width: 100%;
    height: 140px;
  }
}