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

/* ===== 基础变量 ===== */
:root {
  --c-red: #ff0000;
  --c-purple: #8b00ff;
  --c-dark: #261717;
  --c-dark2: #1a0f0f;
  --c-dark3: #0e0808;
  --c-glass-bg: rgba(255, 255, 255, 0.12);
  --c-glass-border: rgba(255, 255, 255, 0.18);
  --c-glass-bg-dark: rgba(38, 23, 23, 0.55);
  --c-text: #f5e8e8;
  --c-text-muted: #c8adb0;
  --c-accent-glow: rgba(139, 0, 255, 0.35);
  --c-red-glow: rgba(255, 0, 0, 0.3);
  --font-main: 'Space Grotesk', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', system-ui, sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --nav-h: 64px;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
  --prose-w: 760px;
}

/* ===== 重置 ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: linear-gradient(135deg, var(--c-dark3) 0%, var(--c-dark) 40%, #2d0a2d 100%);
  background-attachment: fixed;
  color: var(--c-text);
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-purple); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ===== 背景粒子装饰（纯CSS） ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(139,0,255,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 80% 70%, rgba(255,0,0,0.14) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.site-wrap { position: relative; z-index: 1; }

/* ===== 玻璃态基础 ===== */
.glass-card {
  background: var(--c-glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--c-glass-border);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.glass-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(139,0,255,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
}

/* ===== 导航 ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(26, 15, 15, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--c-glass-border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-link { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-logo { height: 36px; width: auto; }
.brand-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.02em;
}
.brand-text::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--c-red);
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 8px var(--c-red);
}

/* details/summary 汉堡菜单 */
.nav-details { position: static; }
.nav-details summary { list-style: none; }
.nav-details summary::-webkit-details-marker { display: none; }
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--c-glass-bg);
  border: 1px solid var(--c-glass-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,0,0,0.15); }
.bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-details[open] .hamburger .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-details[open] .hamburger .bar:nth-child(2) { opacity: 0; }
.nav-details[open] .hamburger .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 全屏遮罩菜单 */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-overlay-inner {
  width: min(520px, 92vw);
  text-align: center;
}
.nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: 1px solid var(--c-glass-border);
  color: var(--c-text);
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.nav-close:hover { background: var(--c-red); color: #fff; }
.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.nav-menu li a {
  display: block;
  padding: 14px 24px;
  font-size: 17px;
  font-weight: 700;
  color: var(--c-text);
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.nav-menu li a:hover {
  background: var(--c-glass-bg);
  border-color: var(--c-glass-border);
  color: var(--c-red);
  transform: translateX(6px);
}
.nav-contact { margin-top: 8px; }
.contact-btn {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--c-red), var(--c-purple));
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius);
  font-size: 16px;
  min-height: 44px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  transition: opacity var(--transition), transform var(--transition);
}
.contact-btn:hover { opacity: 0.88; transform: scale(1.03); color: #fff; }

/* ===== 按钮 ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  min-height: 44px;
  background: linear-gradient(135deg, var(--c-red) 0%, #cc0000 100%);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius);
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 0 16px var(--c-red-glow);
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(255,0,0,0.5);
  color: #fff;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  min-height: 44px;
  background: transparent;
  color: var(--c-text);
  font-weight: 700;
  font-size: 16px;
  border: 1px solid var(--c-glass-border);
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}
.btn-ghost:hover {
  background: var(--c-glass-bg);
  border-color: var(--c-purple);
  color: var(--c-purple);
  box-shadow: 0 0 12px var(--c-accent-glow);
}

/* ===== Hero ===== */
.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 20px 60px;
}
.hero-slash {
  position: absolute;
  top: 0;
  left: -10%;
  width: 75%;
  height: 100%;
  background: linear-gradient(160deg, rgba(255,0,0,0.12) 0%, rgba(139,0,255,0.08) 100%);
  clip-path: polygon(0 0, 85% 0, 70% 100%, 0 100%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 48px;
}
.hero-text {
  text-align: right;
  max-width: 600px;
}
.hero-text h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--c-text);
}
.hero-text h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--c-red);
  margin-top: 14px;
  margin-left: auto;
  box-shadow: 0 0 10px var(--c-red);
}
.hero-sub {
  font-size: 17px;
  color: var(--c-text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 14px; justify-content: flex-end; flex-wrap: wrap; }
.hero-deco {
  position: relative;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}
.deco-circle {
  position: absolute;
  border-radius: 50%;
}
.deco-circle--1 {
  width: 160px;
  height: 160px;
  background: rgba(139,0,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(139,0,255,0.3);
  top: 20px;
  left: 20px;
  box-shadow: 0 0 40px rgba(139,0,255,0.3);
}
.deco-circle--2 {
  width: 90px;
  height: 90px;
  background: rgba(255,0,0,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,0,0,0.25);
  bottom: 10px;
  right: 0;
  box-shadow: 0 0 20px rgba(255,0,0,0.25);
}
.deco-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0.08em;
  text-align: center;
  pointer-events: none;
}

/* ===== 页面顶部横幅（非首页） ===== */
.page-banner {
  position: relative;
  padding: 60px 20px 48px;
  overflow: hidden;
  border-bottom: 1px solid var(--c-glass-border);
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,0,0,0.08) 0%, rgba(139,0,255,0.06) 100%);
  pointer-events: none;
}
.banner-slash {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(160deg, transparent 0%, rgba(139,0,255,0.06) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.banner-inner h1 {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 12px;
  margin-bottom: 12px;
}
.banner-desc { color: var(--c-text-muted); font-size: 17px; }
.meta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 10px; }
.meta-date { font-size: 14px; color: var(--c-text-muted); }

.page-banner--review::before { background: linear-gradient(135deg, rgba(255,0,0,0.1) 0%, rgba(139,0,255,0.07) 100%); }
.page-banner--ranking::before { background: linear-gradient(135deg, rgba(255,0,0,0.14) 0%, transparent 60%); }
.page-banner--compare::before { background: linear-gradient(135deg, rgba(139,0,255,0.12) 0%, rgba(255,0,0,0.06) 100%); }
.page-banner--faq::before { background: linear-gradient(135deg, rgba(139,0,255,0.1) 0%, transparent 60%); }
.page-banner--about::before { background: linear-gradient(135deg, rgba(255,0,0,0.08) 0%, rgba(139,0,255,0.08) 100%); }
.page-banner--privacy::before { background: linear-gradient(135deg, rgba(38,23,23,0.4) 0%, transparent 60%); }

/* ===== 标签贴纸 ===== */
.sticker {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  background: var(--c-red);
  color: #fff;
  box-shadow: 0 0 10px var(--c-red-glow);
  margin-bottom: 6px;
}
.sticker--purple {
  background: var(--c-purple);
  box-shadow: 0 0 10px var(--c-accent-glow);
}
.sticker--red { background: var(--c-red); }
.sticker--lg { font-size: 13px; padding: 5px 14px; }

/* ===== 主体布局 ===== */
main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 20px;
  display: flex;
  gap: 36px;
  align-items: flex-start;
}
.wrap {
  flex: 1;
  min-width: 0;
}
.global-aside {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  padding: 24px;
}
.global-aside h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--c-text);
}
.global-aside .subtitle {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}

/* ===== section 间距 ===== */
.section-content,
.section-featured,
.section-reviews,
.section-compare,
.section-ranklist,
.section-related,
.section-more-compare,
.section-values,
.section-links,
.section-nav-cta,
.section-cta,
.section-explore,
.section-nav-links,
.section-back { margin-bottom: 52px; }

section > h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 4px;
  position: relative;
  padding-left: 16px;
}
section > h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15em;
  height: 0.8em;
  width: 4px;
  background: var(--c-red);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--c-red);
}
.subtitle {
  color: var(--c-text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

/* ===== 正文 prose ===== */
.prose { color: var(--c-text); }
.prose h2, .prose h3, .prose h4 { font-weight: 700; margin: 1.8em 0 0.6em; }
.prose h2 { font-size: clamp(18px, 2.5vw, 24px); }
.prose h3 { font-size: clamp(16px, 2vw, 20px); }
.prose p { margin-bottom: 1em; line-height: 1.7; }
.prose ul, .prose ol { margin: 0.8em 0 1em 1.4em; }
.prose li { margin-bottom: 0.4em; }
.prose strong { color: var(--c-red); font-weight: 700; }
.prose a { color: var(--c-red); text-decoration: underline; }
.prose a:hover { color: var(--c-purple); }
.prose table { width: 100%; border-collapse: collapse; margin: 1.2em 0; }
.prose th, .prose td { border: 1px solid var(--c-glass-border); padding: 10px 14px; text-align: left; font-size: 15px; }
.prose th { background: rgba(255,0,0,0.12); font-weight: 700; }
.prose td { background: rgba(255,255,255,0.04); }
.prose blockquote {
  border-left: 3px solid var(--c-red);
  padding: 12px 20px;
  margin: 1.2em 0;
  background: var(--c-glass-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--c-text-muted);
  font-style: italic;
}

/* ===== 卡片网格 ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.card-grid--3 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.card-grid--4 { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

.glass-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.glass-card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.glass-card h3 a { color: var(--c-text); }
.glass-card h3 a:hover { color: var(--c-red); }
.glass-card p { font-size: 14px; color: var(--c-text-muted); line-height: 1.55; flex: 1; }
.card-date { font-size: 12px; color: var(--c-text-muted); }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-red);
  margin-top: auto;
  padding: 6px 0;
  min-height: 32px;
}
.card-link::after { content: ' →'; }
.card-link:hover { color: var(--c-purple); }
.glass-card--sm { padding: 16px; }
.glass-card--compare { border-top: 2px solid var(--c-purple); }
.glass-card--rank { border-top: 2px solid var(--c-red); }
.glass-card--review { border-left: 2px solid var(--c-red); }

/* ===== 排行榜列表 ===== */
.rank-list { display: flex; flex-direction: column; gap: 16px; }
.rank-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
}
.rank-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--c-red);
  min-width: 52px;
  line-height: 1;
  text-shadow: 0 0 12px var(--c-red-glow);
  font-variant-numeric: tabular-nums;
}
.rank-item:nth-child(1) .rank-num { font-size: 40px; color: #ffd700; text-shadow: 0 0 14px rgba(255,215,0,0.4); }
.rank-item:nth-child(2) .rank-num { color: #c0c0c0; }
.rank-item:nth-child(3) .rank-num { color: #cd7f32; }
.rank-info { flex: 1; min-width: 0; }
.rank-info h3 { font-size: 16px; margin-bottom: 4px; }
.rank-info h3 a { color: var(--c-text); }
.rank-info h3 a:hover { color: var(--c-red); }
.rank-info p { font-size: 14px; color: var(--c-text-muted); }

/* ===== 价值卡片 ===== */
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.value-card { text-align: center; padding: 24px 16px; }
.value-icon { font-size: 28px; color: var(--c-red); display: block; margin-bottom: 8px; }
.value-card strong { display: block; font-size: 16px; margin-bottom: 6px; }
.value-card p { font-size: 14px; color: var(--c-text-muted); }

/* ===== CTA 行 ===== */
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== 侧边栏链接 ===== */
.aside-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.aside-links li a {
  display: block;
  padding: 9px 12px;
  font-size: 14px;
  color: var(--c-text-muted);
  border-radius: var(--radius);
  border-left: 2px solid transparent;
  transition: all var(--transition);
  min-height: 40px;
  line-height: 1.4;
  display: flex;
  align-items: center;
}
.aside-links li a:hover {
  color: var(--c-text);
  border-left-color: var(--c-red);
  background: rgba(255,0,0,0.08);
  padding-left: 16px;
}
.aside-tip, .aside-score {
  padding: 14px 16px;
  margin-top: 8px;
}
.aside-tip strong, .aside-score strong {
  display: block;
  font-size: 13px;
  color: var(--c-red);
  margin-bottom: 6px;
  font-weight: 700;
}
.aside-tip p { font-size: 13px; color: var(--c-text-muted); line-height: 1.55; }
.score-list { list-style: none; margin-top: 6px; }
.score-list li {
  font-size: 13px;
  color: var(--c-text-muted);
  padding: 3px 0 3px 14px;
  position: relative;
}
.score-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--c-purple);
  font-size: 11px;
}

/* ===== 页脚 ===== */
.site-footer {
  border-top: 1px solid var(--c-glass-border);
  padding: 0;
  text-align: center;
  background: rgba(14,8,8,0.5);
}
.footer-cta {
  padding: 40px 20px 32px;
  border-bottom: 1px solid var(--c-glass-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-cta p {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-text);
}
.footer-copy {
  padding: 20px;
  font-size: 14px;
  color: var(--c-text-muted);
}
.footer-copy a { color: var(--c-text-muted); margin: 0 4px; }
.footer-copy a:hover { color: var(--c-red); }
.footer-note {
  display: block;
  padding: 0 20px 20px;
  font-size: 12px;
  color: rgba(200,173,176,0.5);
}

/* ===== 动效 ===== */
@media (prefers-reduced-motion: no-preference) {
  .glass-card {
    animation: fadeUp 0.4s ease both;
  }
  .card-grid > li:nth-child(2) .glass-card { animation-delay: 0.07s; }
  .card-grid > li:nth-child(3) .glass-card { animation-delay: 0.14s; }
  .card-grid > li:nth-child(4) .glass-card { animation-delay: 0.21s; }
  .card-grid > li:nth-child(5) .glass-card { animation-delay: 0.28s; }
  .card-grid > li:nth-child(6) .glass-card { animation-delay: 0.35s; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .rank-item {
    animation: fadeUp 0.35s ease both;
  }
  .rank-list > li:nth-child(2) .rank-item { animation-delay: 0.06s; }
  .rank-list > li:nth-child(3) .rank-item { animation-delay: 0.12s; }
  .rank-list > li:nth-child(4) .rank-item { animation-delay: 0.18s; }
  .rank-list > li:nth-child(5) .rank-item { animation-delay: 0.24s; }

  .deco-circle--1 {
    animation: pulse 4s ease-in-out infinite;
  }
  .deco-circle--2 {
    animation: pulse 3s ease-in-out infinite 1s;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 40px rgba(139,0,255,0.3); }
    50% { box-shadow: 0 0 60px rgba(139,0,255,0.5); }
  }

  .btn-primary:active, .btn-ghost:active {
    transform: scale(0.97);
  }
}

/* ===== 响应式 ===== */
@media (max-width: 960px) {
  main {
    flex-direction: column;
    gap: 32px;
  }
  .global-aside {
    width: 100%;
    position: static;
  }
  .hero-deco { display: none; }
  .hero-inner { justify-content: flex-start; }
  .hero-text { text-align: left; max-width: 100%; }
  .hero-text h1::after { margin-left: 0; }
  .hero-cta { justify-content: flex-start; }
}

@media (max-width: 600px) {
  :root { --nav-h: 56px; }
  body { font-size: 16px; }
  .hero-section { min-height: 65vh; padding: 60px 16px 40px; }
  .hero-text h1 { font-size: 26px; }
  main { padding: 32px 16px; }
  .page-banner { padding: 48px 16px 36px; }
  .card-grid, .card-grid--3, .card-grid--4 {
    grid-template-columns: 1fr;
  }
  .rank-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .rank-num { font-size: 24px; }
  .cta-row { flex-direction: column; }
  .cta-row .btn-primary, .cta-row .btn-ghost { width: 100%; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-cta { padding: 28px 16px; }
  .nav-inner { padding: 0 16px; }
}

@media (max-width: 380px) {
  .hero-text h1 { font-size: 22px; }
  .banner-inner h1 { font-size: 20px; }
}
