/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
/* 浅色专业风配色 */
--bg-primary: #FFFFFF;
--bg-secondary: #F7F8FA;
--bg-tertiary: #F0F1F3;
--bg-card: #FFFFFF;
--gold: #C9962F;
--gold-light: #FDF8EE;
--gold-border: #F0E0B8;
--gold-hover: #B8861E;
--border: #E5E7EB;
--border-light: #F0F1F3;
--text-primary: #1A1A2E;
--text-secondary: #4B5563;
--text-muted: #9CA3AF;
--text-inverse: #FFFFFF;
--red: #E54D42;
--green: #00A870;
--shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
--shadow-md: 0 2px 8px rgba(0,0,0,0.06);
--shadow-lg: 0 4px 16px rgba(0,0,0,0.08);
}

body {
font-family: 'Geist', 'Sarasa Gothic SC', 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
background: var(--bg-secondary);
color: var(--text-primary);
line-height: 1.5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

/* ===== Navigation ===== */
.nav {
width: 100%;
height: 64px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 120px;
background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.nav-left { display: flex; align-items: center; gap: 64px; }

.nav-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  cursor: pointer;
}

.nav-logo {
  height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.nav-logo svg {
  width: 38px;
  height: 41px;
  display: block;
}

.nav-logo-title {
  font-size: 18px;
  letter-spacing: 1.5px;
  margin-top: -8px;
  line-height: 1;
}

.nav-center { display: flex; align-items: center; gap: 32px; }

.nav-center a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-center a.active { color: var(--text-primary); font-weight: 600; }
.nav-center a.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.nav-center a:hover { color: var(--text-primary); }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-login { font-size: 14px; color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.nav-login:hover { color: var(--text-primary); }

.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px; padding: 0 20px;
  background: var(--gold); border-radius: 8px;
  font-size: 13px; font-weight: 600; color: #FFFFFF;
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-hover); }

/* ===== Shared Section Styles ===== */
.section-title {
  font-size: 28px; font-weight: 700; color: var(--text-primary);
  letter-spacing: -0.01em;
}
.section-subtitle {
  font-size: 14px; color: var(--text-secondary);
}
.more-link {
  font-size: 13px; color: var(--gold); text-decoration: none;
  transition: color 0.2s;
}
.more-link:hover { color: var(--gold-hover); }

/* ========================================================
   HOME PAGE
   ======================================================== */

/* Hero */
.hero {
  width: 100%;
  padding: 64px 120px 56px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FDFBF6 50%, #FFFFFF 100%);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  height: 28px; padding: 0 14px;
  background: var(--gold-light); border: 1px solid var(--gold-border);
  border-radius: 100px; align-self: flex-start;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero-badge-text { font-size: 12px; color: var(--gold); }

.hero-headline {
  font-size: 52px; font-weight: 700; color: var(--text-primary);
  line-height: 1.15; letter-spacing: -0.02em;
}
.hero-subline { font-size: 18px; color: var(--text-secondary); }

.hero-search {
  width: 720px; height: 52px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 8px 0 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: border-color 0.2s;
}
.hero-search:focus-within { border-color: var(--gold); }

.hero-search-input { display: flex; align-items: center; gap: 12px; flex: 1; height: 100%; }
.hero-search-input span { font-size: 14px; color: var(--text-muted); }

.hero-search-btn {
  width: 72px; height: 36px;
  background: var(--gold); border: none; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: #FFFFFF;
  cursor: pointer; transition: background 0.2s;
}
.hero-search-btn:hover { background: var(--gold-hover); }

.hero-tags { display: flex; align-items: center; gap: 10px; }
.hero-tags-label { font-size: 12px; color: var(--text-muted); }
.hero-tag {
  display: inline-flex; align-items: center; height: 26px; padding: 0 12px;
  background: var(--bg-tertiary); border: 1px solid var(--border-light);
  border-radius: 100px; font-size: 12px; color: var(--text-secondary);
  text-decoration: none; transition: all 0.2s;
}
.hero-tag:hover { background: var(--gold-light); border-color: var(--gold-border); color: var(--gold); }

.hero-stats { display: flex; gap: 48px; margin-top: 16px; }
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num {
  font-size: 28px; font-weight: 700; color: var(--gold);
  font-family: 'Geist', sans-serif; line-height: 1.2;
}
.hero-stat-label { font-size: 13px; color: var(--text-secondary); }

/* Core Features */
.features {
  width: 100%; padding: 56px 120px;
  display: flex; flex-direction: column; gap: 28px;
  background: var(--bg-secondary);
}
.features-header { display: flex; align-items: center; justify-content: space-between; }
.features-title-group { display: flex; flex-direction: column; gap: 4px; }

.bento-grid { display: flex; flex-direction: column; gap: 16px; }
.bento-row-1 { display: flex; gap: 16px; }
.bento-row-2 { display: flex; gap: 16px; }

.card-fee {
  width: 720px; height: 240px; padding: 28px;
  background: var(--bg-card); border: 1px solid var(--gold-border);
  border-radius: 12px; display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.2s;
}
.card-fee:hover { box-shadow: var(--shadow-md); }
.card-fee-title { font-size: 20px; font-weight: 600; color: var(--text-primary); }
.card-fee-desc { font-size: 14px; color: var(--text-secondary); }
.card-fee-data { display: flex; gap: 24px; }
.card-fee-data-item { display: flex; flex-direction: column; gap: 2px; }
.card-fee-data-label { font-size: 12px; color: var(--text-muted); }
.card-fee-data-value {
  font-size: 18px; font-weight: 700; color: var(--gold);
  font-family: 'Geist Mono', monospace;
}

.card-right {
  flex: 1; height: 112px; padding: 0 24px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-sm); transition: all 0.2s; cursor: pointer;
}
.card-right:hover { border-color: var(--gold-border); box-shadow: var(--shadow-md); }
.card-right-text { display: flex; flex-direction: column; gap: 4px; }
.card-right-title { font-size: 16px; font-weight: 600; color: var(--text-primary); }
.card-right-desc { font-size: 13px; color: var(--text-secondary); }

.card-wide {
  flex: 1; height: 90px; padding: 0 24px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-sm); transition: all 0.2s; cursor: pointer;
}
.card-wide:hover { border-color: var(--gold-border); box-shadow: var(--shadow-md); }
.card-wide-text { display: flex; flex-direction: column; gap: 4px; }
.card-wide-title { font-size: 16px; font-weight: 600; color: var(--text-primary); }
.card-wide-desc { font-size: 13px; color: var(--text-secondary); }

/* Q&A and Calendar */
.qa-calendar {
  width: 100%; padding: 56px 120px;
  display: flex; gap: 24px; background: var(--bg-primary);
}
.qa-left { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.qa-header { display: flex; align-items: center; justify-content: space-between; }

.qa-item {
  width: 100%; padding: 20px;
  border: 1px solid var(--border); border-radius: 12px;
  display: flex; flex-direction: column; gap: 10px;
  background: var(--bg-card); transition: all 0.2s; cursor: pointer;
}
.qa-item:hover { border-color: var(--gold-border); box-shadow: var(--shadow-sm); }
.qa-item-title { font-size: 15px; font-weight: 500; color: var(--text-primary); }
.qa-item-meta { display: flex; align-items: center; gap: 12px; }
.qa-item-tag {
  display: inline-flex; align-items: center; height: 22px; padding: 0 8px;
  background: var(--gold-light); border-radius: 4px;
  font-size: 11px; color: var(--gold);
}
.qa-item-time { font-size: 12px; color: var(--text-muted); }

.cal-right { width: 440px; display: flex; flex-direction: column; gap: 16px; }
.cal-header { display: flex; align-items: center; justify-content: space-between; }

.cal-item {
  width: 100%; padding: 20px;
  border: 1px solid var(--border); border-radius: 12px;
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-card); transition: all 0.2s; cursor: pointer;
}
.cal-item:hover { border-color: var(--gold-border); box-shadow: var(--shadow-sm); }
.cal-date {
  width: 48px; height: 48px; border-radius: 8px;
  background: var(--gold-light);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  flex-shrink: 0;
}
.cal-date-day { font-size: 18px; font-weight: 700; color: var(--gold); line-height: 1; }
.cal-date-month { font-size: 10px; color: var(--gold); line-height: 1; }
.cal-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cal-event { font-size: 14px; font-weight: 500; color: var(--text-primary); }
.cal-detail { font-size: 12px; color: var(--text-secondary); }

/* CTA */
.cta {
  width: 100%; padding: 56px 120px;
  background: linear-gradient(135deg, #FDFBF6 0%, #FFFFFF 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.cta-title { font-size: 32px; font-weight: 700; color: var(--text-primary); text-align: center; }
.cta-sub { font-size: 15px; color: var(--text-secondary); text-align: center; }
.cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 32px;
  background: var(--gold); border: none; border-radius: 8px;
  font-size: 15px; font-weight: 600; color: #FFFFFF;
  cursor: pointer; text-decoration: none; transition: background 0.2s;
}
.cta-btn:hover { background: var(--gold-hover); }

/* Footer */
.footer {
  width: 100%; padding: 40px 120px;
  background: #1A1A2E; display: flex; flex-direction: column; gap: 28px;
}
.footer-top { display: flex; justify-content: space-between; }
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-brand-name { font-size: 16px; font-weight: 600; color: var(--gold); }
.footer-brand-tagline { font-size: 12px; color: #6B7280; }
.footer-links-col { display: flex; flex-direction: column; gap: 10px; }
.footer-links-title { font-size: 13px; font-weight: 600; color: #E5E7EB; }
.footer-links-item { font-size: 12px; color: #9CA3AF; text-decoration: none; transition: color 0.2s; }
.footer-links-item:hover { color: #FFFFFF; }
.footer-risk { padding: 16px 0 0; border-top: 1px solid #2D2D44; display: flex; flex-direction: column; gap: 8px; }
.footer-risk-text { font-size: 11px; color: #6B7280; }
.footer-bottom { font-size: 11px; color: #6B7280; }

/* ========================================================
   Q&A PAGE
   ======================================================== */
.qa-page {
  background: var(--bg-secondary);
  min-height: calc(100vh - 64px);
}

.qa-page-header {
  width: 100%; padding: 40px 120px 32px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
}
.qa-page-title-row { display: flex; align-items: center; justify-content: space-between; }
.qa-page-title-group { display: flex; flex-direction: column; gap: 6px; }
.qa-page-title { font-size: 32px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; }
.qa-page-subtitle { font-size: 14px; color: var(--text-secondary); }
.qa-ask-btn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 40px; padding: 0 20px;
  background: var(--gold); border: none; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: #FFFFFF;
  cursor: pointer; transition: background 0.2s;
}
.qa-ask-btn:hover { background: var(--gold-hover); }

.qa-stats-bar {
  display: flex; gap: 32px; margin-top: 20px;
}
.qa-stat-item { display: flex; align-items: baseline; gap: 6px; }
.qa-stat-num { font-size: 20px; font-weight: 700; color: var(--text-primary); }
.qa-stat-label { font-size: 13px; color: var(--text-secondary); }
.qa-stat-divider { width: 1px; height: 20px; background: var(--border); align-self: center; }

.qa-page-body {
  display: flex; gap: 24px; padding: 24px 120px 56px;
}

/* Q&A Main Column */
.qa-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 16px; }

.qa-search-row {
  display: flex; gap: 12px; align-items: center;
}
.qa-search-box {
  flex: 1; height: 44px;
  display: flex; align-items: center; gap: 10px;
  padding: 0 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; transition: border-color 0.2s;
}
.qa-search-box:focus-within { border-color: var(--gold); }
.qa-search-box input {
  flex: 1; border: none; outline: none;
  font-size: 14px; color: var(--text-primary);
  background: transparent; font-family: inherit;
}
.qa-search-box input::placeholder { color: var(--text-muted); }

.qa-filter-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4px;
}
.qa-tabs { display: flex; gap: 4px; }
.qa-tab {
  display: inline-flex; align-items: center; height: 32px; padding: 0 14px;
  border-radius: 8px; font-size: 13px; color: var(--text-secondary);
  cursor: pointer; transition: all 0.2s;
}
.qa-tab.active { background: var(--gold-light); color: var(--gold); font-weight: 600; }
.qa-tab:hover:not(.active) { background: var(--bg-tertiary); color: var(--text-primary); }

.qa-sort { display: flex; align-items: center; gap: 8px; }
.qa-sort-label { font-size: 12px; color: var(--text-muted); }
.qa-sort-select {
  font-size: 13px; color: var(--text-primary);
  border: none; background: transparent; cursor: pointer;
  font-family: inherit; font-weight: 500;
}

/* Tag filter chips */
.qa-tag-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.qa-tag-chip {
  display: inline-flex; align-items: center; height: 28px; padding: 0 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 6px; font-size: 12px; color: var(--text-secondary);
  cursor: pointer; transition: all 0.2s;
}
.qa-tag-chip:hover { border-color: var(--gold-border); color: var(--gold); }
.qa-tag-chip.active { background: var(--gold-light); border-color: var(--gold-border); color: var(--gold); }

/* Question Card */
.q-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 24px;
  display: flex; gap: 16px; transition: all 0.2s; cursor: pointer;
}
.q-card:hover { border-color: var(--gold-border); box-shadow: var(--shadow-md); }

.q-stats-col {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  min-width: 52px; padding-top: 2px;
}
.q-stat-badge {
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  width: 52px; padding: 6px 0; border-radius: 8px;
  background: var(--gold-light);
}
.q-stat-badge.unanswered { background: var(--bg-tertiary); }
.q-stat-num {
  font-size: 16px; font-weight: 700; color: var(--gold); line-height: 1;
  font-family: 'Geist', sans-serif;
}
.q-stat-badge.unanswered .q-stat-num { color: var(--text-muted); }
.q-stat-label { font-size: 10px; color: var(--text-muted); }
.q-views {
  font-size: 11px; color: var(--text-muted); margin-top: 4px;
}

.q-content { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 10px; }
.q-title {
  font-size: 16px; font-weight: 600; color: var(--text-primary);
  line-height: 1.4; cursor: pointer;
}
.q-title:hover { color: var(--gold); }
.q-excerpt {
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.6; overflow: hidden; text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.q-bottom { display: flex; align-items: center; justify-content: space-between; }
.q-tags { display: flex; gap: 6px; }
.q-tag {
  display: inline-flex; align-items: center; height: 22px; padding: 0 8px;
  background: var(--bg-tertiary); border-radius: 4px;
  font-size: 11px; color: var(--text-secondary);
  text-decoration: none; transition: all 0.2s;
}
.q-tag:hover { background: var(--gold-light); color: var(--gold); }
.q-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); }
.q-author { color: var(--text-secondary); font-weight: 500; }
.q-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-muted); }
.q-essence-icon { color: var(--gold); }

/* Pagination */
.qa-pagination {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 16px 0 8px;
}
.page-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 8px;
  font-size: 13px; color: var(--text-secondary);
  background: var(--bg-card); border: 1px solid var(--border);
  cursor: pointer; transition: all 0.2s;
}
.page-btn:hover { border-color: var(--gold-border); color: var(--gold); }
.page-btn.active { background: var(--gold); border-color: var(--gold); color: #FFFFFF; }
.page-btn.disabled { color: var(--text-muted); opacity: 0.5; cursor: default; }

/* Q&A Sidebar */
.qa-sidebar { width: 320px; flex-shrink: 0; display: flex; flex-direction: column; gap: 20px; }

.sidebar-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
}
.sidebar-card-title {
  font-size: 14px; font-weight: 600; color: var(--text-primary);
  margin-bottom: 14px; display: flex; align-items: center; gap: 6px;
}

/* Sidebar Ask CTA */
.sidebar-ask {
  background: linear-gradient(135deg, var(--gold-light) 0%, #FFFFFF 100%);
  border: 1px solid var(--gold-border);
  text-align: center;
}
.sidebar-ask h3 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.sidebar-ask p { font-size: 12px; color: var(--text-secondary); margin-bottom: 14px; }
.sidebar-ask-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; height: 38px;
  background: var(--gold); border: none; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: #FFFFFF;
  cursor: pointer; transition: background 0.2s;
}
.sidebar-ask-btn:hover { background: var(--gold-hover); }

/* Hot topics list */
.hot-topic-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; cursor: pointer;
}
.hot-topic-item + .hot-topic-item { border-top: 1px solid var(--border-light); }
.hot-topic-rank {
  width: 20px; height: 20px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
  font-family: 'Geist', sans-serif;
}
.hot-topic-rank.r1 { background: var(--red); color: #FFFFFF; }
.hot-topic-rank.r2 { background: #F59E0B; color: #FFFFFF; }
.hot-topic-rank.r3 { background: var(--gold); color: #FFFFFF; }
.hot-topic-rank.r4, .hot-topic-rank.r5 { background: var(--bg-tertiary); color: var(--text-muted); }
.hot-topic-text { flex: 1; font-size: 13px; color: var(--text-primary); line-height: 1.4; }
.hot-topic-text:hover { color: var(--gold); }
.hot-topic-count { font-size: 11px; color: var(--text-muted); flex-shrink: 0; }

/* Top contributors */
.contributor-item {
  display: flex; align-items: center; gap: 10px; padding: 8px 0;
}
.contributor-item + .contributor-item { border-top: 1px solid var(--border-light); }
.contributor-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold-light); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--gold); flex-shrink: 0;
}
.contributor-info { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.contributor-name { font-size: 13px; font-weight: 500; color: var(--text-primary); }
.contributor-title { font-size: 11px; color: var(--text-muted); }
.contributor-score { font-size: 13px; font-weight: 600; color: var(--gold); font-family: 'Geist', sans-serif; }

/* Community stats */
.community-stats { display: flex; gap: 16px; }
.community-stat { flex: 1; text-align: center; }
.community-stat-num {
  font-size: 22px; font-weight: 700; color: var(--gold);
  font-family: 'Geist', sans-serif;
}
.community-stat-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ========================================================
   VIDEO PAGE
   ======================================================== */
.video-page {
  background: var(--bg-secondary);
  min-height: calc(100vh - 64px);
}

.video-page-header {
  width: 100%; padding: 40px 120px 32px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
}
.video-page-title-row { display: flex; align-items: center; justify-content: space-between; }
.video-page-title-group { display: flex; flex-direction: column; gap: 6px; }
.video-page-title { font-size: 32px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; }
.video-page-subtitle { font-size: 14px; color: var(--text-secondary); }
.video-upload-btn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 40px; padding: 0 20px;
  background: var(--gold); border: none; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: #FFFFFF;
  cursor: pointer; transition: background 0.2s;
}
.video-upload-btn:hover { background: var(--gold-hover); }

.video-stats-bar { display: flex; gap: 32px; margin-top: 20px; }
.video-stat-item { display: flex; align-items: baseline; gap: 6px; }
.video-stat-num { font-size: 20px; font-weight: 700; color: var(--text-primary); }
.video-stat-label { font-size: 13px; color: var(--text-secondary); }
.video-stat-divider { width: 1px; height: 20px; background: var(--border); align-self: center; }

.video-page-body { display: flex; gap: 24px; padding: 24px 120px 56px; }

/* Video Main Column */
.video-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 20px; }

/* Featured Video */
.video-featured {
  width: 100%; height: 340px;
  border-radius: 16px; overflow: hidden;
  position: relative; cursor: pointer;
  background: #1A1A2E;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s;
}
.video-featured:hover { transform: translateY(-2px); }
.video-featured-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2D5E 50%, #1A1A2E 100%);
  display: flex; align-items: center; justify-content: center;
}
.video-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
}
.video-featured-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; z-index: 2;
}
.video-featured:hover .video-featured-play {
  width: 72px; height: 72px;
  background: var(--gold); border-color: var(--gold);
}
.video-featured-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 32px; z-index: 2;
  display: flex; flex-direction: column; gap: 8px;
}
.video-featured-badge {
  display: inline-flex; align-items: center; gap: 4px;
  height: 24px; padding: 0 10px;
  background: var(--gold); border-radius: 4px;
  font-size: 11px; font-weight: 600; color: #FFFFFF;
  align-self: flex-start;
}
.video-featured-title {
  font-size: 24px; font-weight: 700; color: #FFFFFF;
  line-height: 1.3; letter-spacing: -0.01em;
}
.video-featured-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,0.7);
}
.video-featured-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.5); }

/* Category Filters */
.video-categories { display: flex; gap: 8px; flex-wrap: wrap; }
.video-cat-chip {
  display: inline-flex; align-items: center; height: 32px; padding: 0 14px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; font-size: 13px; color: var(--text-secondary);
  cursor: pointer; transition: all 0.2s;
}
.video-cat-chip:hover { border-color: var(--gold-border); color: var(--gold); }
.video-cat-chip.active { background: var(--gold-light); border-color: var(--gold-border); color: var(--gold); font-weight: 600; }
.video-cat-count { font-size: 11px; color: var(--text-muted); margin-left: 4px; }
.video-cat-chip.active .video-cat-count { color: var(--gold); }

/* Filter Bar */
.video-filter-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4px;
}
.video-tabs { display: flex; gap: 4px; }
.video-tab {
  display: inline-flex; align-items: center; height: 32px; padding: 0 14px;
  border-radius: 8px; font-size: 13px; color: var(--text-secondary);
  cursor: pointer; transition: all 0.2s;
}
.video-tab.active { background: var(--gold-light); color: var(--gold); font-weight: 600; }
.video-tab:hover:not(.active) { background: var(--bg-tertiary); color: var(--text-primary); }
.video-sort { display: flex; align-items: center; gap: 8px; }
.video-sort-label { font-size: 12px; color: var(--text-muted); }
.video-sort-select {
  font-size: 13px; color: var(--text-primary);
  border: none; background: transparent; cursor: pointer;
  font-family: inherit; font-weight: 500;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.video-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: all 0.2s; cursor: pointer;
  display: flex; flex-direction: column;
}
.video-card:hover { border-color: var(--gold-border); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.video-thumb {
  width: 100%; aspect-ratio: 16 / 9;
  position: relative; overflow: hidden;
  background: #1A1A2E;
}
.video-thumb-gradient-1 { background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%); }
.video-thumb-gradient-2 { background: linear-gradient(135deg, #0F3460 0%, #164863 100%); }
.video-thumb-gradient-3 { background: linear-gradient(135deg, #583828 0%, #8B5E34 100%); }
.video-thumb-gradient-4 { background: linear-gradient(135deg, #1B3A2E 0%, #2D5F4E 100%); }
.video-thumb-gradient-5 { background: linear-gradient(135deg, #3D2645 0%, #5C3D5E 100%); }
.video-thumb-gradient-6 { background: linear-gradient(135deg, #1A1A3E 0%, #2D2D6E 100%); }

.video-thumb-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.video-card:hover .video-thumb-play {
  width: 52px; height: 52px;
  background: var(--gold); border-color: var(--gold);
}

.video-duration {
  position: absolute; bottom: 8px; right: 8px;
  height: 20px; padding: 0 6px;
  background: rgba(0,0,0,0.7); border-radius: 4px;
  font-size: 11px; color: #FFFFFF; font-weight: 500;
  font-family: 'Geist', sans-serif;
  display: flex; align-items: center;
}

.video-thumb-badge {
  position: absolute; top: 8px; left: 8px;
  height: 22px; padding: 0 8px;
  border-radius: 4px;
  font-size: 10px; font-weight: 600; color: #FFFFFF;
  display: flex; align-items: center;
}
.video-thumb-badge.hot { background: var(--red); }
.video-thumb-badge.new { background: var(--green); }
.video-thumb-badge.premium { background: var(--gold); }

.video-info { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; }
.video-title {
  font-size: 14px; font-weight: 600; color: var(--text-primary);
  line-height: 1.45; overflow: hidden; text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  transition: color 0.2s;
}
.video-card:hover .video-title { color: var(--gold); }
.video-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); }
.video-author { color: var(--text-secondary); font-weight: 500; }
.video-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-muted); }
.video-stats-row { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text-muted); }
.video-stat-mini { display: flex; align-items: center; gap: 4px; }

/* Video Pagination */
.video-pagination {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 16px 0 8px;
}

/* Video Sidebar */
.video-sidebar { width: 320px; flex-shrink: 0; display: flex; flex-direction: column; gap: 20px; }

/* Upload CTA */
.sidebar-upload {
  background: linear-gradient(135deg, var(--gold-light) 0%, #FFFFFF 100%);
  border: 1px solid var(--gold-border);
  text-align: center;
}
.sidebar-upload h3 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.sidebar-upload p { font-size: 12px; color: var(--text-secondary); margin-bottom: 14px; }
.sidebar-upload-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; height: 38px;
  background: var(--gold); border: none; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: #FFFFFF;
  cursor: pointer; transition: background 0.2s;
}
.sidebar-upload-btn:hover { background: var(--gold-hover); }

/* Popular Lecturers */
.lecturer-item {
  display: flex; align-items: center; gap: 10px; padding: 8px 0;
  cursor: pointer;
}
.lecturer-item + .lecturer-item { border-top: 1px solid var(--border-light); }
.lecturer-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold-light); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--gold); flex-shrink: 0;
}
.lecturer-info { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.lecturer-name { font-size: 13px; font-weight: 500; color: var(--text-primary); }
.lecturer-title { font-size: 11px; color: var(--text-muted); }
.lecturer-videos { font-size: 12px; color: var(--gold); font-weight: 600; font-family: 'Geist', sans-serif; }

/* Category list with counts */
.cat-list-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; cursor: pointer;
}
.cat-list-item + .cat-list-item { border-top: 1px solid var(--border-light); }
.cat-list-name { font-size: 13px; color: var(--text-primary); transition: color 0.2s; }
.cat-list-name:hover { color: var(--gold); }
.cat-list-count {
  font-size: 12px; color: var(--text-muted);
  background: var(--bg-tertiary); padding: 1px 8px; border-radius: 10px;
  font-family: 'Geist', sans-serif;
}

/* Video stat card */
.video-stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
}
.video-stat-card-title {
  font-size: 14px; font-weight: 600; color: var(--text-primary);
  margin-bottom: 14px;
}
.video-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.video-stat-grid-item { text-align: center; }
.video-stat-grid-num {
  font-size: 22px; font-weight: 700; color: var(--gold);
  font-family: 'Geist', sans-serif;
}
.video-stat-grid-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ========================================================
   ARTICLE PAGE
   ======================================================== */
.article-page { background: var(--bg-secondary); min-height: calc(100vh - 64px); }

.article-page-header {
  width: 100%; padding: 40px 120px 32px;
  background: var(--bg-primary); border-bottom: 1px solid var(--border);
}
.article-header-row { display: flex; align-items: center; justify-content: space-between; }
.article-header-left { display: flex; flex-direction: column; gap: 6px; }
.article-page-title { font-size: 32px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; }
.article-page-subtitle { font-size: 14px; color: var(--text-secondary); }
.article-write-btn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 40px; padding: 0 20px;
  background: var(--gold); border: none; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: #FFFFFF;
  cursor: pointer; transition: background 0.2s;
}
.article-write-btn:hover { background: var(--gold-hover); }

.article-stats-bar { display: flex; gap: 32px; margin-top: 20px; }
.article-stat-item { display: flex; align-items: baseline; gap: 6px; }
.article-stat-num { font-size: 20px; font-weight: 700; color: var(--text-primary); }
.article-stat-label { font-size: 13px; color: var(--text-secondary); }
.article-stat-divider { width: 1px; height: 20px; background: var(--border); align-self: center; }

.article-page-body { display: flex; gap: 24px; padding: 24px 120px 56px; }

/* Article Main Column */
.article-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 20px; }

/* Featured Article (large card) */
.article-featured {
  display: flex; gap: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: all 0.2s; cursor: pointer;
}
.article-featured:hover { border-color: var(--gold-border); box-shadow: var(--shadow-lg); }
.article-featured-cover {
  width: 440px; flex-shrink: 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2D5E 50%, #C9962F 120%);
  display: flex; align-items: center; justify-content: center;
}
.article-featured-cover svg { opacity: 0.1; }
.article-featured-badge {
  position: absolute; top: 16px; left: 16px;
  height: 26px; padding: 0 12px;
  background: var(--gold); border-radius: 6px;
  font-size: 12px; font-weight: 600; color: #FFFFFF;
  display: flex; align-items: center;
}
.article-featured-content { flex: 1; padding: 32px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.article-featured-cat { font-size: 12px; color: var(--gold); font-weight: 600; }
.article-featured-title { font-size: 24px; font-weight: 700; color: var(--text-primary); line-height: 1.3; }
.article-featured-excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.7; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.article-featured-meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-muted); }
.article-featured-author { color: var(--text-secondary); font-weight: 500; }
.article-featured-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-muted); }

/* Category Filters */
.article-categories { display: flex; gap: 8px; flex-wrap: wrap; }
.article-cat-chip {
  display: inline-flex; align-items: center; height: 32px; padding: 0 14px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; font-size: 13px; color: var(--text-secondary);
  cursor: pointer; transition: all 0.2s;
}
.article-cat-chip:hover { border-color: var(--gold-border); color: var(--gold); }
.article-cat-chip.active { background: var(--gold-light); border-color: var(--gold-border); color: var(--gold); font-weight: 600; }
.article-cat-count { font-size: 11px; color: var(--text-muted); margin-left: 4px; }
.article-cat-chip.active .article-cat-count { color: var(--gold); }

/* Filter Bar */
.article-filter-bar { display: flex; align-items: center; justify-content: space-between; padding: 0 4px; }
.article-tabs { display: flex; gap: 4px; }
.article-tab {
  display: inline-flex; align-items: center; height: 32px; padding: 0 14px;
  border-radius: 8px; font-size: 13px; color: var(--text-secondary);
  cursor: pointer; transition: all 0.2s;
}
.article-tab.active { background: var(--gold-light); color: var(--gold); font-weight: 600; }
.article-tab:hover:not(.active) { background: var(--bg-tertiary); color: var(--text-primary); }
.article-sort { display: flex; align-items: center; gap: 8px; }
.article-sort-label { font-size: 12px; color: var(--text-muted); }
.article-sort-select { font-size: 13px; color: var(--text-primary); border: none; background: transparent; cursor: pointer; font-family: inherit; font-weight: 500; }

/* Article List (horizontal cards) */
.article-list { display: flex; flex-direction: column; gap: 12px; }

.article-card {
  display: flex; gap: 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
  transition: all 0.2s; cursor: pointer;
}
.article-card:hover { border-color: var(--gold-border); box-shadow: var(--shadow-md); }

.article-card-cover {
  width: 200px; height: 130px; flex-shrink: 0;
  border-radius: 8px; overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.article-cover-grad-1 { background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%); }
.article-cover-grad-2 { background: linear-gradient(135deg, #0F3460 0%, #164863 100%); }
.article-cover-grad-3 { background: linear-gradient(135deg, #583828 0%, #8B5E34 100%); }
.article-cover-grad-4 { background: linear-gradient(135deg, #1B3A2E 0%, #2D5F4E 100%); }
.article-cover-grad-5 { background: linear-gradient(135deg, #3D2645 0%, #5C3D5E 100%); }
.article-cover-grad-6 { background: linear-gradient(135deg, #1A1A3E 0%, #2D2D6E 100%); }

.article-cover-icon { opacity: 0.12; }
.article-cover-badge {
  position: absolute; top: 8px; left: 8px;
  height: 20px; padding: 0 8px; border-radius: 4px;
  font-size: 10px; font-weight: 600; color: #FFFFFF;
  display: flex; align-items: center;
}
.article-cover-badge.hot { background: var(--red); }
.article-cover-badge.new { background: var(--green); }
.article-cover-badge.premium { background: var(--gold); }

.article-card-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.article-card-title {
  font-size: 16px; font-weight: 600; color: var(--text-primary);
  line-height: 1.4; transition: color 0.2s;
}
.article-card:hover .article-card-title { color: var(--gold); }
.article-card-excerpt {
  font-size: 13px; color: var(--text-secondary); line-height: 1.6;
  overflow: hidden; text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.article-card-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text-muted); margin-top: auto; }
.article-card-author { color: var(--text-secondary); font-weight: 500; }
.article-card-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-muted); }
.article-card-tags { display: flex; gap: 6px; }
.article-card-tag {
  height: 20px; padding: 0 8px;
  background: var(--bg-tertiary); border-radius: 4px;
  font-size: 11px; color: var(--text-secondary);
  display: flex; align-items: center;
}

/* Article Pagination */
.article-pagination { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 16px 0 8px; }

/* Article Sidebar */
.article-sidebar { width: 320px; flex-shrink: 0; display: flex; flex-direction: column; gap: 20px; }

/* Editor's Pick */
.editor-pick-item {
  display: flex; gap: 10px; padding: 10px 0; cursor: pointer;
}
.editor-pick-item + .editor-pick-item { border-top: 1px solid var(--border-light); }
.editor-pick-rank {
  width: 20px; height: 20px; border-radius: 4px;
  font-size: 11px; font-weight: 700; color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: 'Geist', sans-serif;
}
.editor-pick-rank.r1 { background: var(--red); }
.editor-pick-rank.r2 { background: #F97316; }
.editor-pick-rank.r3 { background: var(--gold); }
.editor-pick-rank.r4 { background: var(--text-muted); }
.editor-pick-rank.r5 { background: var(--text-muted); }
.editor-pick-info { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.editor-pick-title { font-size: 13px; color: var(--text-primary); line-height: 1.4; transition: color 0.2s; }
.editor-pick-title:hover { color: var(--gold); }
.editor-pick-meta { font-size: 11px; color: var(--text-muted); }

/* Tag Cloud */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud-item {
  height: 28px; padding: 0 12px;
  background: var(--bg-tertiary); border-radius: 6px;
  font-size: 12px; color: var(--text-secondary);
  display: flex; align-items: center; cursor: pointer;
  transition: all 0.2s;
}
.tag-cloud-item:hover { background: var(--gold-light); color: var(--gold); }
.tag-cloud-item.hot { color: var(--red); font-weight: 600; }

/* Article stat card */
.article-stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
}
.article-stat-card-title { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 14px; }
.article-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.article-stat-grid-item { text-align: center; }
.article-stat-grid-num { font-size: 22px; font-weight: 700; color: var(--gold); font-family: 'Geist', sans-serif; }
.article-stat-grid-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ========================================================
   NEWS PAGE (资讯)
   ======================================================== */
.news-page { background: var(--bg-secondary); min-height: calc(100vh - 64px); }

/* News Header */
.news-page-header {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 40px 120px 28px;
}
.news-header-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; }
.news-page-title { font-size: 28px; font-weight: 800; color: var(--text-primary); }
.news-page-subtitle { font-size: 14px; color: var(--text-muted); margin-top: 6px; }
.news-ticker {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; background: var(--gold-light); border: 1px solid var(--gold-border);
  border-radius: 10px; max-width: 420px;
}
.news-ticker-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #E54848;
  flex-shrink: 0; animation: news-blink 1.5s ease-in-out infinite;
}
@keyframes news-blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.news-ticker-text { font-size: 13px; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.news-ticker-text strong { color: var(--gold); }

/* News Stats Bar */
.news-stats-bar {
  display: flex; gap: 0; align-items: center;
}
.news-stat-item { display: flex; flex-direction: column; gap: 2px; padding: 0 28px 0 0; }
.news-stat-num { font-size: 20px; font-weight: 800; color: var(--text-primary); font-family: 'Geist', sans-serif; }
.news-stat-num.gold { color: var(--gold); }
.news-stat-label { font-size: 12px; color: var(--text-muted); }
.news-stat-divider { width: 1px; height: 32px; background: var(--border); margin-right: 28px; }

/* News Layout */
.news-layout {
  max-width: 1280px; margin: 0 auto; padding: 24px 40px;
  display: grid; grid-template-columns: 1fr 340px; gap: 24px;
}

/* News Filters */
.news-filters {
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 12px 20px;
}
.news-cat-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.news-cat-chip {
  padding: 6px 16px; font-size: 13px; font-weight: 500; border-radius: 8px;
  color: var(--text-secondary); cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.news-cat-chip.active { background: var(--gold); color: #fff; font-weight: 600; }
.news-cat-chip:not(.active):hover { background: var(--gold-light); color: var(--gold); }
.news-search-box { position: relative; margin-left: auto; }
.news-search-input {
  width: 200px; padding: 8px 12px 8px 36px; border: 1px solid var(--border);
  border-radius: 8px; font-size: 13px; color: var(--text-primary); background: var(--bg-secondary);
  transition: all 0.2s; box-sizing: border-box;
}
.news-search-input:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(201,150,47,0.1); }
.news-search-icon { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; }

/* News Timeline */
.news-timeline {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden;
}
.news-date-separator {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 24px 8px; background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
}
.news-date-separator:first-child { padding-top: 20px; }
.news-date-label { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.news-date-count { font-size: 12px; color: var(--text-muted); }
.news-date-line { flex: 1; height: 1px; background: var(--border-light); }

/* News Item */
.news-item {
  display: flex; gap: 16px; padding: 20px 24px;
  border-bottom: 1px solid var(--border-light); transition: background 0.2s;
  cursor: pointer; position: relative;
}
.news-item:last-child { border-bottom: none; }
.news-item:hover { background: var(--bg-secondary); }
.news-item::before {
  content: ''; position: absolute; left: 0; top: 20px; bottom: 20px; width: 3px;
  background: transparent; border-radius: 0 3px 3px 0; transition: background 0.2s;
}
.news-item:hover::before { background: var(--gold); }

.news-time-col {
  flex-shrink: 0; width: 64px; text-align: right; padding-top: 2px;
}
.news-time {
  font-size: 15px; font-weight: 700; color: var(--text-primary); font-family: 'Geist', sans-serif;
}
.news-date-tag {
  font-size: 11px; color: var(--text-muted); margin-top: 2px;
}

.news-content-col { flex: 1; min-width: 0; }
.news-item-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; flex-wrap: wrap; }
.news-source-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; font-size: 11px; font-weight: 600; border-radius: 4px;
}
.news-source-urgent { background: #FEF2F2; color: #E54848; }
.news-source-exchange { background: #EFF6FF; color: #2563EB; }
.news-source-policy { background: #F0FDF4; color: #16A34A; }
.news-source-intl { background: #FAF5FF; color: #9333EA; }
.news-source-research { background: var(--gold-light); color: var(--gold); }
.news-source-market { background: #FFF7ED; color: #EA580C; }
.news-tag-hot {
  padding: 2px 8px; font-size: 11px; font-weight: 700; border-radius: 4px;
  background: #FEF2F2; color: #E54848;
}
.news-tag-new {
  padding: 2px 8px; font-size: 11px; font-weight: 700; border-radius: 4px;
  background: #F0FDF4; color: #16A34A;
}
.news-item-title {
  font-size: 15px; font-weight: 600; color: var(--text-primary); line-height: 1.5;
  margin-bottom: 4px; transition: color 0.2s;
}
.news-item:hover .news-item-title { color: var(--gold); }
.news-item-summary {
  font-size: 13px; color: var(--text-secondary); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-item-footer {
  display: flex; align-items: center; gap: 16px; margin-top: 8px;
}
.news-source-text { font-size: 12px; color: var(--text-muted); }
.news-meta { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--text-muted); }
.news-meta svg { width: 13px; height: 13px; }

/* News Pagination */
.news-pagination {
  display: flex; justify-content: center; gap: 6px; margin-top: 24px;
}
.news-page-btn {
  min-width: 36px; height: 36px; padding: 0 12px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 8px; font-size: 13px; font-weight: 600;
  color: var(--text-secondary); background: #fff; cursor: pointer; transition: all 0.2s;
}
.news-page-btn:hover { border-color: var(--gold); color: var(--gold); }
.news-page-btn.active { background: var(--gold); color: #fff; border-color: var(--gold); }
.news-page-btn.disabled { opacity: 0.4; cursor: not-allowed; }

/* News Sidebar */
.news-sidebar { display: flex; flex-direction: column; gap: 20px; }

/* Today's Hot */
.news-side-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
}
.news-side-header {
  display: flex; align-items: center; gap: 8px; padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
}
.news-side-header svg { color: var(--gold); }
.news-side-title { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.news-side-body { padding: 12px 20px 20px; }

.hot-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 10px 0;
  border-bottom: 1px dashed var(--border-light); cursor: pointer; transition: all 0.2s;
}
.hot-item:last-child { border-bottom: none; }
.hot-item:hover .hot-item-title { color: var(--gold); }
.hot-rank {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; font-family: 'Geist', sans-serif;
}
.hot-rank.top1 { background: #FEF2F2; color: #E54848; }
.hot-rank.top2 { background: #FFF7ED; color: #EA580C; }
.hot-rank.top3 { background: #FEFCE8; color: #CA8A04; }
.hot-rank.normal { background: var(--bg-secondary); color: var(--text-muted); }
.hot-item-content { flex: 1; min-width: 0; }
.hot-item-title {
  font-size: 13px; font-weight: 500; color: var(--text-primary); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color 0.2s;
}
.hot-item-meta { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.hot-item-trend {
  font-size: 11px; font-weight: 600; margin-top: 2px;
}
.hot-item-trend.up { color: #E54848; }
.hot-item-trend.down { color: #16A34A; }

/* Calendar */
.cal-date-row { display: flex; gap: 8px; margin-bottom: 12px; }
.cal-date-chip {
  flex: 1; text-align: center; padding: 8px 0; border-radius: 8px;
  border: 1px solid var(--border); cursor: pointer; transition: all 0.2s;
}
.cal-date-chip.active { background: var(--gold); border-color: var(--gold); }
.cal-date-chip.active .cal-week { color: rgba(255,255,255,0.8); }
.cal-date-chip.active .cal-day { color: #fff; }
.cal-week { font-size: 11px; color: var(--text-muted); }
.cal-day { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-top: 2px; }
.cal-event {
  display: flex; gap: 10px; padding: 10px 0;
  border-bottom: 1px dashed var(--border-light);
}
.cal-event:last-child { border-bottom: none; }
.cal-event-time {
  flex-shrink: 0; font-size: 12px; font-weight: 700; color: var(--gold);
  font-family: 'Geist', sans-serif; width: 40px;
}
.cal-event-content { flex: 1; }
.cal-event-title { font-size: 12px; color: var(--text-primary); font-weight: 500; line-height: 1.4; }
.cal-event-tag {
  display: inline-block; padding: 1px 6px; font-size: 10px; font-weight: 600;
  border-radius: 3px; margin-top: 4px;
}
.cal-event-tag.high { background: #FEF2F2; color: #E54848; }
.cal-event-tag.med { background: #FFF7ED; color: #EA580C; }
.cal-event-tag.low { background: var(--bg-secondary); color: var(--text-muted); }

/* Source Channels */
.source-list { display: flex; flex-direction: column; gap: 10px; }
.source-item {
  display: flex; align-items: center; gap: 10px; padding: 8px 12px;
  background: var(--bg-secondary); border-radius: 8px; transition: all 0.2s; cursor: pointer;
}
.source-item:hover { background: var(--gold-light); }
.source-icon {
  width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.source-info { flex: 1; }
.source-name { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.source-desc { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.source-count { font-size: 12px; font-weight: 700; color: var(--gold); font-family: 'Geist', sans-serif; }

/* Market Overview Mini */
.market-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.market-mini-item {
  padding: 10px 12px; background: var(--bg-secondary); border-radius: 8px;
}
.market-mini-name { font-size: 12px; color: var(--text-muted); }
.market-mini-price { font-size: 15px; font-weight: 700; color: var(--text-primary); font-family: 'Geist', sans-serif; margin-top: 2px; }
.market-mini-change { font-size: 12px; font-weight: 600; margin-top: 2px; font-family: 'Geist', sans-serif; }
.market-mini-change.up { color: #E54848; }
.market-mini-change.down { color: #16A34A; }

/* ========================================================
   CONSULTANT PAGE
   ======================================================== */
.consultant-page { background: var(--bg-secondary); min-height: calc(100vh - 64px); }

/* Consultant Header */
.consultant-page-header {
  width: 100%; padding: 40px 120px 32px;
  background: var(--bg-primary); border-bottom: 1px solid var(--border);
}
.consultant-header-row { display: flex; align-items: center; justify-content: space-between; }
.consultant-header-left { display: flex; flex-direction: column; gap: 6px; }
.consultant-page-title { font-size: 32px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; }
.consultant-page-subtitle { font-size: 14px; color: var(--text-secondary); }
.consultant-join-btn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 40px; padding: 0 20px;
  background: var(--gold); border: none; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: #FFFFFF;
  cursor: pointer; transition: background 0.2s;
}
.consultant-join-btn:hover { background: var(--gold-hover); }

.consultant-stats-bar { display: flex; gap: 32px; margin-top: 20px; }
.consultant-stat-item { display: flex; align-items: baseline; gap: 6px; }
.consultant-stat-num { font-size: 20px; font-weight: 700; color: var(--text-primary); }
.consultant-stat-label { font-size: 13px; color: var(--text-secondary); }
.consultant-stat-divider { width: 1px; height: 20px; background: var(--border); align-self: center; }

/* Filter Bar */
.consultant-filters {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 120px;
}
.consultant-cat-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.consultant-cat-chip {
  display: inline-flex; align-items: center; height: 32px; padding: 0 14px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; font-size: 13px; color: var(--text-secondary);
  cursor: pointer; transition: all 0.2s;
}
.consultant-cat-chip:hover { border-color: var(--gold-border); color: var(--gold); }
.consultant-cat-chip.active { background: var(--gold-light); border-color: var(--gold-border); color: var(--gold); font-weight: 600; }
.consultant-sort { display: flex; align-items: center; gap: 8px; }
.consultant-sort-label { font-size: 12px; color: var(--text-muted); }
.consultant-sort-select { font-size: 13px; color: var(--text-primary); border: none; background: transparent; cursor: pointer; font-family: inherit; font-weight: 500; }

/* Consultant Grid */
.consultant-grid-wrap { padding: 0 120px 32px; }
.consultant-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}

.consultant-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px;
  transition: all 0.2s; cursor: pointer;
  display: flex; flex-direction: column; gap: 14px;
}
.consultant-card:hover { border-color: var(--gold-border); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.consultant-card-top { display: flex; align-items: flex-start; gap: 14px; }
.consultant-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold-light); border: 2px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; color: var(--gold);
  flex-shrink: 0; font-family: 'Geist', sans-serif;
}
.consultant-card-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.consultant-name-row { display: flex; align-items: center; gap: 8px; }
.consultant-name { font-size: 16px; font-weight: 700; color: var(--text-primary); }
.consultant-verify-badge {
  display: inline-flex; align-items: center; gap: 3px;
  height: 18px; padding: 0 6px;
  background: var(--gold-light); border: 1px solid var(--gold-border); border-radius: 4px;
  font-size: 10px; font-weight: 600; color: var(--gold);
}
.consultant-title-text { font-size: 13px; color: var(--text-secondary); }
.consultant-company { font-size: 12px; color: var(--text-muted); }

.consultant-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.consultant-tag {
  height: 22px; padding: 0 8px;
  background: var(--bg-tertiary); border-radius: 4px;
  font-size: 11px; color: var(--text-secondary);
  display: flex; align-items: center;
}
.consultant-tag.gold { background: var(--gold-light); color: var(--gold); }

.consultant-card-stats {
  display: flex; gap: 16px;
  padding: 12px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light);
}
.consultant-stat-mini { display: flex; flex-direction: column; gap: 2px; }
.consultant-stat-mini-num { font-size: 16px; font-weight: 700; color: var(--text-primary); font-family: 'Geist', sans-serif; }
.consultant-stat-mini-label { font-size: 10px; color: var(--text-muted); }

.consultant-rating-row { display: flex; align-items: center; justify-content: space-between; }
.consultant-rating { display: flex; align-items: center; gap: 4px; }
.consultant-rating-stars { display: flex; gap: 1px; }
.consultant-rating-num { font-size: 14px; font-weight: 700; color: var(--gold); font-family: 'Geist', sans-serif; }
.consultant-rating-text { font-size: 11px; color: var(--text-muted); }
.consultant-ask-btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 34px; padding: 0 16px;
  background: var(--gold); border: none; border-radius: 8px;
  font-size: 13px; font-weight: 600; color: #FFFFFF;
  cursor: pointer; transition: background 0.2s;
}
.consultant-ask-btn:hover { background: var(--gold-hover); }
.consultant-ask-btn.outline {
  background: transparent; border: 1px solid var(--gold-border); color: var(--gold);
}
.consultant-ask-btn.outline:hover { background: var(--gold-light); }

/* Consultant Pagination */
.consultant-pagination {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 24px 0 8px;
}

/* Join Section */
.consultant-join-section {
  margin: 0 120px 56px;
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2D5E 100%);
  border-radius: 20px; overflow: hidden;
  position: relative;
}
.consultant-join-bg {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: radial-gradient(circle at 20% 30%, var(--gold) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, var(--gold) 0%, transparent 40%);
}
.consultant-join-content {
  position: relative; z-index: 1;
  padding: 48px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.consultant-join-left { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.consultant-join-badge {
  display: inline-flex; align-items: center; gap: 4px;
  height: 28px; padding: 0 12px;
  background: rgba(201, 150, 47, 0.15); border: 1px solid rgba(201, 150, 47, 0.3); border-radius: 6px;
  font-size: 12px; font-weight: 600; color: var(--gold);
  align-self: flex-start;
}
.consultant-join-title { font-size: 28px; font-weight: 700; color: #FFFFFF; letter-spacing: -0.01em; }
.consultant-join-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 520px; }

.consultant-join-benefits { display: flex; gap: 32px; margin-top: 8px; }
.consultant-benefit { display: flex; flex-direction: column; gap: 4px; }
.consultant-benefit-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(201, 150, 47, 0.12); border: 1px solid rgba(201, 150, 47, 0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.consultant-benefit-title { font-size: 14px; font-weight: 600; color: #FFFFFF; }
.consultant-benefit-desc { font-size: 12px; color: rgba(255,255,255,0.5); }

.consultant-join-right { flex-shrink: 0; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.consultant-join-cta {
  display: inline-flex; align-items: center; justify-content: center;
  height: 52px; padding: 0 36px;
  background: var(--gold); border: none; border-radius: 10px;
  font-size: 16px; font-weight: 700; color: #FFFFFF;
  cursor: pointer; transition: all 0.2s;
}
.consultant-join-cta:hover { background: var(--gold-hover); transform: scale(1.02); }
.consultant-join-steps { font-size: 12px; color: rgba(255,255,255,0.4); text-align: center; }

/* Preview badge */
.preview-badge {
  position: fixed; top: 72px; right: 16px;
  background: var(--gold); color: #FFFFFF;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 6px; z-index: 999;
}

/* SVG icons */
.icon-svg { flex-shrink: 0; }

/* ========================================================
   FEE PAGE
   ======================================================== */
.fee-page { background: var(--bg-secondary); min-height: calc(100vh - 64px); }

/* Fee Page Header */
.fee-page-header {
  width: 100%; padding: 40px 120px 32px;
  background: var(--bg-primary); border-bottom: 1px solid var(--border);
}
.fee-header-row { display: flex; align-items: center; justify-content: space-between; }
.fee-header-left { display: flex; flex-direction: column; gap: 6px; }
.fee-page-title { font-size: 32px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; }
.fee-page-subtitle { font-size: 14px; color: var(--text-secondary); }
.fee-update-badge {
  display: inline-flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 16px;
  background: var(--gold-light); border: 1px solid var(--gold-border);
  border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--gold);
}
.fee-update-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.fee-stats-bar { display: flex; gap: 32px; margin-top: 20px; }
.fee-stat-item { display: flex; align-items: baseline; gap: 6px; }
.fee-stat-num { font-size: 20px; font-weight: 700; color: var(--text-primary); font-family: 'Geist', sans-serif; }
.fee-stat-label { font-size: 13px; color: var(--text-secondary); }
.fee-stat-divider { width: 1px; height: 20px; background: var(--border); align-self: center; }

/* Calculator Section */
.fee-calc-section {
  padding: 32px 120px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
}
.fee-calc-title-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.fee-calc-title { font-size: 20px; font-weight: 700; color: var(--text-primary); }
.fee-calc-hint { font-size: 13px; color: var(--text-secondary); }

.calc-grid { display: flex; gap: 24px; }

.calc-card {
  flex: 1; padding: 28px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; transition: border-color 0.2s;
  display: flex; flex-direction: column; gap: 20px;
}
.calc-card:hover { border-color: var(--gold-border); }
.calc-card.gold-accent { border-color: var(--gold-border); background: linear-gradient(135deg, #FDFBF6 0%, #FFFFFF 100%); }

.calc-card-header { display: flex; align-items: center; gap: 12px; }
.calc-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.calc-card-icon.fee { background: var(--gold-light); }
.calc-card-icon.margin { background: #EEF2FF; }
.calc-card-title { font-size: 17px; font-weight: 700; color: var(--text-primary); }
.calc-card-desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.calc-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.calc-field { display: flex; flex-direction: column; gap: 6px; }
.calc-field.full { grid-column: 1 / -1; }
.calc-field-label { font-size: 12px; color: var(--text-secondary); font-weight: 500; }
.calc-field-input-wrap {
  display: flex; align-items: center;
  height: 38px; border: 1px solid var(--border); border-radius: 8px;
  background: var(--bg-primary); transition: border-color 0.2s; overflow: hidden;
}
.calc-field-input-wrap:focus-within { border-color: var(--gold); }
.calc-field-input-wrap.readonly { background: var(--bg-tertiary); }
.calc-field-input {
  flex: 1; border: none; outline: none;
  height: 100%; padding: 0 12px;
  font-size: 14px; color: var(--text-primary);
  background: transparent; font-family: 'Geist', sans-serif;
}
.calc-field-input:read-only { color: var(--text-secondary); cursor: default; }
.calc-field-input::placeholder { color: var(--text-muted); }
.calc-field-suffix {
  padding: 0 12px; font-size: 12px; color: var(--text-muted);
  border-left: 1px solid var(--border); height: 100%;
  display: flex; align-items: center; flex-shrink: 0;
}
.calc-field-select {
  flex: 1; border: none; outline: none;
  height: 100%; padding: 0 12px;
  font-size: 14px; color: var(--text-primary);
  background: transparent; font-family: inherit;
  cursor: pointer; appearance: none;
}

.calc-result-box {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-radius: 10px;
  background: var(--gold-light); border: 1px solid var(--gold-border);
}
.calc-result-box.margin-box { background: #EEF2FF; border-color: #C7D2FE; }
.calc-result-label { font-size: 13px; color: var(--text-secondary); font-weight: 500; }
.calc-result-amount {
  font-size: 28px; font-weight: 700; color: var(--gold);
  font-family: 'Geist', sans-serif; letter-spacing: -0.01em;
}
.calc-result-box.margin-box .calc-result-amount { color: #4F46E5; }
.calc-result-detail { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.calc-formula {
  font-size: 11px; color: var(--text-muted); line-height: 1.6;
  padding: 10px 14px; background: var(--bg-tertiary); border-radius: 8px;
  font-family: 'Geist', sans-serif;
}

/* Exchange Filter Bar */
.fee-filter-section { padding: 24px 120px 0; }
.fee-exchange-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.fee-exchange-tab {
  display: inline-flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; font-size: 13px; color: var(--text-secondary);
  cursor: pointer; transition: all 0.2s;
}
.fee-exchange-tab:hover { border-color: var(--gold-border); color: var(--gold); }
.fee-exchange-tab.active { background: var(--gold); border-color: var(--gold); color: #FFFFFF; font-weight: 600; }
.fee-exchange-tab .count {
  font-size: 11px; padding: 1px 7px; border-radius: 10px;
  background: var(--bg-tertiary); color: var(--text-muted);
}
.fee-exchange-tab.active .count { background: rgba(255,255,255,0.2); color: #FFFFFF; }

/* Table Controls */
.fee-table-controls {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 120px 0; gap: 16px;
}
.fee-view-toggle {
  display: inline-flex; background: var(--bg-tertiary); border-radius: 8px; padding: 3px;
}
.fee-view-btn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 32px; padding: 0 16px;
  border: none; background: transparent; border-radius: 6px;
  font-size: 13px; color: var(--text-secondary); cursor: pointer;
  transition: all 0.2s; font-family: inherit;
}
.fee-view-btn.active { background: var(--bg-primary); color: var(--text-primary); font-weight: 600; box-shadow: var(--shadow-sm); }

.fee-search-box {
  display: flex; align-items: center; gap: 10px;
  width: 280px; height: 36px; padding: 0 14px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; transition: border-color 0.2s;
}
.fee-search-box:focus-within { border-color: var(--gold); }
.fee-search-box input {
  flex: 1; border: none; outline: none;
  font-size: 13px; color: var(--text-primary);
  background: transparent; font-family: inherit;
}
.fee-search-box input::placeholder { color: var(--text-muted); }

/* Data Table */
.fee-table-section { padding: 16px 120px 40px; }
.fee-table-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.fee-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.fee-table thead { background: var(--bg-tertiary); }
.fee-table th {
  padding: 12px 16px; text-align: left;
  font-size: 12px; font-weight: 600; color: var(--text-secondary);
  border-bottom: 1px solid var(--border); white-space: nowrap;
}
.fee-table td {
  padding: 12px 16px; color: var(--text-primary);
  border-bottom: 1px solid var(--border-light); white-space: nowrap;
}
.fee-table tbody tr { transition: background 0.15s; }
.fee-table tbody tr:hover { background: var(--gold-light); }
.fee-table tbody tr:last-child td { border-bottom: none; }

.fee-variety-name { font-weight: 600; color: var(--text-primary); display: flex; align-items: center; gap: 6px; }
.fee-hot-icon { font-size: 12px; }
.fee-code { font-size: 11px; color: var(--text-muted); font-family: 'Geist', sans-serif; }
.fee-num { font-family: 'Geist', sans-serif; font-weight: 500; }
.fee-num.highlight { color: var(--red); font-weight: 600; }

.fee-type-badge {
  display: inline-flex; align-items: center; height: 20px; padding: 0 8px;
  border-radius: 4px; font-size: 11px; font-weight: 600;
}
.fee-type-badge.fixed { background: #DBEAFE; color: #2563EB; }
.fee-type-badge.ratio { background: var(--gold-light); color: var(--gold); }

.fee-exchange-badge {
  display: inline-flex; align-items: center; height: 20px; padding: 0 8px;
  border-radius: 4px; font-size: 10px; font-weight: 600;
}
.fee-exchange-badge.shfe { background: #FEF3C7; color: #D97706; }
.fee-exchange-badge.dce { background: #D1FAE5; color: #059669; }
.fee-exchange-badge.czce { background: #EDE9FE; color: #7C3AED; }
.fee-exchange-badge.ine { background: #FCE7F3; color: #DB2777; }
.fee-exchange-badge.cffex { background: #DBEAFE; color: #2563EB; }
.fee-exchange-badge.gfex { background: #FEE2E2; color: #DC2626; }

.fee-table-note { font-size: 11px; color: var(--text-muted); }

.fee-no-result {
  padding: 40px; text-align: center; color: var(--text-muted); font-size: 14px;
}

/* Calculation Rules */
.fee-rules-section { padding: 0 120px 56px; }
.fee-rules-header { margin-bottom: 20px; }
.fee-rules-title { font-size: 20px; font-weight: 700; color: var(--text-primary); }
.fee-rules-subtitle { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }

.fee-rule-accordion { display: flex; flex-direction: column; gap: 12px; }
.fee-rule-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; transition: border-color 0.2s;
}
.fee-rule-item:hover { border-color: var(--gold-border); }
.fee-rule-header {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 24px; cursor: pointer; transition: background 0.15s;
}
.fee-rule-header:hover { background: var(--gold-light); }
.fee-rule-num {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--gold-light); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--gold);
  flex-shrink: 0; font-family: 'Geist', sans-serif;
}
.fee-rule-title { flex: 1; font-size: 15px; font-weight: 600; color: var(--text-primary); }
.fee-rule-desc { font-size: 12px; color: var(--text-muted); margin-right: 8px; }
.fee-rule-arrow { color: var(--text-muted); transition: transform 0.2s; }
.fee-rule-item.open .fee-rule-arrow { transform: rotate(90deg); }
.fee-rule-body {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.fee-rule-item.open .fee-rule-body { max-height: 800px; }
.fee-rule-content { padding: 0 24px 24px; display: flex; flex-direction: column; gap: 14px; }

.fee-rule-formula {
  padding: 14px 18px; background: var(--bg-tertiary); border-radius: 8px;
  font-size: 13px; color: var(--text-primary); line-height: 1.8;
  font-family: 'Geist', sans-serif;
}
.fee-rule-formula .label { color: var(--gold); font-weight: 600; }
.fee-rule-example {
  padding: 14px 18px; background: var(--gold-light); border: 1px solid var(--gold-border);
  border-radius: 8px; font-size: 13px; color: var(--text-primary); line-height: 1.8;
}
.fee-rule-example .result { color: var(--gold); font-weight: 700; font-family: 'Geist', sans-serif; }
.fee-rule-tip {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 12px; color: var(--text-secondary); line-height: 1.6;
}
.fee-rule-tip-icon { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* Fee Disclaimer */
.fee-disclaimer {
  margin: 0 120px 40px; padding: 20px 24px;
  background: #FFF7ED; border: 1px solid #FDBA74; border-radius: 10px;
  display: flex; gap: 12px; align-items: flex-start;
}
.fee-disclaimer-icon { flex-shrink: 0; margin-top: 1px; color: #EA580C; }
.fee-disclaimer-text { font-size: 12px; color: #9A3412; line-height: 1.7; }
.fee-disclaimer-text strong { color: #7C2D12; }

/* ===== OPEN ACCOUNT PAGE ===== */
.open-page { background: var(--bg-secondary); }

/* Hero */
.open-hero {
  background: linear-gradient(135deg, #FDF8EE 0%, #FFFFFF 60%, #F7F8FA 100%);
  padding: 56px 120px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.open-hero-left { flex: 1; max-width: 560px; }
.open-hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; background: var(--gold-light); border: 1px solid var(--gold-border);
  border-radius: 20px; font-size: 12px; color: var(--gold); font-weight: 600; margin-bottom: 20px;
}
.open-hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.open-hero h1 {
  font-size: 32px; font-weight: 800; color: var(--text-primary); margin-bottom: 16px;
  line-height: 1.35;
}
.open-hero h1 .gold { color: var(--gold); }
.open-hero-desc {
  font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 28px;
}
.open-hero-stats { display: flex; gap: 36px; margin-bottom: 32px; }
.open-hero-stat-num { font-size: 26px; font-weight: 800; color: var(--gold); }
.open-hero-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.open-hero-cta { display: flex; gap: 14px; align-items: center; }
.open-cta-primary {
  padding: 14px 40px; background: var(--gold); color: #fff; border: none;
  border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s; box-shadow: 0 4px 12px rgba(201,150,47,0.3);
}
.open-cta-primary:hover { background: var(--gold-hover); }
.open-cta-secondary {
  padding: 14px 28px; background: transparent; color: var(--text-secondary);
  border: 1px solid var(--border); border-radius: 8px; font-size: 14px; font-weight: 500;
  cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s;
}
.open-cta-secondary:hover { border-color: var(--gold); color: var(--gold); }

.open-hero-right { flex-shrink: 0; margin-left: 48px; }
.open-hero-card {
  width: 340px; background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 28px; box-shadow: var(--shadow-lg);
}
.open-hero-card-title {
  font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.open-hero-card-list { list-style: none; }
.open-hero-card-list li {
  display: flex; align-items: flex-start; gap: 10px; padding: 11px 0;
  border-bottom: 1px solid var(--border-light); font-size: 13px; color: var(--text-secondary);
}
.open-hero-card-list li:last-child { border-bottom: none; }
.open-hero-card-check { color: var(--green); flex-shrink: 0; margin-top: 1px; }
.open-hero-card-list strong { color: var(--text-primary); font-weight: 600; }

/* Steps timeline */
.open-steps { padding: 52px 120px; background: var(--bg-primary); }
.open-section-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px;
}
.open-section-title { font-size: 22px; font-weight: 700; color: var(--text-primary); }
.open-section-title .gold { color: var(--gold); }
.open-section-subtitle { font-size: 13px; color: var(--text-muted); }
.open-steps-grid {
  display: flex; justify-content: space-between; position: relative; align-items: flex-start;
}
.open-steps-line {
  position: absolute; top: 27px; left: 56px; right: 56px; height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 100%); z-index: 0;
  opacity: 0.3;
}
.open-step {
  position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center;
  flex: 1; text-align: center;
}
.open-step-num {
  width: 56px; height: 56px; border-radius: 50%; background: #fff;
  border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: var(--gold); margin-bottom: 14px;
  box-shadow: 0 0 0 6px var(--bg-primary);
}
.open-step:nth-child(odd) .open-step-num { background: var(--gold); color: #fff; }
.open-step-title { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.open-step-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; max-width: 150px; }
.open-step-time {
  display: inline-block; margin-top: 8px; padding: 3px 10px; background: var(--gold-light);
  border-radius: 4px; font-size: 11px; color: var(--gold); font-weight: 600;
}

/* Requirements */
.open-requirements { padding: 52px 120px; background: var(--bg-secondary); }
.open-req-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.open-req-card {
  background: var(--bg-primary); border: 1px solid var(--border); border-radius: 12px; padding: 28px;
}
.open-req-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.open-req-card-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--gold-light);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.open-req-card-title { font-size: 16px; font-weight: 700; color: var(--text-primary); }
.open-req-card-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.open-req-list { list-style: none; }
.open-req-list li {
  display: flex; align-items: flex-start; gap: 10px; padding: 8px 0;
  font-size: 13px; color: var(--text-secondary); line-height: 1.6;
}
.open-req-bullet { color: var(--gold); flex-shrink: 0; margin-top: 1px; font-weight: 700; }
.open-req-note {
  margin-top: 16px; padding: 12px 16px; background: var(--gold-light); border-radius: 8px;
  font-size: 12px; color: var(--gold-hover); line-height: 1.7;
}

/* Companies */
.open-companies { padding: 52px 120px; background: var(--bg-primary); }
.open-company-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.open-company-card {
  border: 1px solid var(--border); border-radius: 12px; padding: 24px;
  transition: all 0.2s; cursor: pointer; position: relative;
}
.open-company-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.open-company-card.featured { border-color: var(--gold); background: var(--gold-light); }
.open-company-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.open-company-name { font-size: 16px; font-weight: 700; color: var(--text-primary); }
.open-company-badge {
  padding: 3px 10px; border-radius: 4px; font-size: 11px; font-weight: 600;
}
.open-company-badge.recommended { background: var(--gold); color: #fff; }
.open-company-badge.new { background: #DBEAFE; color: #2563EB; }
.open-company-badge.hot { background: #FEE2E2; color: #DC2626; }
.open-company-stats { display: flex; gap: 24px; margin-bottom: 16px; }
.open-company-stat-val { font-size: 20px; font-weight: 700; color: var(--text-primary); }
.open-company-stat-val.gold { color: var(--gold); }
.open-company-stat-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.open-company-features { list-style: none; }
.open-company-features li {
  font-size: 12px; color: var(--text-secondary); padding: 4px 0;
  display: flex; align-items: center; gap: 6px;
}
.open-company-cta {
  margin-top: 16px; padding: 10px; text-align: center; border: 1px solid var(--gold);
  border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--gold);
  text-decoration: none; display: block; transition: all 0.2s;
}
.open-company-card:hover .open-company-cta { background: var(--gold); color: #fff; }
.open-company-rating {
  position: absolute; top: 16px; right: 16px;
  font-size: 11px; color: var(--text-muted);
}
.open-company-rating .stars { color: #FBBF24; letter-spacing: 1px; }

/* FAQ */
.open-faq { padding: 52px 120px; background: var(--bg-secondary); }
.open-faq-list { max-width: 960px; }
.open-faq-item {
  background: var(--bg-primary); border: 1px solid var(--border); border-radius: 10px;
  margin-bottom: 12px; overflow: hidden; transition: border-color 0.2s;
}
.open-faq-item:hover { border-color: var(--gold-border); }
.open-faq-item.open { border-color: var(--gold); }
.open-faq-q {
  padding: 18px 24px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-size: 14px; font-weight: 600; color: var(--text-primary);
}
.open-faq-q-icon { color: var(--gold); transition: transform 0.3s; flex-shrink: 0; margin-left: 12px; }
.open-faq-item.open .open-faq-q-icon { transform: rotate(180deg); }
.open-faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}
.open-faq-item.open .open-faq-a { max-height: 400px; padding-bottom: 18px; }
.open-faq-a-text { font-size: 13px; color: var(--text-secondary); line-height: 1.8; }
.open-faq-a-text strong { color: var(--text-primary); }

/* CTA section */
.open-cta-section {
  padding: 60px 120px; background: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
  text-align: center;
}
.open-cta-section h2 { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.open-cta-section h2 .gold { color: var(--gold); }
.open-cta-section p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.open-cta-btn-big {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 52px; background: var(--gold); color: #fff;
  border-radius: 10px; font-size: 16px; font-weight: 700; text-decoration: none;
  transition: background 0.2s; box-shadow: 0 4px 16px rgba(201,150,47,0.4);
}
.open-cta-btn-big:hover { background: var(--gold-hover); }
.open-cta-trust { margin-top: 20px; font-size: 12px; color: rgba(255,255,255,0.5); }

/* Service guarantee bar */
.open-guarantee {
  padding: 40px 120px; background: var(--bg-primary);
  display: flex; justify-content: space-between; gap: 24px;
}
.open-guarantee-item {
  display: flex; align-items: center; gap: 12px; flex: 1;
}
.open-guarantee-icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--gold-light);
  display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0;
}
.open-guarantee-title { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.open-guarantee-desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ===== LOGIN PAGE ===== */
.login-page {
  min-height: calc(100vh - 64px);
  display: flex;
  background: linear-gradient(135deg, #FFFFFF 0%, #F7F8FA 50%, #F0F2F5 100%);
  position: relative;
  overflow: hidden;
}
.login-page::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,150,47,0.10) 0%, transparent 65%);
}
.login-page::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,150,47,0.08) 0%, transparent 65%);
}
.login-left-accent {
  position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: linear-gradient(180deg, var(--gold) 0%, #E8B84F 30%, var(--gold) 60%, #B8861E 100%);
  z-index: 2;
}
.login-left-grid {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(201,150,47,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,150,47,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.5) 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.5) 70%, transparent 100%);
}

/* Left brand panel */
.login-left {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 60px 80px; color: var(--text-primary); position: relative; z-index: 1;
}
.login-logo { font-size: 32px; font-weight: 800; color: var(--gold); margin-bottom: 40px; letter-spacing: 2px; }
.login-headline { font-size: 36px; font-weight: 800; line-height: 1.4; margin-bottom: 16px; color: var(--text-primary); }
.login-headline .gold { color: var(--gold); }
.login-subheadline { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 48px; max-width: 420px; }
.login-features { display: flex; flex-direction: column; gap: 20px; }
.login-feature {
  display: flex; align-items: center; gap: 16px;
}
.login-feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0; box-shadow: 0 4px 12px rgba(201,150,47,0.3);
}
.login-feature-title { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.login-feature-desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.login-stats {
  display: flex; gap: 40px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(201,150,47,0.2);
}
.login-stat-num { font-size: 24px; font-weight: 800; color: var(--gold); }
.login-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* Right form panel */
.login-right {
  width: 480px; background: #fff; display: flex; flex-direction: column;
  justify-content: center; padding: 48px 56px; position: relative; z-index: 1;
  box-shadow: -20px 0 60px rgba(0,0,0,0.06);
}
.login-form-title { font-size: 24px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.login-form-subtitle { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }

/* Tab switch */
.login-tabs {
  display: flex; gap: 0; margin-bottom: 28px; border-bottom: 2px solid var(--border);
}
.login-tab {
  flex: 1; text-align: center; padding: 12px 0; font-size: 14px; font-weight: 600;
  color: var(--text-muted); cursor: pointer; position: relative; transition: color 0.2s;
}
.login-tab.active { color: var(--gold); }
.login-tab.active::after {
  content: ''; position: absolute; bottom: -2px; left: 20%; right: 20%; height: 2px;
  background: var(--gold); border-radius: 2px;
}

/* Form */
.login-form-group { margin-bottom: 20px; }
.login-form-label { font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; display: block; }
.login-input-wrap { position: relative; display: flex; align-items: center; }
.login-input-icon {
  position: absolute; left: 14px; color: var(--text-muted); pointer-events: none;
}
.login-input {
  width: 100%; padding: 14px 16px 14px 44px; border: 1px solid var(--border);
  border-radius: 10px; font-size: 14px; color: var(--text-primary); background: var(--bg-secondary);
  transition: all 0.2s; box-sizing: border-box;
}
.login-input:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(201,150,47,0.1); }
.login-input::placeholder { color: var(--text-muted); }

.login-code-wrap { display: flex; gap: 12px; }
.login-code-wrap .login-input-wrap { flex: 1; }
.login-code-btn {
  flex-shrink: 0; padding: 0 20px; border: 1px solid var(--gold); border-radius: 10px;
  background: var(--gold-light); color: var(--gold); font-size: 13px; font-weight: 600;
  cursor: pointer; white-space: nowrap; transition: all 0.2s;
}
.login-code-btn:hover { background: var(--gold); color: #fff; }
.login-code-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.login-options {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px;
}
.login-remember { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-secondary); cursor: pointer; }
.login-remember input { width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer; }
.login-forgot { font-size: 13px; color: var(--gold); text-decoration: none; }
.login-forgot:hover { text-decoration: underline; }

.login-submit {
  width: 100%; padding: 16px; background: var(--gold); color: #fff; border: none;
  border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer;
  transition: background 0.2s; box-shadow: 0 4px 12px rgba(201,150,47,0.3);
}
.login-submit:hover { background: var(--gold-hover); }

.login-divider {
  display: flex; align-items: center; gap: 16px; margin: 28px 0;
  font-size: 12px; color: var(--text-muted);
}
.login-divider::before, .login-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

.login-third {
  display: flex; justify-content: center; gap: 20px; margin-bottom: 24px;
}
.login-third-btn {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: all 0.2s; background: #fff;
}
.login-third-btn:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.login-third-btn svg { width: 24px; height: 24px; }

.login-register {
  text-align: center; font-size: 13px; color: var(--text-secondary);
}
.login-register a { color: var(--gold); font-weight: 600; text-decoration: none; }
.login-register a:hover { text-decoration: underline; }

.login-qrcode-section {
  display: none; flex-direction: column; align-items: center; padding: 20px 0;
}
.login-qrcode-section.active { display: flex; }
.login-qrcode {
  width: 180px; height: 180px; border: 1px solid var(--border); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-secondary); margin-bottom: 16px; position: relative;
}
.login-qrcode-placeholder {
  width: 140px; height: 140px;
  background-image:
    linear-gradient(45deg, var(--text-primary) 25%, transparent 25%, transparent 75%, var(--text-primary) 75%),
    linear-gradient(45deg, var(--text-primary) 25%, transparent 25%, transparent 75%, var(--text-primary) 75%);
  background-size: 14px 14px; background-position: 0 0, 7px 7px; opacity: 0.1;
  border-radius: 8px;
}
.login-qrcode-logo {
  position: absolute; width: 36px; height: 36px; background: #fff; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: var(--gold);
}
.login-qrcode-tip { font-size: 13px; color: var(--text-secondary); text-align: center; line-height: 1.6; }
.login-qrcode-tip strong { color: var(--text-primary); }

.login-form-section { display: block; }
.login-form-section.hidden { display: none; }

/* ===== CONSULTANT JOIN PAGE ===== */
.join-page { background: var(--bg-secondary); }

/* Hero */
.join-hero {
  background: linear-gradient(135deg, #FDF8EE 0%, #FFFFFF 60%, #F7F8FA 100%);
  padding: 56px 120px 48px; text-align: center; border-bottom: 1px solid var(--border);
}
.join-hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; background: var(--gold-light); border: 1px solid var(--gold-border);
  border-radius: 20px; font-size: 12px; color: var(--gold); font-weight: 600; margin-bottom: 20px;
}
.join-hero h1 { font-size: 32px; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; line-height: 1.35; }
.join-hero h1 .gold { color: var(--gold); }
.join-hero-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.8; max-width: 640px; margin: 0 auto 28px; }
.join-hero-stats { display: flex; justify-content: center; gap: 48px; margin-bottom: 32px; }
.join-hero-stat-num { font-size: 28px; font-weight: 800; color: var(--gold); }
.join-hero-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.join-hero-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 40px; background: var(--gold); color: #fff;
  border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none;
  transition: background 0.2s; box-shadow: 0 4px 12px rgba(201,150,47,0.3);
}
.join-hero-cta:hover { background: var(--gold-hover); }

/* Benefits */
.join-benefits { padding: 52px 120px; background: var(--bg-primary); }
.join-benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.join-benefit-card {
  border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; text-align: center;
  transition: all 0.2s;
}
.join-benefit-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.join-benefit-icon {
  width: 56px; height: 56px; border-radius: 14px; background: var(--gold-light);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--gold);
}
.join-benefit-title { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.join-benefit-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* Requirements + Form */
.join-apply { padding: 52px 120px; background: var(--bg-secondary); }
.join-apply-grid { display: grid; grid-template-columns: 340px 1fr; gap: 32px; align-items: start; }

/* Requirements sidebar */
.join-req-sidebar {
  background: var(--bg-primary); border: 1px solid var(--border); border-radius: 12px;
  padding: 28px; position: sticky; top: 80px;
}
.join-req-title { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.join-req-list { list-style: none; }
.join-req-list li {
  display: flex; align-items: flex-start; gap: 10px; padding: 10px 0;
  font-size: 13px; color: var(--text-secondary); line-height: 1.6;
  border-bottom: 1px solid var(--border-light);
}
.join-req-list li:last-child { border-bottom: none; }
.join-req-list .num {
  width: 22px; height: 22px; border-radius: 50%; background: var(--gold-light); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.join-req-note {
  margin-top: 20px; padding: 14px 16px; background: #FEF3C7; border-radius: 8px;
  font-size: 12px; color: #92400E; line-height: 1.7;
}

/* Application form */
.join-form-card {
  background: var(--bg-primary); border: 1px solid var(--border); border-radius: 12px; padding: 36px;
}
.join-form-section-title { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.join-form-section-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.join-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.join-form-group { margin-bottom: 16px; }
.join-form-label { font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; display: block; }
.join-form-label .required { color: #DC2626; }
.join-form-input {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 14px; color: var(--text-primary); background: var(--bg-secondary);
  transition: all 0.2s; box-sizing: border-box;
}
.join-form-input:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(201,150,47,0.1); }
.join-form-input::placeholder { color: var(--text-muted); }
.join-form-select {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 14px; color: var(--text-primary); background: var(--bg-secondary); cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
  box-sizing: border-box;
}
.join-form-select:focus { outline: none; border-color: var(--gold); }
.join-form-textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 14px; color: var(--text-primary); background: var(--bg-secondary);
  transition: all 0.2s; box-sizing: border-box; resize: vertical; min-height: 100px; font-family: inherit;
}
.join-form-textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(201,150,47,0.1); }

.join-form-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.join-form-tag-chip {
  padding: 6px 14px; border: 1px solid var(--border); border-radius: 20px;
  font-size: 12px; color: var(--text-secondary); cursor: pointer; transition: all 0.2s; user-select: none;
}
.join-form-tag-chip:hover { border-color: var(--gold-border); }
.join-form-tag-chip.selected { background: var(--gold-light); border-color: var(--gold); color: var(--gold); font-weight: 600; }

.join-form-upload {
  border: 2px dashed var(--border); border-radius: 10px; padding: 24px;
  text-align: center; cursor: pointer; transition: all 0.2s; background: var(--bg-secondary);
}
.join-form-upload:hover { border-color: var(--gold); background: var(--gold-light); }
.join-form-upload-icon { font-size: 28px; color: var(--text-muted); margin-bottom: 8px; }
.join-form-upload-text { font-size: 13px; color: var(--text-secondary); }
.join-form-upload-text strong { color: var(--gold); }

.join-form-agree {
  display: flex; align-items: flex-start; gap: 10px; padding: 16px 0;
  font-size: 12px; color: var(--text-muted); line-height: 1.6;
}
.join-form-agree input { width: 16px; height: 16px; accent-color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.join-form-agree a { color: var(--gold); text-decoration: none; }

.join-form-submit {
  width: 100%; padding: 16px; background: var(--gold); color: #fff; border: none;
  border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer;
  transition: background 0.2s; box-shadow: 0 4px 12px rgba(201,150,47,0.3);
}
.join-form-submit:hover { background: var(--gold-hover); }

/* Process timeline */
.join-process { padding: 52px 120px; background: var(--bg-primary); }
.join-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.join-process-card {
  text-align: center; padding: 28px 20px; border: 1px solid var(--border); border-radius: 12px;
  position: relative;
}
.join-process-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700;
  margin: 0 auto 16px;
}
.join-process-title { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.join-process-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.join-process-time {
  display: inline-block; margin-top: 10px; padding: 3px 10px; background: var(--gold-light);
  border-radius: 4px; font-size: 11px; color: var(--gold); font-weight: 600;
}
