:root {
  --bg: #FAFAFA;
  --fg: #0F172A;
  --muted: #F1F5F9;
  --muted-fg: #64748B;
  --accent: #6C5CE7;
  --accent-2: #A29BFE;
  --accent-fg: #FFFFFF;
  --border: #E2E8F0;
  --card: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
  --shadow-accent: 0 4px 14px rgba(108,92,231,0.25);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --header-h: 64px;
  --max-w: 1320px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; height: 100%; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.logo-text { font-family: var(--font-display); font-weight: 800; font-size: 20px; }
.logo-accent { color: var(--accent); }

.nav { display: flex; gap: 4px; overflow-x: auto; flex: 1; scrollbar-width: none; align-items: center; }
.nav::-webkit-scrollbar { display: none; }
.nav-cat-btn {
  padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600;
  white-space: nowrap; transition: all 0.2s; color: var(--muted-fg);
  font-family: var(--font-body);
}
.nav-cat-btn:hover { background: var(--muted); color: var(--fg); }
.nav-cat-btn.active { background: var(--accent); color: #fff; }

/* 桌面端：search-box 作为 nav 内最后一个元素，用 margin-left:auto 贴右 */
.nav .search-box { margin-left: auto; flex-shrink: 0; }

.header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; margin-left: auto; }
.search-box {
  position: relative; display: flex; align-items: center;
}
.search-icon { width: 18px; height: 18px; position: absolute; left: 12px; color: var(--muted-fg); pointer-events: none; }
.search-box input {
  padding: 8px 14px 8px 38px; border: 1px solid var(--border); border-radius: 20px;
  font-size: 14px; width: 200px; outline: none; transition: all 0.2s;
  background: var(--muted); font-family: var(--font-body);
}
.search-box input:focus { border-color: var(--accent); background: #fff; width: 260px; box-shadow: var(--shadow-accent); }

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--fg); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO / CAROUSEL ===== */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0F172A 0%, #1e1b4b 50%, #312e81 100%);
  padding: 48px 0 40px; color: #fff; margin-bottom: 0;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(108,92,231,0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 30%, rgba(162,155,254,0.2) 0%, transparent 50%);
}
.hero-inner { position: relative; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(108,92,231,0.3); border: 1px solid rgba(162,155,254,0.3);
  padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600;
  margin-bottom: 16px; backdrop-filter: blur(4px);
}
.hero-label .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

.hero-title {
  font-family: var(--font-display); font-size: clamp(28px, 5vw, 48px);
  font-weight: 800; line-height: 1.15; margin-bottom: 12px; max-width: 600px;
}
.hero-desc { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 500px; margin-bottom: 24px; }
.hero-play-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; padding: 14px 32px; border-radius: 30px;
  font-weight: 700; font-size: 16px; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(108,92,231,0.4);
}
.hero-play-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(108,92,231,0.5); }
.hero-play-btn svg { width: 20px; height: 20px; }

.carousel-wrapper { margin-top: 32px; position: relative; }
.carousel-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 8px; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-card {
  flex: 0 0 220px; scroll-snap-align: start;
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  transition: transform 0.3s; position: relative; background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1);
}
.carousel-card:hover { transform: scale(1.05); }
.carousel-card img { width: 100%; height: 140px; object-fit: cover; }
.carousel-card-info { padding: 12px; }
.carousel-card-title { font-weight: 700; font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.carousel-card-meta { font-size: 12px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; }
.carousel-card-rating { color: #fbbf24; }

/* ===== SECTION ===== */
.section { padding: 48px 0; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.section-title {
  font-family: var(--font-display); font-size: 24px; font-weight: 800;
  display: flex; align-items: center; gap: 10px;
}
.section-title .badge {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: 12px;
}
.section-link { font-size: 14px; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 4px; }
.section-link:hover { text-decoration: underline; }

/* ===== GAME GRID ===== */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.game-card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: all 0.3s; cursor: pointer;
  position: relative;
}
.game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent-2); }
.game-card-img { position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden; background: var(--muted); }
.game-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.game-card:hover .game-card-img img { transform: scale(1.08); }
.game-card-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.game-card:hover .game-card-overlay { opacity: 1; }
.play-btn-overlay {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px; box-shadow: var(--shadow-accent);
  transition: transform 0.2s;
}
.game-card:hover .play-btn-overlay { transform: scale(1.1); }
.game-card-badge {
  position: absolute; top: 8px; left: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-size: 10px; font-weight: 700; padding: 3px 8px;
  border-radius: 6px; z-index: 2;
}
.game-card-badge.new { background: linear-gradient(135deg, #10b981, #34d399); }
.game-card-badge.hot { background: linear-gradient(135deg, #ef4444, #f97316); }
.game-card-body { padding: 12px; }
.game-card-title { font-weight: 700; font-size: 14px; margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-card-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted-fg); }
.game-card-rating { color: #fbbf24; display: flex; align-items: center; gap: 2px; }
.game-card-plays { display: flex; align-items: center; gap: 3px; }
.game-card-cat {
  font-size: 11px; font-weight: 600; color: var(--accent);
  background: rgba(108,92,231,0.08); padding: 2px 8px; border-radius: 4px;
}

/* ===== TOP 10 LIST ===== */
.top-list { display: flex; flex-direction: column; gap: 8px; }
.top-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); cursor: pointer; transition: all 0.2s;
}
.top-item:hover { border-color: var(--accent-2); box-shadow: var(--shadow-md); }
.top-rank {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: var(--accent); min-width: 32px; text-align: center;
}
.top-rank.gold { color: #fbbf24; }
.top-rank.silver { color: #94a3b8; }
.top-rank.bronze { color: #d97706; }
.top-item-img { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.top-item-info { flex: 1; min-width: 0; }
.top-item-title { font-weight: 700; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.top-item-meta { font-size: 12px; color: var(--muted-fg); display: flex; gap: 10px; }
.top-item-play {
  padding: 6px 16px; border-radius: 16px; font-size: 12px; font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; white-space: nowrap; transition: all 0.2s;
}
.top-item-play:hover { transform: scale(1.05); }

/* ===== DETAIL PAGE ===== */
.detail-hero {
  background: linear-gradient(135deg, #0F172A, #1e1b4b, #312e81);
  padding: 48px 0 32px; color: #fff; position: relative; overflow: hidden;
}
.detail-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(108,92,231,0.25) 0%, transparent 60%);
}
.detail-hero-inner { position: relative; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.detail-breadcrumb { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.detail-breadcrumb a { color: rgba(255,255,255,0.7); }
.detail-breadcrumb a:hover { color: #fff; }
.detail-top { display: flex; gap: 32px; align-items: flex-start; }
.detail-thumb {
  width: 320px; flex-shrink: 0; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  aspect-ratio: 16/10;
}
.detail-thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-info { flex: 1; }
.detail-title { font-family: var(--font-display); font-size: clamp(24px,4vw,36px); font-weight: 800; margin-bottom: 12px; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.detail-meta-item {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1); padding: 6px 14px;
  border-radius: 20px; font-size: 13px; backdrop-filter: blur(4px);
}
.detail-meta-item svg { width: 16px; height: 16px; }
.detail-desc { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.detail-play-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; padding: 14px 36px; border-radius: 30px;
  font-weight: 700; font-size: 16px; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(108,92,231,0.4);
}
.detail-play-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(108,92,231,0.5); }

.detail-content { max-width: var(--max-w); margin: 0 auto; padding: 40px 20px; }
.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; }
.detail-main {}
.detail-section { margin-bottom: 36px; }
.detail-section-title {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--border);
}
.detail-howto { list-style: none; }
.detail-howto li {
  padding: 10px 0 10px 28px; position: relative;
  border-bottom: 1px solid var(--muted); font-size: 15px; color: var(--fg);
}
.detail-howto li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.detail-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.detail-pros, .detail-cons { padding: 20px; border-radius: var(--radius); }
.detail-pros { background: #f0fdf4; border: 1px solid #bbf7d0; }
.detail-cons { background: #fef2f2; border: 1px solid #fecaca; }
.detail-pros h4 { color: #16a34a; margin-bottom: 8px; }
.detail-cons h4 { color: #dc2626; margin-bottom: 8px; }
.detail-pros li, .detail-cons li { font-size: 14px; margin-bottom: 4px; list-style: none; padding-left: 18px; position: relative; }
.detail-pros li::before { content: '+'; position: absolute; left: 0; color: #16a34a; font-weight: 700; }
.detail-cons li::before { content: '-'; position: absolute; left: 0; color: #dc2626; font-weight: 700; }

.detail-tips { list-style: none; }
.detail-tips li { padding: 10px 16px; background: var(--muted); border-radius: 8px; margin-bottom: 8px; font-size: 14px; }
.detail-tips li::before { content: '\1F4A1'; margin-right: 8px; }

.detail-faq {}
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
.faq-q { padding: 14px 16px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; font-size: 18px; color: var(--accent); transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 16px; max-height: 0; overflow: hidden; transition: all 0.3s; font-size: 14px; color: var(--muted-fg); }
.faq-item.open .faq-a { padding: 0 16px 14px; max-height: 200px; }

.detail-sidebar {}
.sidebar-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; margin-bottom: 20px;
}
.sidebar-card h4 { font-family: var(--font-display); font-weight: 700; margin-bottom: 12px; font-size: 16px; }
.sidebar-info-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--muted); font-size: 14px; }
.sidebar-info-row:last-child { border-bottom: none; }
.sidebar-info-label { color: var(--muted-fg); }
.sidebar-info-value { font-weight: 600; }
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sidebar-tag {
  padding: 4px 12px; border-radius: 12px; font-size: 12px; font-weight: 600;
  background: rgba(108,92,231,0.08); color: var(--accent);
}
.sidebar-series-item {
  display: flex; align-items: center; gap: 10px; padding: 8px 0;
  border-bottom: 1px solid var(--muted); cursor: pointer; transition: color 0.2s;
}
.sidebar-series-item:hover { color: var(--accent); }
.sidebar-series-item:last-child { border-bottom: none; }
.sidebar-series-img { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; }
.sidebar-series-title { font-size: 13px; font-weight: 600; }

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
  flex-wrap: wrap; padding: 16px 0;
}
.filter-bar select {
  padding: 8px 14px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 13px; font-weight: 600; background: var(--card); cursor: pointer;
  font-family: var(--font-body);
}
.filter-bar select:focus { border-color: var(--accent); outline: none; }
.filter-count { font-size: 13px; color: var(--muted-fg); margin-left: auto; }

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state svg { width: 64px; height: 64px; color: var(--muted-fg); margin-bottom: 16px; }
.empty-state h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; }
.empty-state p { color: var(--muted-fg); font-size: 14px; }

/* ===== LOADING ===== */
.loading { display: flex; justify-content: center; padding: 80px 0; }
.spinner {
  width: 40px; height: 40px; border: 3px solid var(--border);
  border-top-color: var(--accent); border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== FOOTER ===== */
.footer {
  background: #0F172A; color: rgba(255,255,255,0.7); padding: 48px 0 24px;
  margin-top: 48px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.footer-brand { margin-bottom: 32px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-accent { color: var(--accent-2); }
.footer-tagline { font-size: 14px; margin-top: 8px; color: rgba(255,255,255,0.5); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 32px; }
.footer-col h4 { color: #fff; font-weight: 700; margin-bottom: 12px; font-size: 14px; }
.footer-col a, .footer-col span { display: block; font-size: 13px; margin-bottom: 8px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.4); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #fff; padding: 12px 20px 16px; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg); z-index: 99; align-items: stretch; gap: 6px;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.open .nav-cat-btn { width: 100%; text-align: left; padding: 10px 14px; font-size: 14px; }
  /* 移动端：搜索框在汉堡菜单内，贴底并占满宽度 */
  .nav.open .search-box { margin: 6px 0 0; padding-top: 10px; border-top: 1px solid var(--border); width: 100%; }
  .nav.open .search-box input { width: 100%; }
  .nav.open .search-box input:focus { width: 100%; }
  .mobile-menu-btn { display: flex; }
  .hero { padding: 32px 0 24px; }
  .hero-title { font-size: 24px; }
  .detail-top { flex-direction: column; }
  .detail-thumb { width: 100%; max-width: 480px; }
  .detail-pros-cons { grid-template-columns: 1fr; }
  .detail-sidebar { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .carousel-card { flex: 0 0 170px; }
  .carousel-card img { height: 100px; }
  .top-lists-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .game-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .game-card-body { padding: 8px; }
  .game-card-title { font-size: 13px; }
  .section { padding: 32px 0; }
  .section-title { font-size: 20px; }
  .top-item { padding: 8px 12px; gap: 10px; }
  .top-item-img { width: 44px; height: 44px; }
  .top-rank { font-size: 16px; min-width: 24px; }
}

/* ===== ANIMATIONS ===== */
.fade-in { animation: fadeIn 0.4s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.game-card { animation: cardIn 0.4s ease-out both; }
@keyframes cardIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-accent); transition: all 0.3s;
  opacity: 0; pointer-events: none;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); }

/* ===== STATIC PAGES ===== */
.static-page {
  max-width: 860px; margin: 0 auto; padding: 48px 20px 32px;
}
.static-page h1 {
  font-family: var(--font-display); font-size: 32px; font-weight: 800;
  margin-bottom: 8px; color: var(--fg);
}
.static-page .page-updated {
  font-size: 13px; color: var(--muted-fg); margin-bottom: 32px;
}
.static-page h2 {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  margin: 32px 0 12px; color: var(--fg);
}
.static-page h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  margin: 24px 0 10px; color: var(--fg);
}
.static-page p {
  font-size: 15px; line-height: 1.75; color: var(--muted-fg); margin-bottom: 14px;
}
.static-page ul, .static-page ol {
  margin: 0 0 16px 24px; font-size: 15px; line-height: 1.75; color: var(--muted-fg);
}
.static-page li { margin-bottom: 6px; }
.static-page a { color: var(--accent); }
.static-page a:hover { text-decoration: underline; }
.static-page strong { color: var(--fg); }
.static-page .disclaimer-box {
  background: #fffbeb; border: 1px solid #fde68a; border-radius: var(--radius);
  padding: 20px 24px; margin: 24px 0;
}
.static-page .disclaimer-box h3 { color: #b45309; margin-top: 0; }
.static-page .disclaimer-box p { color: #92400e; }
.static-page .contact-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin-bottom: 16px;
}
.static-page .contact-card h3 { margin-top: 0; }
.static-page .contact-card p { margin-bottom: 8px; }
.static-page .contact-card a { font-weight: 600; }
.static-page .privacy-link-box {
  background: rgba(108,92,231,0.06); border: 1px solid rgba(108,92,231,0.15);
  border-radius: var(--radius); padding: 20px 24px; margin: 20px 0;
}
.static-page .privacy-link-box h3 { color: var(--accent); margin-top: 0; }
.static-page .privacy-link-box a { font-weight: 600; display: inline-block; margin-top: 6px; }

/* ===== PROMO SECTION ===== */
.promo-section {
  background: linear-gradient(135deg, #0F172A 0%, #1e1b4b 50%, #312e81 100%);
  color: #fff; padding: 56px 0; position: relative; overflow: hidden;
}
.promo-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(108,92,231,0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 30%, rgba(162,155,254,0.15) 0%, transparent 50%);
}
.promo-inner { position: relative; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.promo-inner h2 {
  font-family: var(--font-display); font-size: clamp(24px, 4vw, 36px);
  font-weight: 800; margin-bottom: 24px; line-height: 1.2;
}
.promo-inner h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  margin: 28px 0 10px; color: var(--accent-2);
}
.promo-inner p {
  font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.75); margin-bottom: 14px;
}

@media (max-width: 768px) {
  .static-page { padding: 32px 16px 24px; }
  .static-page h1 { font-size: 24px; }
  .static-page h2 { font-size: 18px; }
  .promo-section { padding: 40px 0; }
}