@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ===== CSS 变量 ===== */
:root {
  --red: #ff0000;
  --pink: #ff006e;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --dark3: #0f3460;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 0, 110, 0.25);
  --text-base: #e8e8f0;
  --text-muted: #9090b0;
  --text-bright: #ffffff;
  --neon-red: 0 0 8px #ff0000, 0 0 20px rgba(255,0,0,0.5);
  --neon-pink: 0 0 8px #ff006e, 0 0 20px rgba(255,0,110,0.5);
  --sidenav-w: 220px;
  --radius-card: 28px;
  --radius-btn: 6px;
  --font-main: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --transition: 0.2s ease;
}

/* ===== 重置 ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.body-dark {
  background: var(--dark);
  color: var(--text-base);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red); }
ol, ul { list-style: none; }

/* ===== 扫描线叠层 ===== */
body.body-dark::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.15) 2px,
    rgba(0,0,0,0.15) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* ===== 总布局 ===== */
.site-wrap {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
.page-body {
  display: flex;
  flex: 1;
  margin-left: var(--sidenav-w);
  align-items: flex-start;
}
main {
  flex: 1;
  min-width: 0;
}
.wrap {
  max-width: 860px;
  padding: 0 24px 48px;
  width: 100%;
}

/* ===== 侧边导航 ===== */
.sidenav {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidenav-w);
  height: 100vh;
  background: var(--dark2);
  border-right: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  z-index: 100;
  overflow-y: auto;
  overflow-x: hidden;
}
.sidenav-brand {
  padding: 20px 16px 12px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--red), var(--pink));
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  box-shadow: var(--neon-pink);
}
.sidenav-announce {
  padding: 10px 14px;
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--glass-border);
  line-height: 1.4;
}
.sidenav ol {
  padding: 12px 0;
  flex: 1;
}
.sidenav ol li {
  width: 100%;
}
.nav-link {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 14px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.4;
  transition: background var(--transition), color var(--transition);
  border-left: 2px solid transparent;
  min-height: 40px;
}
.nav-link:hover {
  background: var(--glass-bg);
  color: var(--text-bright);
  border-left-color: var(--pink);
}
.nav-link--active {
  color: var(--text-bright);
  background: rgba(255,0,110,0.08);
  border-left-color: var(--red);
}
.nav-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--pink);
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.8;
}
.nav-text {
  flex: 1;
}

/* ===== 侧边栏 ===== */
.sidebar {
  width: 260px;
  flex-shrink: 0;
  padding: 32px 16px 32px 0;
  position: sticky;
  top: 24px;
  align-self: flex-start;
}
.sidebar-inner {
  padding: 20px;
}
.sidebar-title {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--glass-border);
}
.sidebar-title--mt {
  margin-top: 20px;
}
.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sidebar-list li a {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--transition), padding-left var(--transition);
}
.sidebar-list li a:hover {
  color: var(--text-bright);
  padding-left: 6px;
}

/* ===== 玻璃卡片 ===== */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ===== 按钮 ===== */
.btn-neon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  min-height: 40px;
  border-radius: var(--radius-btn);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--red), var(--pink));
  color: #fff;
  border: none;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-neon:hover {
  box-shadow: var(--neon-pink);
  transform: translateY(-1px);
  color: #fff;
}
.btn-neon--primary {
  background: linear-gradient(135deg, var(--red), var(--pink));
}
.btn-neon--ghost {
  background: transparent;
  border: 1px solid var(--pink);
  color: var(--pink);
}
.btn-neon--ghost:hover {
  background: rgba(255,0,110,0.12);
  color: var(--pink);
}
.btn-neon--sm {
  padding: 6px 14px;
  font-size: 12px;
  min-height: 34px;
}

/* ===== Hero（首页） ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-left: -24px;
  width: calc(100% + 24px);
  padding: 0 24px;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--dark) 40%, transparent 100%),
    linear-gradient(45deg, rgba(255,0,0,0.15), rgba(255,0,110,0.1));
  z-index: 0;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 80px;
  background: linear-gradient(135deg, var(--red) 0%, var(--pink) 50%, transparent 100%);
  clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.18;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.hero-text {
  flex: 1;
  min-width: 0;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.hero-h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-bright);
  margin-bottom: 20px;
  text-shadow: var(--neon-red);
}
.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-media {
  flex: 0 0 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img {
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 40px rgba(255,0,110,0.2);
  width: 100%;
  object-fit: cover;
}
.hero-placeholder {
  width: 280px;
  height: 360px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(135deg, rgba(255,0,0,0.1), rgba(255,0,110,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-placeholder-text {
  font-size: 28px;
  font-weight: 700;
  color: var(--pink);
  text-shadow: var(--neon-pink);
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
}

/* ===== 页面英雄区（内页） ===== */
.page-hero-section {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}
.page-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -24px;
  right: -24px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--pink), transparent);
}
.page-hero-inner {
  display: flex;
  align-items: center;
}
.page-hero-text {
  flex: 1;
}
.page-h1 {
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-bright);
  margin-bottom: 14px;
}
.page-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== Review 英雄区 ===== */
.review-header-section {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--glass-border);
  position: relative;
}
.review-header-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -24px;
  right: -24px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--pink), transparent);
}
.review-header-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.review-header-text {
  flex: 1;
}
.review-h1 {
  font-size: clamp(20px, 3.5vw, 34px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-bright);
  margin: 12px 0 14px;
}
.review-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.review-dates {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.review-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}
.review-hero-media {
  flex: 0 0 200px;
}
.review-hero-img {
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 24px rgba(255,0,110,0.15);
  width: 100%;
  object-fit: cover;
}
.breadcrumb-link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--pink);
}
.breadcrumb-sep {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 6px;
}
.breadcrumb-cur {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}
.review-meta-top {
  margin-bottom: 8px;
}

/* ===== 正文区 ===== */
.content-section {
  padding: 40px 0 0;
}
.content-main {
  max-width: 720px;
}
.prose {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-base);
}
.prose h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-bright);
  margin: 36px 0 14px;
  padding-left: 12px;
  border-left: 3px solid var(--red);
}
.prose h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-bright);
  margin: 28px 0 10px;
}
.prose p {
  margin-bottom: 18px;
}
.prose ul, .prose ol {
  margin: 16px 0 16px 20px;
  list-style: disc;
}
.prose ol {
  list-style: decimal;
}
.prose li {
  margin-bottom: 8px;
}
.prose strong {
  color: var(--text-bright);
  font-weight: 600;
}
.prose em {
  color: var(--pink);
  font-style: italic;
}
.prose a {
  color: var(--pink);
  border-bottom: 1px solid rgba(255,0,110,0.3);
}
.prose a:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}
.prose blockquote {
  border-left: 3px solid var(--pink);
  margin: 24px 0;
  padding: 12px 20px;
  background: rgba(255,0,110,0.06);
  border-radius: 0 8px 8px 0;
  color: var(--text-muted);
}
.prose code {
  font-family: var(--font-mono);
  font-size: 14px;
  background: rgba(255,255,255,0.06);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--pink);
}
.prose--legal h2 {
  font-size: 19px;
}
.review-footer-nav {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== 标题装饰 ===== */
.section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-bright);
  margin: 40px 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title span {
  position: relative;
}
.section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  background: linear-gradient(180deg, var(--red), var(--pink));
  border-radius: 2px;
  flex-shrink: 0;
}

/* ===== 评测卡片网格 ===== */
.reviews-section {
  padding-bottom: 48px;
}
.reviews-section .glass-card {
  display: flex;
  gap: 20px;
  padding: 20px;
  margin-bottom: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.reviews-section .glass-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,0,110,0.15);
}
.card-img-wrap {
  flex: 0 0 120px;
}
.card-img {
  width: 120px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}
.card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}
.card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.4;
}
.card-title span {
  display: inline;
}
.card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== 快速入口 ===== */
.quick-links-section {
  padding-bottom: 48px;
}
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.quick-link-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 18px;
  color: var(--text-base);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.quick-link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,0,110,0.18);
  color: var(--text-base);
}
.ql-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  box-shadow: var(--neon-pink);
  flex-shrink: 0;
}
.quick-link-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.4;
}
.quick-link-card h3 span {
  display: inline;
}
.quick-link-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== Ranking 页 ===== */
.ranking-list-section {
  padding-bottom: 48px;
}
.rank-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  margin-bottom: 14px;
  align-items: flex-start;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.rank-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 24px rgba(255,0,110,0.15);
}
.rank-num-badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  box-shadow: var(--neon-pink);
}
.rank-img-wrap {
  flex: 0 0 80px;
}
.rank-img {
  width: 80px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
}
.rank-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rank-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.4;
}
.rank-title span { display: inline; }
.rank-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rank-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

/* ===== Compare 页 ===== */
.compare-vs-banner {
  padding: 32px 0;
  border-bottom: 1px solid var(--glass-border);
}
.compare-vs-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.compare-side {
  flex: 1;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.compare-year {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-bright);
  text-shadow: var(--neon-pink);
  line-height: 1;
}
.compare-label {
  font-size: 14px;
  color: var(--text-muted);
}
.compare-vs-badge {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--red);
  text-shadow: var(--neon-red);
  flex-shrink: 0;
  min-width: 48px;
  text-align: center;
}

/* ===== About CTA ===== */
.about-cta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
}
.about-cta-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== 页脚 ===== */
.site-footer {
  margin-left: var(--sidenav-w);
  background: var(--dark2);
  border-top: 1px solid var(--glass-border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 48px 40px 32px;
  max-width: 1000px;
}
.footer-brand-big {
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 700;
  color: transparent;
  background: linear-gradient(135deg, var(--red), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 16px;
}
.footer-address {
  font-style: normal;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
}
.footer-links-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
  min-height: 40px;
  display: flex;
  align-items: center;
}
.footer-links-col ul li a:hover {
  color: var(--pink);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  border-top: 1px solid var(--glass-border);
  max-width: 1000px;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}
.footer-links-inline {
  display: flex;
  gap: 20px;
}
.footer-links-inline a {
  font-size: 12px;
  color: var(--text-muted);
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.footer-links-inline a:hover {
  color: var(--pink);
}

/* ===== Glitch 动效 ===== */
@keyframes glitch {
  0%, 90%, 100% { transform: none; text-shadow: var(--neon-red); }
  91% { transform: skewX(-2deg) translateX(2px); text-shadow: 2px 0 var(--pink), -2px 0 var(--red); }
  93% { transform: skewX(2deg) translateX(-2px); text-shadow: -2px 0 var(--pink), 2px 0 var(--red); }
  95% { transform: none; }
}
.glitch {
  animation: glitch 6s infinite;
}

/* ===== Scroll Reveal ===== */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.reveal {
  animation: revealUp 0.5s ease both;
}
.reviews-section .glass-card:nth-child(2) { animation-delay: 0.08s; }
.reviews-section .glass-card:nth-child(3) { animation-delay: 0.16s; }
.reviews-section .glass-card:nth-child(4) { animation-delay: 0.24s; }
.reviews-section .glass-card:nth-child(5) { animation-delay: 0.32s; }
.rank-item:nth-child(2) { animation-delay: 0.08s; }
.rank-item:nth-child(3) { animation-delay: 0.16s; }
.rank-item:nth-child(4) { animation-delay: 0.24s; }
.rank-item:nth-child(5) { animation-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .glitch { animation: none; }
  .reveal { animation: none; }
  .hero-section, .rank-item, .reviews-section .glass-card { transition: none; }
}

/* ===== 响应式 ===== */
@media (max-width: 900px) {
  :root { --sidenav-w: 0px; }
  .sidenav {
    position: fixed;
    top: 0;
    left: -220px;
    width: 220px;
    transition: left 0.25s ease;
    z-index: 200;
  }
  .sidenav.is-open { left: 0; }
  .page-body { margin-left: 0; }
  .site-footer { margin-left: 0; }

  .mob-nav-toggle {
    display: flex;
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 201;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: var(--dark2);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
  }
  .mob-nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--pink);
    border-radius: 2px;
  }
  .wrap { padding: 0 16px 40px; }
  .hero-inner { flex-direction: column; gap: 24px; padding-top: 80px; }
  .hero-media { flex: none; width: 100%; max-width: 300px; }
  .hero-section { min-height: auto; padding: 0 16px 48px; }
  .sidebar {
    display: none;
  }
  .quick-links-grid { grid-template-columns: 1fr 1fr; }
  .compare-vs-inner { flex-direction: column; }
  .compare-vs-badge { order: -1; }
  .review-header-inner { flex-direction: column; }
  .review-hero-media { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; padding: 32px 20px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; padding: 16px 20px; text-align: center; }
  .footer-links-inline { justify-content: center; }
}

@media (max-width: 480px) {
  .quick-links-grid { grid-template-columns: 1fr; }
  .reviews-section .glass-card { flex-direction: column; }
  .card-img-wrap { flex: none; width: 100%; }
  .card-img { width: 100%; height: 180px; }
  .rank-item { flex-wrap: wrap; }
  .hero-actions { flex-direction: column; }
  .page-h1, .review-h1 { font-size: 20px; }
  .hero-h1 { font-size: 24px; }
  .compare-year { font-size: 36px; }
}

/* ===== 移动端汉堡按钮占位 ===== */
@media (min-width: 901px) {
  .mob-nav-toggle { display: none; }
}
