.page-home {
  --home-green: #39FF14;
  --home-blue: #00E5FF;
  --home-bg: #0a0e14;
  --home-panel: #121820;
  --home-elev: #1a222e;
  --home-text: #E8F0F8;
  --home-text-2: #8A9AB5;
  --home-text-3: #4A5A75;
  --home-warn: #FFD700;
  --home-grad: linear-gradient(135deg, #39FF14 0%, #00E5FF 100%);
  --home-radius-lg: 24px;
  --home-radius-md: 16px;
  --home-radius-sm: 10px;
  --home-font-head: "Anton", Impact, "PingFang SC", "Microsoft YaHei", sans-serif;
  --home-font-body: Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
  --home-font-num: "Roboto Mono", Consolas, monospace;
  --home-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-family: var(--home-font-body);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s var(--home-ease), box-shadow 0.3s var(--home-ease), background-color 0.3s var(--home-ease), color 0.3s var(--home-ease);
  border: none;
  cursor: pointer;
}
.page-home .btn-primary {
  background: var(--home-grad);
  color: #0a0e14;
  padding: 14px 32px;
  font-size: 1rem;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.page-home .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(57, 255, 20, 0.25);
}
.page-home .btn-ghost {
  background: transparent;
  color: var(--home-text);
  border: 1px solid rgba(0, 229, 255, 0.5);
  padding: 12px 24px;
  font-size: 0.9rem;
}
.page-home .btn-ghost:hover {
  border-color: var(--home-blue);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
  transform: translateY(-2px);
}
.page-home .btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.page-home .breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 0.8rem;
  font-family: var(--home-font-body);
  color: var(--home-text-2);
  margin-bottom: 18px;
}
.page-home .breadcrumb a {
  color: var(--home-blue);
  text-decoration: none;
}
.page-home .breadcrumb span {
  opacity: 0.7;
}

.page-home .hero-zone {
  position: relative;
  overflow: hidden;
  padding: 60px 20px 80px;
  color: var(--home-text);
}
.page-home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-home .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.3) saturate(1.2);
}
.page-home .speed-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.25;
}
.page-home .sl {
  fill: none;
  stroke: var(--home-green);
  stroke-width: 2;
  stroke-dasharray: 6 10;
  animation: home-slide 2s linear infinite;
}
.page-home .sl-2, .page-home .sl-4 { stroke: var(--home-blue); animation-duration: 1.6s; }
.page-home .sl-3, .page-home .sl-5 { stroke: var(--home-green); animation-duration: 2.4s; }
@keyframes home-slide {
  from { stroke-dashoffset: 16; }
  to { stroke-dashoffset: 0; }
}
.page-home .hero-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(0, 229, 255, 0.08) 50%, rgba(57, 255, 20, 0.06) 80%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
  pointer-events: none;
}
.page-home .hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.page-home .hero-copy {
  max-width: 780px;
}
.page-home .kicker {
  font-family: var(--home-font-num);
  font-size: 0.95rem;
  color: var(--home-blue);
  text-transform: uppercase;
  margin: 0 0 8px;
  letter-spacing: 0.08em;
}
.page-home .page-title {
  font-family: var(--home-font-head);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.page-home .page-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 6px;
  background: var(--home-grad);
  margin-top: 18px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.page-home .hero-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--home-text-2);
  max-width: 680px;
  margin: 0 0 30px;
}
.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.page-home .hero-aside {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 10px;
}
.page-home .mini-panel {
  background: rgba(18, 24, 32, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: var(--home-radius-md);
  padding: 16px 14px;
  backdrop-filter: blur(6px);
}
.page-home .mini-label {
  display: block;
  font-size: 0.72rem;
  color: var(--home-text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  font-family: var(--home-font-num);
}
.page-home .mini-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--home-text);
}
.page-home .mini-num {
  display: block;
  font-family: var(--home-font-num);
  font-size: 1.8rem;
  color: var(--home-green);
  text-shadow: 0 0 18px rgba(57, 255, 20, 0.35);
}
.page-home .mini-note {
  display: block;
  font-size: 0.78rem;
  color: var(--home-text-2);
  margin-top: 4px;
}
.page-home .live-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--home-green);
  font-family: var(--home-font-num);
  font-size: 1.2rem;
}
.page-home .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-green);
  box-shadow: 0 0 12px var(--home-green);
  animation: home-pulse 1.2s ease-in-out infinite;
}
@keyframes home-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.page-home .section {
  padding: 50px 20px;
  scroll-margin-top: 120px;
}
.page-home .section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto 24px;
  flex-wrap: wrap;
}
.page-home .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--home-font-num);
  font-size: 0.78rem;
  color: var(--home-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
}
.page-home .section-tag::before {
  content: "";
  width: 18px;
  height: 3px;
  background: var(--home-grad);
  clip-path: polygon(0 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}
.page-home .section-title {
  font-family: var(--home-font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin: 0;
  color: var(--home-text);
  text-transform: uppercase;
}

.page-home .live-section {
  background: linear-gradient(180deg, rgba(10, 14, 20, 0) 0%, rgba(18, 24, 32, 0.4) 50%, rgba(10, 14, 20, 0) 100%);
}
.page-home .live-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.page-home .live-card {
  background: var(--home-panel);
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: var(--home-radius-md);
  padding: 18px 18px 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--home-ease), box-shadow 0.3s var(--home-ease);
}
.page-home .live-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.page-home .live-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--home-grad);
  opacity: 0.6;
}
.page-home .live-league {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.page-home .league-badge {
  font-family: var(--home-font-num);
  font-size: 0.75rem;
  color: var(--home-green);
  background: rgba(57, 255, 20, 0.1);
  padding: 3px 10px;
  border-radius: 99px;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.page-home .live-time {
  font-family: var(--home-font-num);
  font-size: 0.8rem;
  color: var(--home-warn);
}
.page-home .live-teams {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.page-home .team-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.page-home .team-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--home-text);
}
.page-home .team-score {
  font-family: var(--home-font-num);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--home-green);
  text-shadow: 0 0 14px rgba(57, 255, 20, 0.3);
}
.page-home .live-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(138, 154, 181, 0.15);
  font-size: 0.75rem;
  color: var(--home-text-3);
  gap: 8px;
  flex-wrap: wrap;
}
.page-home .live-footnote {
  max-width: 1320px;
  margin: 16px auto 0;
  font-size: 0.8rem;
  color: var(--home-text-3);
  line-height: 1.6;
}

.page-home .category-section {
  position: relative;
}
.page-home .category-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0%, transparent 30%, rgba(57, 255, 20, 0.03) 60%, rgba(0, 229, 255, 0.04) 100%);
  pointer-events: none;
}
.page-home .category-layout {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  position: relative;
}
.page-home .category-desc {
  color: var(--home-text-2);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 24px;
  max-width: 680px;
}
.page-home .cat-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-home .cat-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(18, 24, 32, 0.6);
  border-radius: var(--home-radius-sm);
  font-size: 0.95rem;
  color: var(--home-text);
}
.page-home .cat-index {
  font-family: var(--home-font-num);
  font-size: 0.8rem;
  color: var(--home-green);
  background: rgba(57, 255, 20, 0.08);
  padding: 3px 8px;
  border-radius: 6px;
  flex-shrink: 0;
}
.page-home .category-visual {
  position: relative;
}
.page-home .cat-img {
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.15);
  margin: 0;
}
.page-home .cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .cat-float-card {
  position: absolute;
  right: -8px;
  bottom: 24px;
  background: rgba(18, 24, 32, 0.95);
  border: 1px solid rgba(57, 255, 20, 0.25);
  border-radius: var(--home-radius-md);
  padding: 14px 18px;
  backdrop-filter: blur(8px);
  min-width: 150px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.page-home .float-card-title {
  display: block;
  font-size: 0.7rem;
  color: var(--home-text-3);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.page-home .float-card-value {
  display: block;
  font-family: var(--home-font-head);
  font-size: 1.4rem;
  color: var(--home-green);
}
.page-home .float-card-note {
  display: block;
  font-size: 0.75rem;
  color: var(--home-text-2);
  margin-top: 2px;
}

.page-home .compare-section {
  background: linear-gradient(200deg, rgba(18, 24, 32, 0.7) 0%, rgba(10, 14, 20, 0.2) 60%);
  position: relative;
  overflow: hidden;
}
.page-home .compare-bg-accent {
  position: absolute;
  top: -20px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-home .compare-head {
  position: relative;
}
.page-home .compare-grid {
  max-width: 1320px;
  margin: 0 auto 30px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.page-home .compare-card {
  padding: 26px 24px;
  border-radius: var(--home-radius-md);
  position: relative;
  overflow: hidden;
}
.page-home .compare-old {
  background: rgba(18, 24, 32, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.15);
}
.page-home .compare-new {
  background: linear-gradient(135deg, rgba(26, 34, 46, 0.9) 0%, rgba(18, 24, 32, 0.9) 100%);
  border: 1px solid rgba(57, 255, 20, 0.3);
  box-shadow: 0 12px 40px rgba(57, 255, 20, 0.06);
}
.page-home .compare-version {
  font-family: var(--home-font-head);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--home-text);
}
.page-home .compare-new .compare-version {
  color: var(--home-green);
}
.page-home .compare-old .compare-version {
  color: var(--home-warn);
}
.page-home .compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-home .compare-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--home-text-2);
}
.page-home .compare-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--home-warn);
  font-family: var(--home-font-num);
  font-size: 0.85rem;
}
.page-home .compare-new .compare-list li::before {
  content: "✓";
  color: var(--home-green);
}
.page-home .compare-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--home-font-num);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 99px;
}
.page-home .compare-old .compare-tag {
  background: rgba(255, 215, 0, 0.12);
  color: var(--home-warn);
}
.page-home .compare-new .compare-tag {
  background: rgba(57, 255, 20, 0.12);
  color: var(--home-green);
}
.page-home .compare-vs {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
}
.page-home .compare-vs span {
  font-family: var(--home-font-head);
  font-size: 2.2rem;
  color: var(--home-blue);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}
.page-home .compare-visual {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
.page-home .compare-visual .img-frame {
  border-radius: var(--home-radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.12);
  margin: 0;
}
.page-home .compare-visual .img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .compare-visual-note {
  padding: 20px;
  background: rgba(18, 24, 32, 0.6);
  border-radius: var(--home-radius-md);
  border-left: 3px solid var(--home-blue);
}
.page-home .note-title {
  display: block;
  font-family: var(--home-font-head);
  font-size: 1.1rem;
  color: var(--home-text);
  margin-bottom: 8px;
}
.page-home .compare-visual-note p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--home-text-2);
  margin: 0;
}

.page-home .switch-section {
  background: rgba(10, 14, 20, 1);
}
.page-home .switch-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.page-home .switch-desc {
  color: var(--home-text-2);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 24px;
  max-width: 620px;
}
.page-home .switch-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.page-home .switch-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--home-text);
}
.page-home .sp-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(57, 255, 20, 0.08);
  border-radius: 12px;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(57, 255, 20, 0.15);
}
.page-home .switch-demo {
  background: var(--home-panel);
  border-radius: var(--home-radius-lg);
  padding: 20px;
  border: 1px solid rgba(0, 229, 255, 0.12);
}
.page-home .demo-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.page-home .demo-tab {
  font-size: 0.8rem;
  font-family: var(--home-font-body);
  padding: 6px 14px;
  border-radius: 99px;
  background: var(--home-elev);
  color: var(--home-text-2);
  cursor: default;
}
.page-home .demo-tab.active {
  background: var(--home-grad);
  color: #0a0e14;
  font-weight: 700;
}
.page-home .demo-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-home .demo-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  background: rgba(10, 14, 20, 0.6);
  border-radius: var(--home-radius-sm);
  font-size: 0.9rem;
  color: var(--home-text);
  border-left: 2px solid rgba(0, 229, 255, 0.3);
}
.page-home .demo-row span:last-child {
  font-family: var(--home-font-num);
  font-weight: 700;
  color: var(--home-green);
}
.page-home .demo-footnote {
  font-size: 0.75rem;
  color: var(--home-text-3);
  margin-top: 12px;
  text-align: right;
}

.page-home .stats-section {
  background: linear-gradient(160deg, rgba(18, 24, 32, 0.5) 0%, rgba(10, 14, 20, 0.2) 50%, rgba(0, 229, 255, 0.03) 100%);
}
.page-home .stats-head {
  max-width: 1320px;
  margin: 0 auto 24px;
}
.page-home .stats-grid {
  max-width: 1320px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.page-home .stat-card {
  background: var(--home-panel);
  border-radius: var(--home-radius-md);
  padding: 22px 16px;
  text-align: center;
  border: 1px solid rgba(0, 229, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.page-home .stat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--home-grad);
  opacity: 0;
  transition: opacity 0.3s var(--home-ease);
}
.page-home .stat-card:hover::after {
  opacity: 1;
}
.page-home .stat-num {
  display: block;
  font-family: var(--home-font-num);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--home-green);
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.25);
  line-height: 1.2;
}
.page-home .stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--home-text-2);
  margin-top: 6px;
}
.page-home .stats-extra {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
.page-home .stats-img {
  border-radius: var(--home-radius-md);
  overflow: hidden;
  border: 1px solid rgba(57, 255, 20, 0.15);
  margin: 0;
}
.page-home .stats-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .stats-extra-copy p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--home-text-2);
  margin: 0 0 16px;
}

.page-home .news-section {
  background: linear-gradient(180deg, rgba(10, 14, 20, 0.2) 0%, rgba(18, 24, 32, 0.5) 100%);
}
.page-home .news-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.page-home .news-card {
  background: var(--home-panel);
  padding: 22px 20px;
  border-radius: var(--home-radius-md);
  border: 1px solid rgba(0, 229, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.3s var(--home-ease), box-shadow 0.3s var(--home-ease);
}
.page-home .news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.page-home .news-cat {
  font-family: var(--home-font-num);
  font-size: 0.72rem;
  color: var(--home-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  align-self: flex-start;
  background: rgba(0, 229, 255, 0.08);
  padding: 3px 10px;
  border-radius: 99px;
}
.page-home .news-title {
  font-family: var(--home-font-head);
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--home-text);
  margin: 0;
}
.page-home .news-excerpt {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--home-text-2);
  margin: 0;
}
.page-home .news-link {
  font-size: 0.85rem;
  color: var(--home-green);
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  align-self: flex-start;
}
.page-home .news-link::after {
  content: " →";
  transition: transform 0.3s var(--home-ease);
  display: inline-block;
}
.page-home .news-link:hover::after {
  transform: translateX(4px);
}

.page-home .support-strip {
  padding: 30px 20px 50px;
}
.page-home .support-box {
  max-width: 1320px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(26, 34, 46, 0.95) 0%, rgba(18, 24, 32, 0.95) 100%);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: var(--home-radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.page-home .support-title {
  font-family: var(--home-font-head);
  font-size: 1.5rem;
  margin: 0 0 8px;
  color: var(--home-text);
}
.page-home .support-note {
  font-size: 0.9rem;
  color: var(--home-text-2);
  margin: 0;
  line-height: 1.7;
}
.page-home .support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 900px) {
  .page-home .hero-zone {
    padding: 80px 40px 100px;
  }
  .page-home .hero-grid {
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: end;
  }
  .page-home .hero-aside {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .page-home .page-title {
    margin-bottom: 26px;
  }
  .page-home .live-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .page-home .category-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
  }
  .page-home .cat-list li {
    font-size: 1rem;
    padding: 12px 18px;
  }
  .page-home .cat-float-card {
    right: -20px;
    bottom: 32px;
  }
  .page-home .compare-vs {
    display: flex;
  }
  .page-home .compare-grid {
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    align-items: stretch;
  }
  .page-home .compare-card {
    padding: 32px 30px;
  }
  .page-home .compare-visual {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .page-home .switch-inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .page-home .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .page-home .stats-extra {
    grid-template-columns: 400px 1fr;
    gap: 40px;
  }
  .page-home .news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .page-home .support-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 36px 40px;
  }
}

@media (min-width: 1200px) {
  .page-home .live-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .hero-aside {
    grid-template-columns: 1fr;
  }
  .page-home .section {
    padding: 60px 40px;
  }
}
