/* Golden Ledger Theme - Binance Landing Page */
/* Deep obsidian base with gold, amber, and emerald accents */

:root {
  --bg-obsidian: #0a0a0f;
  --bg-obsidian2: #12121a;
  --bg-card: #1a1a24;
  --bg-card2: #22222e;
  --gold: #f0b90b;
  --gold-light: #fcd535;
  --gold-dark: #c99400;
  --amber: #f59e0b;
  --amber-light: #fbbf24;
  --emerald: #10b981;
  --emerald-light: #34d399;
  --text-primary: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --border: #27273a;
  --border-light: #3f3f55;
  --gradient-gold: linear-gradient(135deg, #f0b90b 0%, #f59e0b 50%, #fbbf24 100%);
  --gradient-hero: linear-gradient(180deg, #0a0a0f 0%, #1a1200 50%, #0a0a0f 100%);
  --shadow-gold: 0 25px 50px -12px rgba(240, 185, 11, 0.25);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--bg-obsidian);
  color: var(--text-primary);
  line-height: 1.6;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 20px rgba(240, 185, 11, 0.3); }
  50% { box-shadow: 0 0 40px rgba(240, 185, 11, 0.6); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes count-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Navigation */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-brand-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.nav-brand-icon svg {
  width: 26px;
  height: 26px;
  fill: #0a0a0f;
}

.nav-brand-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.nav-brand-name span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 20px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--bg-card);
}

.nav-link.active {
  color: var(--bg-obsidian);
  background: var(--gradient-gold);
  font-weight: 600;
}

.nav-dl {
  margin-left: 16px;
  padding: 12px 24px;
  background: var(--gradient-gold);
  color: var(--bg-obsidian);
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
}

.nav-dl:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(240, 185, 11, 0.4);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--bg-obsidian2);
  border-bottom: 1px solid var(--border);
  padding: 16px;
}

.nav-mobile.show {
  display: block;
}

.nav-mobile .nav-link {
  display: block;
  padding: 14px 16px;
  margin-bottom: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--bg-obsidian);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(240, 185, 11, 0.4);
}

.btn-emerald {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border-light);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(240, 185, 11, 0.05);
}

.btn-outline-w {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
}

.btn-outline-w:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* Wrapper & Sections */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sec {
  padding: 100px 0;
}

.sec-sm {
  padding: 60px 0;
}

.sec-obsidian {
  background: var(--bg-obsidian);
}

.sec-obsidian2 {
  background: var(--bg-obsidian2);
}

.sec-gold {
  background: linear-gradient(135deg, #1a1500 0%, #0a0a0f 100%);
}

.sec-head {
  text-align: center;
  margin-bottom: 60px;
}

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.sec-eyebrow-gold {
  color: var(--gold);
  border-color: rgba(240, 185, 11, 0.3);
}

.sec-eyebrow-emerald {
  color: var(--emerald);
  border-color: rgba(16, 185, 129, 0.3);
}

.ey-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.sec-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.sec-title-light {
  color: var(--text-primary);
}

.sec-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.sec-sub-light {
  color: var(--text-muted);
}

.hl {
  color: var(--gold);
}

.hl2 {
  color: var(--emerald);
}

/* Hero */
.hero {
  padding: 80px 0 120px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(240, 185, 11, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(240, 185, 11, 0.1);
  border: 1px solid rgba(240, 185, 11, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-gold 2s infinite;
}

.hero-h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-h1 .hl {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--emerald);
}

/* Hero Visual - Trading Dashboard */
.hero-vis {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hc-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: var(--bg-card2);
  border-bottom: 1px solid var(--border);
}

.hc-dots {
  display: flex;
  gap: 6px;
}

.hc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.hc-dot.r { background: #ef4444; }
.hc-dot.y { background: #f59e0b; }
.hc-dot.g { background: #10b981; }

.hc-title {
  font-size: 13px;
  color: var(--text-muted);
  margin-left: 8px;
}

.hc-body {
  padding: 24px;
}

.hc-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.hc-stat {
  background: var(--bg-obsidian2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.hc-stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.hc-stat-num {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.hc-stat-num.c-up { color: var(--emerald); }
.hc-stat-num.c-down { color: #ef4444; }

.hc-chart {
  background: var(--bg-obsidian2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.hc-chart-title {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.hc-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hc-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hc-bar-label {
  width: 40px;
  font-size: 12px;
  color: var(--text-muted);
}

.hc-bar-track {
  flex: 1;
  height: 8px;
  background: var(--bg-card);
  border-radius: 4px;
  overflow: hidden;
}

.hc-bar-fill {
  height: 100%;
  border-radius: 4px;
}

.hc-bar-fill.hbf-btc { background: var(--gold); width: 85%; }
.hc-bar-fill.hbf-eth { background: #627eea; width: 72%; }
.hc-bar-fill.hbf-bnb { background: var(--emerald); width: 60%; }
.hc-bar-fill.hbf-sol { background: #9945ff; width: 45%; }

.hc-bar-val {
  width: 50px;
  font-size: 12px;
  color: var(--text-secondary);
  text-align: right;
}

/* Stats Ticker */
.stats-ticker {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 32px;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-lbl {
  font-size: 14px;
  color: var(--text-muted);
}

/* Feature Cards */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
  box-shadow: var(--shadow-card);
}

.feat-card:hover::before {
  opacity: 1;
}

.feat-card.fc-gold { color: var(--gold); }
.feat-card.fc-emerald { color: var(--emerald); }
.feat-card.fc-amber { color: var(--amber); }
.feat-card.fc-purple { color: #8b5cf6; }
.feat-card.fc-rose { color: #f43f5e; }
.feat-card.fc-sky { color: #0ea5e9; }

.feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feat-icon svg {
  width: 28px;
  height: 28px;
}

.feat-icon.fi-gold { background: rgba(240, 185, 11, 0.1); color: var(--gold); }
.feat-icon.fi-emerald { background: rgba(16, 185, 129, 0.1); color: var(--emerald); }
.feat-icon.fi-amber { background: rgba(245, 158, 11, 0.1); color: var(--amber); }
.feat-icon.fi-purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.feat-icon.fi-rose { background: rgba(244, 63, 94, 0.1); color: #f43f5e; }
.feat-icon.fi-sky { background: rgba(14, 165, 233, 0.1); color: #0ea5e9; }

.feat-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feat-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Platform Grid */
.plat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.plat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.plat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
  box-shadow: var(--shadow-card);
}

.plat-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(240, 185, 11, 0.05) 100%);
}

.plat-card.featured::before {
  content: '推荐';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--bg-obsidian);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}

.plat-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(240, 185, 11, 0.1);
  border: 1px solid rgba(240, 185, 11, 0.2);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.plat-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--bg-obsidian2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.plat-icon svg {
  width: 32px;
  height: 32px;
  color: var(--text-primary);
}

.plat-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.plat-ver {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.plat-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.plat-btn {
  width: 100%;
  padding: 12px;
  font-size: 14px;
}

/* Deep Feature Rows */
.deep-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.deep-row:last-child {
  margin-bottom: 0;
}

.deep-row.flip {
  direction: rtl;
}

.deep-row.flip > * {
  direction: ltr;
}

.deep-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.deep-chip.dc-gold {
  background: rgba(240, 185, 11, 0.1);
  border: 1px solid rgba(240, 185, 11, 0.2);
  color: var(--gold);
}

.deep-chip.dc-emerald {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--emerald);
}

.deep-chip.dc-amber {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: var(--amber);
}

.deep-h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.deep-desc {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.deep-list {
  list-style: none;
}

.deep-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--text-secondary);
}

.deep-list-item svg {
  width: 20px;
  height: 20px;
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

.deep-vis {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

.dv-title {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-align: center;
}

.dv-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.dv-bar-label {
  width: 80px;
  font-size: 13px;
  color: var(--text-secondary);
}

.dv-bar-track {
  flex: 1;
  height: 10px;
  background: var(--bg-obsidian2);
  border-radius: 5px;
  overflow: hidden;
}

.dv-bar-fill {
  height: 100%;
  border-radius: 5px;
  transition: width 1s ease;
}

.dv-bar-fill.dvbf-gold { background: var(--gold); }
.dv-bar-fill.dvbf-emerald { background: var(--emerald); }
.dv-bar-fill.dvbf-amber { background: var(--amber); }

.dv-bar-val {
  width: 50px;
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 600;
  text-align: right;
}

.dv-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.dv-stat {
  background: var(--bg-obsidian2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.dv-stat-num {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.dv-stat-num.c-gold { color: var(--gold); }
.dv-stat-num.c-emerald { color: var(--emerald); }
.dv-stat-num.c-amber { color: var(--amber); }

.dv-stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
}

/* Review Cards */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rev-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.rev-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
  box-shadow: var(--shadow-card);
}

.rev-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.rev-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.rev-avatar.av-gold { background: linear-gradient(135deg, #f0b90b, #f59e0b); }
.rev-avatar.av-emerald { background: linear-gradient(135deg, #10b981, #34d399); }
.rev-avatar.av-amber { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.rev-avatar.av-purple { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.rev-avatar.av-rose { background: linear-gradient(135deg, #f43f5e, #fb7185); }
.rev-avatar.av-sky { background: linear-gradient(135deg, #0ea5e9, #38bdf8); }

.rev-meta {
  flex: 1;
}

.rev-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.rev-role {
  font-size: 13px;
  color: var(--text-muted);
}

.rev-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.rev-stars svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  fill: currentColor;
}

.rev-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Comparison Table */
.cmp-wrap {
  overflow-x: auto;
}

.cmp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.cmp-table th,
.cmp-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.cmp-table th {
  background: var(--bg-card2);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cmp-table td {
  font-size: 15px;
}

.cmp-table tr:last-child td {
  border-bottom: none;
}

.cmp-table .cmp-hl {
  background: rgba(240, 185, 11, 0.05);
}

.cmp-table .cmp-hl td:first-child {
  color: var(--gold);
  font-weight: 600;
}

.cmp-yes {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--emerald);
  font-weight: 500;
}

.cmp-no {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}

.cmp-part {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--amber);
  font-weight: 500;
}

.cmp-yes svg,
.cmp-no svg,
.cmp-part svg {
  width: 18px;
  height: 18px;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-q:hover {
  background: var(--bg-card2);
}

.faq-q-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  padding-right: 20px;
}

.faq-chevron {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 500px;
}

.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #1a1500 0%, #0f0f15 50%, #1a1205 100%);
  border: 1px solid rgba(240, 185, 11, 0.2);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.cta-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.cta-h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-h2 .hl {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 28px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Download Page Specific */
.dl-hero {
  padding: 60px 0 40px;
  text-align: center;
}

.dl-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 24px;
}

.dl-hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
}

.dl-hero-h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.dl-hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Windows Main Card */
.dl-win-wrap {
  max-width: 600px;
  margin: 0 auto 60px;
}

.dl-win-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.dl-win-top {
  height: 6px;
  background: var(--gradient-gold);
}

.dl-win-head {
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}

.dl-win-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient-gold);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dl-win-icon svg {
  width: 40px;
  height: 40px;
  color: var(--bg-obsidian);
}

.dl-win-info {
  flex: 1;
}

.dl-win-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.dl-win-meta {
  font-size: 14px;
  color: var(--text-muted);
}

.dl-win-body {
  padding: 32px;
}

.dl-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.dl-spec {
  text-align: center;
}

.dl-spec-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.dl-spec-val {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.dl-sec-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 10px;
  font-size: 13px;
  color: var(--emerald);
  margin-bottom: 24px;
}

.dl-sec-badge svg {
  width: 18px;
  height: 18px;
}

.dl-win-btns {
  display: flex;
  gap: 12px;
}

.dl-win-btns .btn {
  flex: 1;
}

/* Other Platform Cards */
.op-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.op-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.op-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
  box-shadow: var(--shadow-card);
}

.op-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-obsidian2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.op-icon svg {
  width: 28px;
  height: 28px;
  color: var(--text-primary);
}

.op-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.op-ver {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.op-steps {
  list-style: none;
  margin-bottom: 20px;
}

.op-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.op-step-n {
  width: 22px;
  height: 22px;
  background: var(--bg-obsidian2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
}

.op-btn {
  width: 100%;
}

/* Installation Guide */
.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.guide-col-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.guide-col-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.guide-col-dot.gold { background: var(--gold); }
.guide-col-dot.emerald { background: var(--emerald); }

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gstep {
  display: flex;
  gap: 16px;
}

.gstep-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.gstep-num.gsn-gold {
  background: rgba(240, 185, 11, 0.1);
  color: var(--gold);
  border: 1px solid rgba(240, 185, 11, 0.2);
}

.gstep-num.gsn-emerald {
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.gstep-body {
  flex: 1;
  padding-top: 6px;
}

.gstep-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.gstep-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

/* System Requirements */
.req-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.req-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.req-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-obsidian2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.req-icon svg {
  width: 24px;
  height: 24px;
  color: var(--text-primary);
}

.req-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.req-val {
  font-size: 13px;
  color: var(--text-muted);
}

/* Version Timeline */
.ver-list {
  max-width: 700px;
  margin: 0 auto 60px;
}

.ver-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.ver-item:last-child {
  border-bottom: none;
}

.ver-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 24px;
  flex-shrink: 0;
}

.ver-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.ver-dot.vd-gold { background: var(--gold); }
.ver-dot.vd-emerald { background: var(--emerald); }
.ver-dot.vd-amber { background: var(--amber); }
.ver-dot.vd-purple { background: #8b5cf6; }
.ver-dot.vd-rose { background: #f43f5e; }

.ver-line {
  flex: 1;
  width: 2px;
  background: var(--border);
  margin-top: 8px;
}

.ver-item:last-child .ver-line {
  display: none;
}

.ver-body {
  flex: 1;
}

.ver-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.ver-num {
  font-size: 18px;
  font-weight: 700;
}

.ver-tag {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.ver-tag.vt-stable {
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald);
}

.ver-tag.vt-lts {
  background: rgba(240, 185, 11, 0.1);
  color: var(--gold);
}

.ver-tag.vt-beta {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.ver-date {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.ver-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Security Banner */
.sec-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 60px;
}

.sec-banner-icon {
  width: 56px;
  height: 56px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sec-banner-icon svg {
  width: 28px;
  height: 28px;
  color: var(--emerald);
}

.sec-banner-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.sec-banner-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Article Page (zh-cn) */
.art-hero {
  padding: 60px 0 40px;
  background: var(--gradient-hero);
}

.art-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.art-hero-crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.art-hero-crumb a {
  color: var(--text-secondary);
  text-decoration: none;
}

.art-hero-crumb a:hover {
  color: var(--gold);
}

.art-hero-h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.art-hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
}

/* Keyword Tags */
.kw-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.kw {
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* Article Layout */
.art-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  padding: 40px 0 80px;
}

.art-body {
  max-width: 100%;
}

.art-body h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.art-body h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 32px 0 16px;
}

.art-body p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.art-body ul,
.art-body ol {
  margin: 16px 0;
  padding-left: 24px;
}

.art-body li {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* Inline CTA */
.inline-cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.inline-cta-gold {
  border-color: rgba(240, 185, 11, 0.3);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(240, 185, 11, 0.05) 100%);
}

.inline-cta-emerald {
  border-color: rgba(16, 185, 129, 0.3);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.inline-cta-amber {
  border-color: rgba(245, 158, 11, 0.3);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.inline-cta-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.inline-cta-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Tips Grid */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.tip-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.tip-num {
  width: 32px;
  height: 32px;
  background: var(--gradient-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--bg-obsidian);
  margin-bottom: 12px;
}

.tip-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.tip-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sbox {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}

.sbox-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sbox-title svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* Sidebar Download Buttons */
.sdl-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--bg-obsidian2);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: left;
}

.sdl-btn:hover {
  border-color: var(--gold);
  background: rgba(240, 185, 11, 0.05);
}

.sdl-btn.primary {
  background: var(--gradient-gold);
  border-color: transparent;
}

.sdl-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.sdl-btn-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sdl-btn.primary .sdl-btn-icon {
  background: rgba(10, 10, 15, 0.2);
}

.sdl-btn-icon svg {
  width: 20px;
  height: 20px;
}

.sdl-btn-info {
  flex: 1;
}

.sdl-btn-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.sdl-btn-ver {
  font-size: 12px;
  opacity: 0.7;
}

/* TOC */
.stoc {
  list-style: none;
}

.stoc-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.stoc-item:last-child {
  border-bottom: none;
}

.stoc-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.stoc-item a:hover {
  color: var(--gold);
}

.stoc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-light);
}

.stoc-item a:hover .stoc-dot {
  background: var(--gold);
}

/* Sidebar Stats */
.sstat {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.sstat-item {
  text-align: center;
  padding: 16px;
  background: var(--bg-obsidian2);
  border-radius: 10px;
}

.sstat-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.sstat-lbl {
  font-size: 12px;
  color: var(--text-muted);
}

/* Sidebar Security */
.side-security {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 10px;
}

.side-security svg {
  width: 24px;
  height: 24px;
  color: var(--emerald);
  flex-shrink: 0;
}

.side-security-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Footer */
.site-footer {
  background: var(--bg-obsidian2);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
}

.footer-brand-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--bg-obsidian);
}

.footer-brand-name span {
  color: var(--gold);
}

.footer-security {
  font-size: 14px;
  color: var(--emerald);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-security svg {
  width: 16px;
  height: 16px;
}

.footer-note {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 800px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-btns,
  .hero-trust {
    justify-content: center;
  }

  .hero-vis {
    order: -1;
  }

  .deep-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .deep-row.flip {
    direction: ltr;
  }

  .art-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-dl {
    display: none;
  }

  .sec {
    padding: 60px 0;
  }

  .sec-title {
    font-size: 32px;
  }

  .hero-h1 {
    font-size: 36px;
  }

  .feat-grid,
  .plat-grid,
  .rev-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    gap: 30px;
  }

  .op-grid,
  .guide-grid,
  .req-grid {
    grid-template-columns: 1fr;
  }

  .dl-win-btns {
    flex-direction: column;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 40px 24px;
  }

  .cta-h2 {
    font-size: 28px;
  }

  .dl-specs {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .sec-banner {
    flex-direction: column;
    text-align: center;
  }

  .cmp-table {
    font-size: 14px;
  }

  .cmp-table th,
  .cmp-table td {
    padding: 12px 16px;
  }
}

/* News Section Styles */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.news-card-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
}

.news-card-date {
  font-size: 14px;
  color: var(--text-muted);
}

.news-card-tag {
  background: rgba(240, 185, 11, 0.1);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.news-card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-card-excerpt {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.news-card-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.news-card-link:hover {
  color: var(--gold-light);
}

.news-more {
  text-align: center;
  margin-top: 50px;
}

/* News List Page Styles */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.news-item {
  display: flex;
  gap: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.news-item-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 15px;
  background: var(--bg-card2);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.news-item-day {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.news-item-month {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.news-item-content {
  flex: 1;
}

.news-item-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-item-excerpt {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.news-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.news-link:hover {
  color: var(--gold-light);
}

/* Article Page Styles */
.article-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 30px;
  transition: color 0.3s;
}

.article-back:hover {
  color: var(--gold);
}

.article-header {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.article-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}

.article-date {
  font-size: 14px;
  color: var(--text-muted);
}

.article-category {
  background: rgba(240, 185, 11, 0.1);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.article-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.article-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.article-body h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 20px;
}

.article-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 30px;
  margin-bottom: 15px;
}

.article-body p {
  margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.article-body li {
  margin-bottom: 10px;
}

/* Responsive News Styles */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-item {
    flex-direction: column;
    gap: 20px;
  }

  .news-item-date {
    flex-direction: row;
    gap: 8px;
    min-width: auto;
    padding: 10px 15px;
  }

  .news-item-day {
    font-size: 20px;
  }

  .article-title {
    font-size: 28px;
  }

  .article-wrap {
    padding: 40px 24px;
  }
}
