.page-home {
  --home-gradient: linear-gradient(135deg, #0A1B2A 0%, #14304A 60%, #0A1B2A 100%);
  --home-glow-cyan: rgba(0, 229, 255, 0.12);
  --home-glow-orange: rgba(255, 107, 53, 0.18);
  --home-panel-bg: rgba(20, 48, 74, 0.55);
  color: #F8FAFC;
  background: var(--home-gradient);
  overflow: hidden;
}

.page-home .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  font-family: var(--font-body);
  color: #80F2FF;
  margin-bottom: 28px;
  padding: 0 2px;
}

.page-home .breadcrumbs a {
  color: #00E5FF;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-home .breadcrumbs a:hover {
  color: #FF6B35;
}

.page-home .crumb-sep {
  color: rgba(248, 250, 252, 0.4);
}

.page-home .section {
  padding: 72px 5.5vw 64px;
  max-width: 1450px;
  margin: 0 auto;
}

.page-home .section-tight {
  padding: 48px 5.5vw;
  max-width: 1450px;
  margin: 0 auto;
}

.page-home .section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00E5FF;
  border: 1px solid rgba(0, 229, 255, 0.35);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
  background: rgba(0, 229, 255, 0.06);
}

.page-home .section-label-orange {
  color: #FF6B35;
  border-color: rgba(255, 107, 53, 0.5);
  background: rgba(255, 107, 53, 0.08);
}

.page-home .section-label-cyan {
  color: #80F2FF;
  border-color: rgba(128, 242, 255, 0.5);
  background: rgba(128, 242, 255, 0.08);
}

.page-home .page-title {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #F8FAFC;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.page-home .page-title .accent-line {
  color: #FF6B35;
  position: relative;
  display: inline-block;
}

.page-home .page-title .accent-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 6px;
  background: rgba(255, 107, 53, 0.25);
  z-index: -1;
}

.page-home .lead-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: rgba(248, 250, 252, 0.82);
  max-width: 760px;
  margin-bottom: 24px;
}

.page-home .section-title {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #F8FAFC;
  margin: 0 0 14px;
}

/* 平台速览 */
.page-home .home-overview {
  position: relative;
  padding-top: 100px;
}

.page-home .home-overview::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--home-glow-orange) 0%, transparent 70%);
  pointer-events: none;
}

.page-home .overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}

.page-home .overview-aside {
  display: none;
}

.page-home .overview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}

.page-home .btn-primary {
  background: #FF6B35;
  color: #0A1B2A;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.35);
}

.page-home .btn-primary:hover {
  background: #FF9A76;
  transform: translateY(-2px) skewX(-2deg);
  box-shadow: 0 6px 28px rgba(255, 155, 118, 0.4);
}

.page-home .btn-ghost {
  background: transparent;
  border-color: rgba(0, 229, 255, 0.55);
  color: #80F2FF;
}

.page-home .btn-ghost:hover {
  border-color: #00E5FF;
  background: rgba(0, 229, 255, 0.08);
  transform: translateY(-2px);
}

.page-home .btn-arrow {
  font-size: 18px;
  font-weight: 400;
}

.page-home .status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  margin-top: 36px;
  padding: 16px 20px;
  background: rgba(4, 10, 16, 0.45);
  border-left: 3px solid #FF6B35;
  border-radius: 0 6px 6px 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(248, 250, 252, 0.85);
}

.page-home .status-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-home .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00E5FF;
  animation: home-pulse 1.8s ease-in-out infinite;
}

.page-home .status-dot.status-live {
  background: #10B981;
}

@keyframes home-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.82); }
}

/* 会员快速通道 */
.page-home .member-quick {
  position: relative;
}

.page-home .member-panel {
  background: linear-gradient(100deg, rgba(255, 107, 53, 0.14) 0%, rgba(20, 48, 74, 0.7) 50%, rgba(4, 10, 16, 0.55) 100%);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(4, 10, 16, 0.4);
}

.page-home .member-panel::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.page-home .member-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(248, 250, 252, 0.82);
  margin: 0;
  max-width: 680px;
}

.page-home .member-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 4px;
}

.page-home .member-point {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-family: var(--font-body);
  color: rgba(248, 250, 252, 0.9);
}

.page-home .point-icon {
  color: #10B981;
  font-weight: 700;
  font-size: 15px;
}

.page-home .member-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.page-home .member-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: #0A1B2A;
  background: #FF6B35;
  padding: 13px 22px;
  border-radius: 3px;
  text-decoration: none;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
  margin-left: 8px;
}

.page-home .member-btn:hover {
  background: #FF9A76;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.page-home .member-note {
  font-size: 12px;
  font-family: var(--font-mono);
  color: rgba(248, 250, 252, 0.55);
  margin: 0 0 0 8px;
}

/* 联赛数据面板 */
.page-home .league-panel {
  position: relative;
}

.page-home .league-panel::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 420px;
  height: 180px;
  background: radial-gradient(ellipse, var(--home-glow-cyan) 0%, transparent 70%);
  pointer-events: none;
}

.page-home .section-head-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.page-home .section-note {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(248, 250, 252, 0.55);
  margin: 0;
}

.page-home .league-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.page-home .league-tab {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: rgba(248, 250, 252, 0.65);
  background: rgba(20, 48, 74, 0.6);
  border: 1px solid rgba(248, 250, 252, 0.12);
  border-radius: 4px;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-home .league-tab:hover {
  border-color: rgba(0, 229, 255, 0.6);
  color: #80F2FF;
}

.page-home .league-tab.is-active {
  color: #0A1B2A;
  background: #FF6B35;
  border-color: #FF6B35;
}

.page-home .league-stage {
  position: relative;
  margin-bottom: 20px;
}

.page-home .league-panel-primary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .league-card {
  background: linear-gradient(150deg, rgba(20, 48, 74, 0.9) 0%, rgba(4, 10, 16, 0.85) 100%);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 10px;
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(4, 10, 16, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .league-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(4, 10, 16, 0.6);
}

.page-home .league-card.is-clipped {
  border-top: 3px solid #FF6B35;
}

.page-home .league-card.is-skew {
  border-top: 3px solid #00E5FF;
}

.page-home .league-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.page-home .league-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: #0A1B2A;
  background: #FF6B35;
  padding: 2px 10px;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

.page-home .league-badge.tag-hot {
  background: #00E5FF;
  color: #0A1B2A;
}

.page-home .league-card-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #F8FAFC;
  margin: 0;
}

.page-home .scorer-list {
  display: flex;
  flex-direction: column;
}

.page-home .scorer-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(248, 250, 252, 0.08);
  font-family: var(--font-body);
  font-size: 14px;
}

.page-home .scorer-row:last-child {
  border-bottom: none;
}

.page-home .scorer-rank {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(128, 242, 255, 0.75);
  min-width: 22px;
}

.page-home .scorer-name {
  font-weight: 700;
  color: #F8FAFC;
  flex: 1;
}

.page-home .scorer-team {
  color: rgba(248, 250, 252, 0.6);
  font-size: 13px;
}

.page-home .scorer-goals {
  color: #FF6B35;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
}

.page-home .transfer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-home .transfer-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(248, 250, 252, 0.85);
}

.page-home .transfer-type {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  min-width: 30px;
  text-align: center;
}

.page-home .transfer-type.in {
  color: #10B981;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.page-home .transfer-type.out {
  color: #FF6B35;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.35);
}

.page-home .transfer-type.loan {
  color: #80F2FF;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
}

.page-home .league-data-list {
  display: flex;
  flex-direction: column;
}

.page-home .data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(248, 250, 252, 0.12);
  font-family: var(--font-body);
  font-size: 14px;
}

.page-home .data-row:last-child {
  border-bottom: none;
}

.page-home .data-row-label {
  color: rgba(248, 250, 252, 0.6);
  font-size: 13px;
}

.page-home .data-row-value {
  font-family: var(--font-mono);
  color: #80F2FF;
  font-weight: 700;
  font-size: 14px;
}

.page-home .league-more {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-top: 18px;
}

.page-home .link-with-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #80F2FF;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.page-home .link-with-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #FF6B35;
  transition: width 0.25s ease;
}

.page-home .link-with-line:hover {
  color: #FF9A76;
}

.page-home .link-with-line:hover::after {
  width: 100%;
}

/* 资料库更新日志 */
.page-home .log-section {
  position: relative;
}

.page-home .log-section::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-home .log-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .log-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(248, 250, 252, 0.8);
  max-width: 720px;
  margin: 0 0 24px;
}

.page-home .update-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.page-home .update-timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #FF6B35 0%, #00E5FF 100%);
  opacity: 0.4;
}

.page-home .update-item {
  display: flex;
  gap: 20px;
  padding-bottom: 24px;
  position: relative;
}

.page-home .update-item:last-child {
  padding-bottom: 0;
}

.page-home .update-round {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: #FF6B35;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.35);
  padding: 4px 10px;
  border-radius: 30px;
  white-space: nowrap;
  align-self: flex-start;
  z-index: 1;
}

.page-home .update-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF6B35;
  z-index: 0;
}

.page-home .update-body {
  flex: 1;
  padding-left: 4px;
}

.page-home .update-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 400;
  color: #F8FAFC;
  margin: 0 0 6px;
}

.page-home .update-body p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(248, 250, 252, 0.65);
  margin: 0;
}

.page-home .log-side {
  display: none;
}

/* 帮助中心 */
.page-home .help-center-section {
  position: relative;
}

.page-home .help-panel {
  background: linear-gradient(160deg, rgba(0, 229, 255, 0.1) 0%, rgba(20, 48, 74, 0.8) 100%);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
}

.page-home .help-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(248, 250, 252, 0.82);
  max-width: 640px;
  margin: 0 0 18px;
}

.page-home .help-content {
  flex: 1;
}

.page-home .hel-links {
  display: flex;
}

.page-home .help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .help-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(248, 250, 252, 0.12);
}

.page-home .help-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(248, 250, 252, 0.7);
}

.page-home .help-meta-item::before {
  content: "●";
  font-size: 10px;
  color: #10B981;
}

.page-home .help-visual {
  display: none;
}

/* 数据亮点 */
.page-home .stats-section {
  position: relative;
}

.page-home .stats-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.page-home .stats-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(248, 250, 252, 0.65);
  margin: 0;
  max-width: 640px;
}

.page-home .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.page-home .stat-card {
  background: rgba(20, 48, 74, 0.6);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 8px;
  padding: 20px 18px;
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-home .stat-card:hover {
  border-color: rgba(255, 107, 53, 0.6);
  transform: translateY(-2px);
}

.page-home .stat-value {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  line-height: 1;
  color: #FF6B35;
  margin-bottom: 10px;
}

.page-home .stat-value sup {
  font-size: 16px;
  color: rgba(248, 250, 252, 0.6);
  font-family: var(--font-mono);
  margin-left: 2px;
}

.page-home .stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(248, 250, 252, 0.7);
  display: block;
  margin-bottom: 14px;
}

.page-home .data-bar-track {
  display: block;
  height: 5px;
  background: rgba(248, 250, 252, 0.12);
  border-radius: 6px;
  overflow: hidden;
}

.page-home .data-bar-fill {
  display: block;
  height: 100%;
  width: var(--bar, 0%);
  background: linear-gradient(90deg, #FF6B35 0%, #00E5FF 100%);
  border-radius: 6px;
  transition: width 0.4s ease;
}

.page-home .stats-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(248, 250, 252, 0.1);
}

.page-home .trust-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(248, 250, 252, 0.75);
}

.page-home .trust-icon {
  color: #10B981;
  font-size: 16px;
}

/* 全站索引 */
.page-home .site-index {
  padding-top: 28px;
  padding-bottom: 64px;
}

.page-home .index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.page-home .index-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.85);
  text-decoration: none;
  background: rgba(20, 48, 74, 0.55);
  border-radius: 6px;
  border: 1px solid rgba(248, 250, 252, 0.08);
  transition: all 0.2s ease;
}

.page-home .index-link:hover {
  color: #00E5FF;
  border-color: rgba(0, 229, 255, 0.5);
  background: rgba(0, 229, 255, 0.1);
  transform: translateX(4px);
}

.page-home .index-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #FF6B35;
}

.page-home .index-text {
  flex: 1;
}

@media screen and (min-width: 576px) {
  .page-home .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .page-home .update-item {
    padding-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .page-home .page-title {
    font-size: 56px;
  }

  .page-home .overview-grid {
    grid-template-columns: 1fr 240px;
    gap: 40px;
  }

  .page-home .overview-aside {
    display: block;
    align-self: stretch;
    margin-top: 10px;
  }

  .page-home .overview-aside img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-home .member-panel {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .page-home .member-cta {
    flex: 0 0 260px;
    align-items: center;
    text-align: center;
  }

  .page-home .member-btn {
    white-space: nowrap;
  }

  .page-home .league-panel-primary {
    display: grid;
    grid-template-columns: 2fr 2fr 1.6fr;
    gap: 16px;
  }

  .page-home .league-panel-primary .league-card:first-child {
    margin-right: 0;
  }

  .page-home .league-panel-primary .league-data-list {
    background: rgba(4, 10, 16, 0.55);
    border-radius: 10px;
    padding: 18px 16px;
  }

  .page-home .log-grid {
    grid-template-columns: 1.6fr 1fr;
    gap: 36px;
    align-items: center;
  }

  .page-home .log-side {
    display: block;
  }

  .page-home .log-side img {
    width: 100%;
    height: 100%;
  }

  .page-home .help-panel {
    flex-direction: row;
    align-items: flex-start;
  }

  .page-home .help-visual {
    display: block;
    flex: 0 0 220px;
  }

  .page-home .help-visual img {
    width: 100%;
    height: 100%;
    min-height: 200px;
  }
}

@media screen and (min-width: 992px) {
  .page-home .section {
    padding: 88px 4vw 76px;
  }

  .page-home .section-tight {
    padding: 56px 4vw;
  }

  .page-home .overview-grid {
    grid-template-columns: 1fr 300px;
  }

  .page-home .section-head-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .page-home .section-head-row .section-note {
    max-width: 380px;
    text-align: right;
  }

  .page-home .league-tabs {
    gap: 10px;
  }

  .page-home .league-tab {
    padding: 10px 24px;
  }

  .page-home .stats-grid {
    gap: 20px;
  }

  .page-home .stat-card {
    padding: 24px 22px;
  }

  .page-home .stat-value {
    font-size: 42px;
  }

  .page-home .index-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .page-home .index-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 14px;
    min-height: 90px;
    justify-content: center;
  }

  .page-home .index-link:hover {
    transform: translateY(-4px);
  }
}

@media screen and (max-width: 360px) {
  .page-home .page-title {
    font-size: 34px;
  }

  .page-home .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .page-home .stat-card {
    padding: 16px 14px;
  }

  .page-home .stat-value {
    font-size: 28px;
  }

  .page-home .member-points {
    gap: 6px 12px;
  }

  .page-home .member-point {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .status-dot {
    animation: none;
  }

  .page-home .btn-primary,
  .page-home .btn-ghost,
  .page-home .member-btn,
  .page-home .league-card,
  .page-home .stat-card,
  .page-home .index-link {
    transition: none;
  }
}


.page-home {
  --home-gradient: linear-gradient(135deg, #0A1B2A 0%, #14304A 60%, #0A1B2A 100%);
  --home-glow-cyan: rgba(0, 229, 255, 0.12);
  --home-glow-orange: rgba(255, 107, 53, 0.18);
  --home-panel-bg: rgba(20, 48, 74, 0.55);
  color: #F8FAFC;
  background: var(--home-gradient);
  overflow: hidden;
}

.page-home .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  font-family: var(--font-body);
  color: #80F2FF;
  margin-bottom: 28px;
  padding: 0 2px;
}

.page-home .breadcrumbs a {
  color: #00E5FF;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-home .breadcrumbs a:hover {
  color: #FF6B35;
}

.page-home .crumb-sep {
  color: rgba(248, 250, 252, 0.4);
}

.page-home .section {
  padding: 72px 5.5vw 64px;
  max-width: 1450px;
  margin: 0 auto;
}

.page-home .section-tight {
  padding: 48px 5.5vw;
  max-width: 1450px;
  margin: 0 auto;
}

.page-home .section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00E5FF;
  border: 1px solid rgba(0, 229, 255, 0.35);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
  background: rgba(0, 229, 255, 0.06);
}

.page-home .section-label-orange {
  color: #FF6B35;
  border-color: rgba(255, 107, 53, 0.5);
  background: rgba(255, 107, 53, 0.08);
}

.page-home .section-label-cyan {
  color: #80F2FF;
  border-color: rgba(128, 242, 255, 0.5);
  background: rgba(128, 242, 255, 0.08);
}

.page-home .page-title {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #F8FAFC;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.page-home .page-title .accent-line {
  color: #FF6B35;
  position: relative;
  display: inline-block;
}

.page-home .page-title .accent-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 6px;
  background: rgba(255, 107, 53, 0.25);
  z-index: -1;
}

.page-home .lead-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: rgba(248, 250, 252, 0.82);
  max-width: 760px;
  margin-bottom: 24px;
}

.page-home .section-title {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #F8FAFC;
  margin: 0 0 14px;
}

/* 平台速览 */
.page-home .home-overview {
  position: relative;
  padding-top: 100px;
}

.page-home .home-overview::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--home-glow-orange) 0%, transparent 70%);
  pointer-events: none;
}

.page-home .overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}

.page-home .overview-aside {
  display: none;
}

.page-home .overview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}

.page-home .btn-primary {
  background: #FF6B35;
  color: #0A1B2A;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.35);
}

.page-home .btn-primary:hover {
  background: #FF9A76;
  transform: translateY(-2px) skewX(-2deg);
  box-shadow: 0 6px 28px rgba(255, 155, 118, 0.4);
}

.page-home .btn-ghost {
  background: transparent;
  border-color: rgba(0, 229, 255, 0.55);
  color: #80F2FF;
}

.page-home .btn-ghost:hover {
  border-color: #00E5FF;
  background: rgba(0, 229, 255, 0.08);
  transform: translateY(-2px);
}

.page-home .btn-arrow {
  font-size: 18px;
  font-weight: 400;
}

.page-home .status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  margin-top: 36px;
  padding: 16px 20px;
  background: rgba(4, 10, 16, 0.45);
  border-left: 3px solid #FF6B35;
  border-radius: 0 6px 6px 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(248, 250, 252, 0.85);
}

.page-home .status-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-home .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00E5FF;
  animation: home-pulse 1.8s ease-in-out infinite;
}

.page-home .status-dot.status-live {
  background: #10B981;
}

@keyframes home-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.82); }
}

/* 会员快速通道 */
.page-home .member-quick {
  position: relative;
}

.page-home .member-panel {
  background: linear-gradient(100deg, rgba(255, 107, 53, 0.14) 0%, rgba(20, 48, 74, 0.7) 50%, rgba(4, 10, 16, 0.55) 100%);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(4, 10, 16, 0.4);
}

.page-home .member-panel::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.page-home .member-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(248, 250, 252, 0.82);
  margin: 0;
  max-width: 680px;
}

.page-home .member-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 4px;
}

.page-home .member-point {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-family: var(--font-body);
  color: rgba(248, 250, 252, 0.9);
}

.page-home .point-icon {
  color: #10B981;
  font-weight: 700;
  font-size: 15px;
}

.page-home .member-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.page-home .member-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: #0A1B2A;
  background: #FF6B35;
  padding: 13px 22px;
  border-radius: 3px;
  text-decoration: none;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
  margin-left: 8px;
}

.page-home .member-btn:hover {
  background: #FF9A76;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.page-home .member-note {
  font-size: 12px;
  font-family: var(--font-mono);
  color: rgba(248, 250, 252, 0.55);
  margin: 0 0 0 8px;
}

/* 联赛数据面板 */
.page-home .league-panel {
  position: relative;
}

.page-home .league-panel::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 420px;
  height: 180px;
  background: radial-gradient(ellipse, var(--home-glow-cyan) 0%, transparent 70%);
  pointer-events: none;
}

.page-home .section-head-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.page-home .section-note {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(248, 250, 252, 0.55);
  margin: 0;
}

.page-home .league-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.page-home .league-tab {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: rgba(248, 250, 252, 0.65);
  background: rgba(20, 48, 74, 0.6);
  border: 1px solid rgba(248, 250, 252, 0.12);
  border-radius: 4px;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-home .league-tab:hover {
  border-color: rgba(0, 229, 255, 0.6);
  color: #80F2FF;
}

.page-home .league-tab.is-active {
  color: #0A1B2A;
  background: #FF6B35;
  border-color: #FF6B35;
}

.page-home .league-stage {
  position: relative;
  margin-bottom: 20px;
}

.page-home .league-panel-primary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .league-card {
  background: linear-gradient(150deg, rgba(20, 48, 74, 0.9) 0%, rgba(4, 10, 16, 0.85) 100%);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 10px;
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(4, 10, 16, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .league-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(4, 10, 16, 0.6);
}

.page-home .league-card.is-clipped {
  border-top: 3px solid #FF6B35;
}

.page-home .league-card.is-skew {
  border-top: 3px solid #00E5FF;
}

.page-home .league-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.page-home .league-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: #0A1B2A;
  background: #FF6B35;
  padding: 2px 10px;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

.page-home .league-badge.tag-hot {
  background: #00E5FF;
  color: #0A1B2A;
}

.page-home .league-card-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #F8FAFC;
  margin: 0;
}

.page-home .scorer-list {
  display: flex;
  flex-direction: column;
}

.page-home .scorer-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(248, 250, 252, 0.08);
  font-family: var(--font-body);
  font-size: 14px;
}

.page-home .scorer-row:last-child {
  border-bottom: none;
}

.page-home .scorer-rank {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(128, 242, 255, 0.75);
  min-width: 22px;
}

.page-home .scorer-name {
  font-weight: 700;
  color: #F8FAFC;
  flex: 1;
}

.page-home .scorer-team {
  color: rgba(248, 250, 252, 0.6);
  font-size: 13px;
}

.page-home .scorer-goals {
  color: #FF6B35;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
}

.page-home .transfer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-home .transfer-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(248, 250, 252, 0.85);
}

.page-home .transfer-type {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  min-width: 30px;
  text-align: center;
}

.page-home .transfer-type.in {
  color: #10B981;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.page-home .transfer-type.out {
  color: #FF6B35;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.35);
}

.page-home .transfer-type.loan {
  color: #80F2FF;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
}

.page-home .league-data-list {
  display: flex;
  flex-direction: column;
}

.page-home .data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(248, 250, 252, 0.12);
  font-family: var(--font-body);
  font-size: 14px;
}

.page-home .data-row:last-child {
  border-bottom: none;
}

.page-home .data-row-label {
  color: rgba(248, 250, 252, 0.6);
  font-size: 13px;
}

.page-home .data-row-value {
  font-family: var(--font-mono);
  color: #80F2FF;
  font-weight: 700;
  font-size: 14px;
}

.page-home .league-more {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-top: 18px;
}

.page-home .link-with-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #80F2FF;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.page-home .link-with-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #FF6B35;
  transition: width 0.25s ease;
}

.page-home .link-with-line:hover {
  color: #FF9A76;
}

.page-home .link-with-line:hover::after {
  width: 100%;
}

/* 资料库更新日志 */
.page-home .log-section {
  position: relative;
}

.page-home .log-section::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-home .log-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .log-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(248, 250, 252, 0.8);
  max-width: 720px;
  margin: 0 0 24px;
}

.page-home .update-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.page-home .update-timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #FF6B35 0%, #00E5FF 100%);
  opacity: 0.4;
}

.page-home .update-item {
  display: flex;
  gap: 20px;
  padding-bottom: 24px;
  position: relative;
}

.page-home .update-item:last-child {
  padding-bottom: 0;
}

.page-home .update-round {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: #FF6B35;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.35);
  padding: 4px 10px;
  border-radius: 30px;
  white-space: nowrap;
  align-self: flex-start;
  z-index: 1;
}

.page-home .update-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF6B35;
  z-index: 0;
}

.page-home .update-body {
  flex: 1;
  padding-left: 4px;
}

.page-home .update-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 400;
  color: #F8FAFC;
  margin: 0 0 6px;
}

.page-home .update-body p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(248, 250, 252, 0.65);
  margin: 0;
}

.page-home .log-side {
  display: none;
}

/* 帮助中心 */
.page-home .help-center-section {
  position: relative;
}

.page-home .help-panel {
  background: linear-gradient(160deg, rgba(0, 229, 255, 0.1) 0%, rgba(20, 48, 74, 0.8) 100%);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
}

.page-home .help-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(248, 250, 252, 0.82);
  max-width: 640px;
  margin: 0 0 18px;
}

.page-home .help-content {
  flex: 1;
}

.page-home .help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .help-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(248, 250, 252, 0.12);
}

.page-home .help-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(248, 250, 252, 0.7);
}

.page-home .help-meta-item::before {
  content: "●";
  font-size: 10px;
  color: #10B981;
}

.page-home .help-visual {
  display: none;
}

/* 数据亮点 */
.page-home .stats-section {
  position: relative;
}

.page-home .stats-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.page-home .stats-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(248, 250, 252, 0.65);
  margin: 0;
  max-width: 640px;
}

.page-home .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.page-home .stat-card {
  background: rgba(20, 48, 74, 0.6);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 8px;
  padding: 20px 18px;
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-home .stat-card:hover {
  border-color: rgba(255, 107, 53, 0.6);
  transform: translateY(-2px);
}

.page-home .stat-value {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  line-height: 1;
  color: #FF6B35;
  margin-bottom: 10px;
}

.page-home .stat-value sup {
  font-size: 16px;
  color: rgba(248, 250, 252, 0.6);
  font-family: var(--font-mono);
  margin-left: 2px;
}

.page-home .stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(248, 250, 252, 0.7);
  display: block;
  margin-bottom: 14px;
}

.page-home .data-bar-track {
  display: block;
  height: 5px;
  background: rgba(248, 250, 252, 0.12);
  border-radius: 6px;
  overflow: hidden;
}

.page-home .data-bar-fill {
  display: block;
  height: 100%;
  width: var(--bar, 0%);
  background: linear-gradient(90deg, #FF6B35 0%, #00E5FF 100%);
  border-radius: 6px;
  transition: width 0.4s ease;
}

.page-home .stats-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(248, 250, 252, 0.1);
}

.page-home .trust-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(248, 250, 252, 0.75);
}

.page-home .trust-icon {
  color: #10B981;
  font-size: 16px;
}

/* 全站索引 */
.page-home .site-index {
  padding-top: 28px;
  padding-bottom: 64px;
}

.page-home .index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.page-home .index-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.85);
  text-decoration: none;
  background: rgba(20, 48, 74, 0.55);
  border-radius: 6px;
  border: 1px solid rgba(248, 250, 252, 0.08);
  transition: all 0.2s ease;
}

.page-home .index-link:hover {
  color: #00E5FF;
  border-color: rgba(0, 229, 255, 0.5);
  background: rgba(0, 229, 255, 0.1);
  transform: translateX(4px);
}

.page-home .index-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #FF6B35;
}

.page-home .index-text {
  flex: 1;
}

@media screen and (min-width: 576px) {
  .page-home .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .page-home .update-item {
    padding-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .page-home .page-title {
    font-size: 56px;
  }

  .page-home .overview-grid {
    grid-template-columns: 1fr 240px;
    gap: 40px;
  }

  .page-home .overview-aside {
    display: block;
    align-self: stretch;
    margin-top: 10px;
  }

  .page-home .overview-aside img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-home .member-panel {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .page-home .member-cta {
    flex: 0 0 260px;
    align-items: center;
    text-align: center;
  }

  .page-home .member-btn {
    white-space: nowrap;
  }

  .page-home .league-panel-primary {
    display: grid;
    grid-template-columns: 2fr 2fr 1.6fr;
    gap: 16px;
  }

  .page-home .league-panel-primary .league-data-list {
    background: rgba(4, 10, 16, 0.55);
    border-radius: 10px;
    padding: 18px 16px;
  }

  .page-home .log-grid {
    grid-template-columns: 1.6fr 1fr;
    gap: 36px;
    align-items: center;
  }

  .page-home .log-side {
    display: block;
  }

  .page-home .log-side img {
    width: 100%;
    height: 100%;
  }

  .page-home .help-panel {
    flex-direction: row;
    align-items: flex-start;
  }

  .page-home .help-visual {
    display: block;
    flex: 0 0 220px;
  }

  .page-home .help-visual img {
    width: 100%;
    height: 100%;
    min-height: 200px;
  }
}

@media screen and (min-width: 992px) {
  .page-home .section {
    padding: 88px 4vw 76px;
  }

  .page-home .section-tight {
    padding: 56px 4vw;
  }

  .page-home .overview-grid {
    grid-template-columns: 1fr 300px;
  }

  .page-home .section-head-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .page-home .section-head-row .section-note {
    max-width: 380px;
    text-align: right;
  }

  .page-home .league-tabs {
    gap: 10px;
  }

  .page-home .league-tab {
    padding: 10px 24px;
  }

  .page-home .stats-grid {
    gap: 20px;
  }

  .page-home .stat-card {
    padding: 24px 22px;
  }

  .page-home .stat-value {
    font-size: 42px;
  }

  .page-home .index-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .page-home .index-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 14px;
    min-height: 90px;
    justify-content: center;
  }

  .page-home .index-link:hover {
    transform: translateY(-4px);
  }
}

@media screen and (max-width: 360px) {
  .page-home .page-title {
    font-size: 34px;
  }

  .page-home .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .page-home .stat-card {
    padding: 16px 14px;
  }

  .page-home .stat-value {
    font-size: 28px;
  }

  .page-home .member-points {
    gap: 6px 12px;
  }

  .page-home .member-point {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .status-dot {
    animation: none;
  }

  .page-home .btn-primary,
  .page-home .btn-ghost,
  .page-home .member-btn,
  .page-home .league-card,
  .page-home .stat-card,
  .page-home .index-link {
    transition: none;
  }
}

.page-home {
  --bar: 1rem;
}
