* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--bg-core);
  color: var(--text-main);
  min-height: 100vh;
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
  padding: 32px var(--page-gut);
  max-width: var(--page-max);   /* 同上,统一到全站版心 */
  margin: 0 auto;
  width: 100%;
}

.content-header {
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.header-title {
  flex: 1;
}

.page-kicker {
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: calc(11px * var(--sv-font-scale, 1));
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.header-title h1 {
  font-size: calc(36px * var(--sv-font-scale, 1));
  font-weight: 850;
  line-height: 1.1;
  margin-bottom: 12px;
}

.header-title p {
  color: var(--text-secondary);
  font-size: calc(15px * var(--sv-font-scale, 1));
  line-height: 1.7;
}

.header-stats {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
}

.stat-label {
  font-size: calc(11px * var(--sv-font-scale, 1));
  color: var(--text-muted);
  font-weight: 900;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: calc(28px * var(--sv-font-scale, 1));
  font-weight: 900;
  font-family: var(--font-mono);
  color: var(--accent-cyan);
}

.content-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.filter-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 16px;
  font-size: calc(12px * var(--sv-font-scale, 1));
  font-weight: 850;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-mono);
}

.filter-tab:hover {
  color: var(--text-main);
}

.filter-tab.active {
  background: var(--text-main);
  border-color: var(--text-main);
  color: var(--bg-core);
}

.filter-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.symbol-filter {
  padding: 10px 36px 10px 16px;
  font-size: calc(12px * var(--sv-font-scale, 1));
  font-weight: 850;
  color: var(--text-main);
  background: var(--bg-tertiary);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-mono);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%237d8ba4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.refresh-btn {
  padding: 10px 16px;
  font-size: calc(12px * var(--sv-font-scale, 1));
  font-weight: 850;
  color: var(--text-main);
  background: var(--accent-soft);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.refresh-btn:hover {
  background: var(--accent-soft);
}

.news-container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
}
/* 大屏:侧栏(日历/财经日程)跟着长,主列不再一个人吃掉全部余量。
   放宽版心后主列曾到 1424px,一条快讯的正文横跨 1226px —— 一行长到眼睛扫不回行首,
   而右边的日程栏还是那 320px 挤着。信息密度该一起提,不是把一列拉长。 */
@media (min-width: 1600px) { .news-container { grid-template-columns: minmax(0, 1fr) 360px; gap: 28px; } }
@media (min-width: 1920px) { .news-container { grid-template-columns: minmax(0, 1fr) 400px; gap: 32px; } }
@media (min-width: 2400px) { .news-container { grid-template-columns: minmax(0, 1fr) 440px; gap: 32px; } }


.timeline {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 24px 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.timeline-item:hover {
  border-color: var(--line-strong);
  background: var(--bg-tertiary);
}

.timeline-item.important {
  border-color: rgba(246, 70, 93, 0.45);
  background: linear-gradient(135deg, rgba(246, 70, 93, 0.10), var(--bg-card));
}
.timeline-item.important .content-title { color: #f6465d; }

.timeline-time {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
  padding-top: 4px;
}

.time-main {
  font-size: calc(16px * var(--sv-font-scale, 1));
  font-weight: 900;
  font-family: var(--font-mono);
  color: var(--accent-cyan);
}

.time-sub {
  font-size: calc(11px * var(--sv-font-scale, 1));
  color: var(--text-muted);
  font-weight: 750;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--line-soft);
  margin-top: 10px;
  position: relative;
}

.timeline-dot::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 8px);
  background: var(--line-soft);
}

.timeline-item:last-child .timeline-dot::after {
  display: none;
}

.timeline-dot.important {
  background: var(--accent-cyan);
  box-shadow: 0 0 12px var(--accent-cyan);
}

.timeline-dot.warning {
  background: var(--warn-amber);
  box-shadow: 0 0 12px var(--warn-soft);
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-content .content-header {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.content-type {
  padding: 4px 10px;
  font-size: calc(11px * var(--sv-font-scale, 1));
  font-weight: 900;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-mono);
  background: var(--bg-tertiary);
  border: 1px solid var(--line-soft);
  color: var(--text-secondary);
}

.content-type.important {
  color: #fff;
  border-color: #f6465d;
  background: #f6465d;
}

.content-type.largeorder {
  color: var(--accent-mint);
  border-color: rgba(46,189,133,0.34);
  background: var(--up-soft);
}

.content-type.liquidation {
  color: var(--down-red);
  border-color: rgba(246,70,93,0.34);
  background: var(--down-soft);
}

.content-type.orderbook {
  color: var(--accent-violet);
  border-color: var(--ice-soft);
  background: var(--ice-soft);
}

.content-type.macro {
  color: var(--warn-amber);
  border-color: var(--warn-soft);
  background: var(--warn-soft);
}

.content-type.project {
  color: var(--accent-ice);
  border-color: rgba(110,168,254,0.34);
  background: var(--ice-soft);
}

.content-type.news {
  color: var(--text-secondary);
}

.content-symbol {
  padding: 4px 10px;
  font-size: calc(11px * var(--sv-font-scale, 1));
  font-weight: 900;
  border-radius: var(--radius-sm);
  background: var(--bg-tertiary);
  border: 1px solid var(--line-soft);
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.content-title {
  font-size: calc(16px * var(--sv-font-scale, 1));
  font-weight: 850;
  line-height: 1.4;
}

.content-body {
  font-size: calc(14px * var(--sv-font-scale, 1));
  color: var(--text-secondary);
  line-height: 1.7;
}

.content-body p {
  margin: 0;
}

.order-info {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
}

.info-row {
  display: flex;
  justify-content: space-between;
  font-size: calc(13px * var(--sv-font-scale, 1));
}

.info-row span:first-child {
  color: var(--text-muted);
}

.info-row .up {
  color: var(--up-green);
  font-weight: 850;
  font-family: var(--font-mono);
}

.liquidation-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.liq-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
}

.liq-exchange {
  font-size: calc(13px * var(--sv-font-scale, 1));
  font-weight: 750;
}

.liq-amount {
  font-size: calc(14px * var(--sv-font-scale, 1));
  font-weight: 900;
  font-family: var(--font-mono);
}

.liq-amount.up {
  color: var(--up-green);
}

.liq-amount.down {
  color: var(--down-red);
}

.content-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.action-btn {
  padding: 8px 14px;
  font-size: calc(12px * var(--sv-font-scale, 1));
  font-weight: 850;
  color: var(--text-main);
  background: var(--accent-soft);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
}

.action-btn:hover {
  background: var(--accent-soft);
}

.action-btn.secondary {
  background: transparent;
  border-color: var(--line-soft);
  color: var(--text-secondary);
}

.action-btn.secondary:hover {
  border-color: var(--line-strong);
  color: var(--text-main);
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.card-title {
  padding: 16px 20px;
  font-size: calc(11px * var(--sv-font-scale, 1));
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-mono);
}

.event-list {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-item {
  padding: 14px 16px;
  background: var(--bg-tertiary);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
}

.event-item.upcoming {
  border-color: var(--line-strong);
}

.event-date {
  font-size: calc(11px * var(--sv-font-scale, 1));
  color: var(--text-muted);
  font-weight: 750;
  font-family: var(--font-mono);
  margin-bottom: 6px;
}

.event-name {
  font-size: calc(14px * var(--sv-font-scale, 1));
  font-weight: 750;
  margin-bottom: 6px;
}

/* 预期/前值:附在事件名下,次要信息不抢主行 */
.event-fc {
  display: block;
  margin-top: 3px;
  font-size: calc(11px * var(--sv-font-scale, 1));
  font-weight: 500;
  font-family: var(--font-mono);
  color: var(--text-muted, #8a8f9c);
}

.event-impact {
  font-size: calc(11px * var(--sv-font-scale, 1));
  font-weight: 900;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-impact.high {
  color: var(--down-red);
}

.event-impact.medium {
  color: var(--warn-amber);
}

.event-impact.low {
  color: var(--up-green);
}

/* 事件类型徽标:宏观 / 币圈(糖哥 2026-07-27:日历合并两源需一眼区分来源) */
.event-tag {
  display: inline-block;
  margin-right: 6px;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: calc(10px * var(--sv-font-scale, 1));
  font-weight: 800;
  vertical-align: middle;
  letter-spacing: 0.3px;
}
.event-tag.macro {
  color: var(--text-muted, #9aa0ad);
  background: var(--bg-tertiary, rgba(255, 255, 255, 0.06));
  border: 1px solid var(--line-soft);
}
.event-tag.crypto {
  color: #f0b90b;
  background: rgba(240, 185, 11, 0.12);
  border: 1px solid rgba(240, 185, 11, 0.35);
}
.event-coin {
  color: var(--text-primary, #e8eaed);
  font-weight: 900;
}
.event-impact.crypto {
  color: #e064c7;
  text-transform: none;
}
/* 币圈事件源待配置:管理员提示,低调虚线,不抢用户注意、不造假 */
.event-hint {
  border-style: dashed !important;
  opacity: 0.72;
}
.event-hint .event-name {
  font-size: calc(12px * var(--sv-font-scale, 1));
  font-weight: 500;
  color: var(--text-muted, #8a8f9c);
  margin-bottom: 0;
}

/* ===== 事件日历(AICoin 式紧凑版,糖哥 2026-07-27:排版参考 AICoin/TV 成熟案例,力争更优)===== */
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-bottom: 1px solid var(--line-soft);
}
.cal-title { font-size: calc(13px * var(--sv-font-scale, 1)); font-weight: 800; color: var(--text-primary, #e8eaed); }
.cal-only { display: inline-flex; align-items: center; gap: 5px; font-size: calc(11px * var(--sv-font-scale, 1)); color: var(--text-muted); cursor: pointer; user-select: none; }
.cal-only input { width: 13px; height: 13px; accent-color: var(--down-red); cursor: pointer; margin: 0; }

.cal-week { padding: 8px 10px 4px; }
.cal-week-head, .cal-week-days { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal-wd { text-align: center; font-size: calc(10px * var(--sv-font-scale, 1)); color: var(--text-muted); padding-bottom: 4px; }
.cal-day {
  position: relative; display: flex; flex-direction: column; align-items: center;
  padding: 3px 0 9px; background: none; border: 0; cursor: pointer; border-radius: 8px;
}
.cal-day:hover { background: var(--line-soft); }
.cal-dnum {
  width: 24px; height: 24px; line-height: 24px; text-align: center; border-radius: 50%;
  font-size: calc(12px * var(--sv-font-scale, 1)); font-weight: 700; color: var(--text-secondary);
}
.cal-day.today .cal-dnum { background: var(--accent); color: var(--accent-contrast); }
.cal-day.sel .cal-dnum { box-shadow: 0 0 0 1.5px var(--down-red) inset; color: var(--text-primary, #e8eaed); }
.cal-day.past:not(.today) .cal-dnum { color: var(--text-muted); opacity: 0.65; }
.cal-dot { position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--text-muted); }
.cal-dot.imp { background: var(--down-red); }

.cal-ranges { display: flex; gap: 6px; padding: 4px 12px 10px; }
.cal-range {
  padding: 4px 12px; font-size: calc(12px * var(--sv-font-scale, 1)); font-weight: 600;
  color: var(--text-secondary); background: var(--bg-tertiary); border: 1px solid var(--line-soft);
  border-radius: 999px; cursor: pointer;
}
.cal-range:hover { border-color: var(--line-strong); }
.cal-range.on { background: var(--accent); color: var(--accent-contrast); border-color: var(--accent); }

.cal-list { padding: 2px 0 6px; gap: 0; }
.cal-row { padding: 9px 14px; border-top: 1px solid var(--line-soft); }
.cal-row:first-child { border-top: 0; }
.cal-row-top { display: flex; align-items: center; gap: 8px; margin-bottom: 3px; }
.cal-mmdd { font-size: calc(11px * var(--sv-font-scale, 1)); font-weight: 800; font-family: var(--font-mono); color: var(--text-secondary); }
.cal-rel { font-size: calc(11px * var(--sv-font-scale, 1)); color: var(--text-muted); }
.cal-time { font-size: calc(11px * var(--sv-font-scale, 1)); color: var(--text-muted); font-family: var(--font-mono); }
.cal-bell { margin-left: auto; font-size: calc(12px * var(--sv-font-scale, 1)); line-height: 1; background: none; border: 0; cursor: pointer; opacity: 0.5; padding: 2px; border-radius: 4px; transition: opacity .15s, transform .15s; }
.cal-bell:hover { opacity: 1; }
.cal-bell:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; opacity: 1; }
/* 已订阅:亮起来并轻微放大 —— 订没订上必须一眼看出来,否则用户会反复点 */
.cal-bell.on { opacity: 1; transform: scale(1.12); filter: drop-shadow(0 0 3px rgba(240, 185, 11, .55)); }
.cal-row-title { font-size: calc(13px * var(--sv-font-scale, 1)); font-weight: 700; color: var(--text-primary, #e8eaed); line-height: 1.35; }
.cal-row-title.imp { color: var(--down-red); }
.cal-row-meta { margin-top: 2px; font-size: calc(11px * var(--sv-font-scale, 1)); color: var(--text-muted); font-family: var(--font-mono); }
.cal-empty { padding: 14px; text-align: center; font-size: calc(12px * var(--sv-font-scale, 1)); color: var(--text-muted); }
.cal-hint { border-top: 1px dashed var(--line-strong); text-align: left; opacity: 0.85; }

.hot-list {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hot-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.hot-rank {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(12px * var(--sv-font-scale, 1));
  font-weight: 900;
  font-family: var(--font-mono);
  background: var(--accent-soft);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--accent-cyan);
}

.hot-item:nth-child(1) .hot-rank {
  background: var(--warn-soft);
  border-color: var(--warn-soft);
  color: var(--warn-amber);
}

.hot-title {
  flex: 1;
  font-size: calc(13px * var(--sv-font-scale, 1));
  font-weight: 750;
}

.hot-count {
  font-size: calc(11px * var(--sv-font-scale, 1));
  color: var(--text-muted);
  font-weight: 750;
  font-family: var(--font-mono);
}

.reminder-list {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reminder-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-tertiary);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
}

.reminder-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--bg-core);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
}

.reminder-icon svg { display: block; }

.reminder-info {
  flex: 1;
}

.reminder-name {
  font-size: calc(13px * var(--sv-font-scale, 1));
  font-weight: 750;
}

.reminder-status {
  font-size: calc(11px * var(--sv-font-scale, 1));
  color: var(--text-muted);
  margin-top: 2px;
}

.view-all-btn {
  display: block;
  margin: 0 16px 16px;
  padding: 10px 16px;
  text-align: center;
  font-size: calc(12px * var(--sv-font-scale, 1));
  font-weight: 850;
  color: var(--accent-cyan);
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.view-all-btn:hover {
  background: var(--accent-soft);
}

@media (max-width: 1024px) {
  .news-container {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .main-content {
    padding: 20px 16px;
  }
  
  .content-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .header-stats {
    width: 100%;
    justify-content: space-between;
  }
  
  .stat-item {
    flex: 1;
    align-items: center;
  }
  
  .filter-panel {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .filter-tabs {
    width: 100%;
    overflow-x: auto;
  }
  
  .timeline-item {
    grid-template-columns: 80px 16px 1fr;
    gap: 12px;
    padding: 16px;
  }
  
  .time-main {
    font-size: calc(14px * var(--sv-font-scale, 1));
  }
}

/* ---- 快讯分享弹窗(功能对齐原项目) ---- */
.share-modal-mask {
  position: fixed; inset: 0; z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  background: transparent; /* 遮罩全透明(糖哥 2026-08-10) */
}
.share-modal {
  position: relative;
  width: min(440px, calc(100vw - 40px));
  border-radius: 14px;
  background: var(--bg-elevated, #14181f);
  border: 1px solid var(--line-strong, rgba(255,255,255,0.09));
  padding: 22px;
}
.share-modal-close {
  position: absolute; top: 10px; right: 12px;
  background: none; border: none; cursor: pointer;
  color: var(--text-muted, #8a8f9c); font-size: calc(20px * var(--sv-font-scale, 1)); line-height: 1;
}
.share-card { display: flex; flex-direction: column; gap: 10px; }
.share-brand { display: flex; align-items: center; gap: 8px; color: var(--text-main, #f4f5f7); font-size: calc(13px * var(--sv-font-scale, 1)); }
/* 弹窗头 logo:用网站真实品牌图(糖哥 2026-08-22,替换原文字「SV」假拼) */
.share-brand-logo {
  width: 26px; height: 26px; border-radius: 7px; object-fit: cover; display: block; flex: none;
}
.share-news-meta { display: flex; justify-content: space-between; gap: 10px; font-size: calc(11px * var(--sv-font-scale, 1)); color: var(--text-muted, #8a8f9c); }
.share-card h3 { margin: 0; font-size: calc(15px * var(--sv-font-scale, 1)); line-height: 1.5; color: var(--text-main, #f4f5f7); }
.share-card p { margin: 0; font-size: calc(12.5px * var(--sv-font-scale, 1)); line-height: 1.6; color: var(--text-muted, #8a8f9c); }
/* 分享弹窗(参考 AiCoin):海报预览 + 打开即自动复制 + 一排圆形操作栏。糖哥 2026-08-22 */
.share-modal-poster { width: min(400px, calc(100vw - 32px)); padding: 14px; }
.share-poster-wrap { border-radius: 12px; overflow: hidden; display: flex; }
.share-poster-img { width: 100%; height: auto; display: block; border-radius: 12px; }
.share-poster-skeleton {
  flex: 1; min-height: 300px; border-radius: 12px;
  background: rgba(255,255,255,0.05); animation: sharePosterPulse 1.2s ease-in-out infinite;
}
@keyframes sharePosterPulse { 0%,100% { opacity: .5; } 50% { opacity: .9; } }
.share-dialog-status {
  min-height: 16px; margin: 10px 0 2px; text-align: center;
  font-size: calc(12px * var(--sv-font-scale, 1)); color: var(--text-secondary, #b0b4bd);
}
.share-actions-round {
  display: flex; gap: 2px; margin-top: 6px; padding: 8px 4px;
  border-radius: 16px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-soft, rgba(255,255,255,0.06));
}
.share-actions-round button {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 7px;
  padding: 6px 2px; background: none; border: none; cursor: pointer;
}
.share-actions-round .sa-ic {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); color: var(--text-main, #f4f5f7);
  transition: background var(--transition-fast, .15s);
}
.share-actions-round button:hover .sa-ic { background: rgba(255,255,255,0.13); }
.share-actions-round .sa-tx { font-size: calc(12px * var(--sv-font-scale, 1)); color: var(--text-muted, #8a8f9c); }
.timeline-empty { padding: 40px 0; text-align: center; color: var(--text-muted, #8a8f9c); font-size: calc(13px * var(--sv-font-scale, 1)); }


/* 顶部统计卡可点筛选 */
.stat-item.stat-clickable { cursor: pointer; border-radius: 10px; padding: 4px 10px; transition: background .15s; }
.stat-item.stat-clickable:hover { background: rgba(255,255,255,0.06); }
.stat-item.stat-clickable.active { background: rgba(240,185,11,0.12); outline: 1px solid rgba(240,185,11,0.4); }
.timeline-dot.important { background: #f6465d; box-shadow: 0 0 0 4px rgba(246,70,93,0.18); }
.timeline-item.shared-focus .timeline-content {
  border-color: var(--ice, #6ea8fe);
  box-shadow: 0 0 0 2px var(--ice-soft, rgba(110,168,254,0.12));
}


/* 快讯子筛选行 + 利好利空标签 + 主力追踪(v2.7.6,对齐旧版精选/主力/利好利空) */
.filter-subrow { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.sub-chip { border: 1px solid var(--line-strong, rgba(148,163,184,.3)); background: transparent; color: var(--text-secondary, #b0b4bd); font-size: calc(12px * var(--sv-font-scale, 1)); padding: 4px 12px; border-radius: 999px; cursor: pointer; transition: all .15s ease; }
.sub-chip:hover { color: var(--text-main, #f4f5f7); border-color: var(--accent-line, rgba(255,255,255,.16)); }
.sub-chip.active { color: var(--accent-contrast, #1c2530); background: var(--accent, #f4f5f7); border-color: transparent; font-weight: 800; }
.content-dir { font-size: calc(10px * var(--sv-font-scale, 1)); font-weight: 900; padding: 1px 7px; border-radius: 999px; white-space: nowrap; }
.content-dir.bullish { color: var(--up, #2ebd85); background: var(--up-soft, rgba(46,189,133,.12)); }
.content-dir.bearish { color: var(--down, #f6465d); background: var(--down-soft, rgba(246,70,93,.12)); }
.content-dir.featured { color: var(--warn, #f0b90b); background: var(--warn-soft, rgba(240,185,11,.12)); }

/* 主力买卖追踪系列标 / 标签胶囊 / 利好利空计数 / 事件聚合卡 */
.content-series { font-size: calc(10px * var(--sv-font-scale, 1)); font-weight: 900; color: var(--warn, #f0b90b); border: 1px solid var(--warn-soft, rgba(240,185,11,.3)); background: var(--warn-soft, rgba(240,185,11,.1)); padding: 1px 7px; border-radius: 4px; white-space: nowrap; }
.content-tags { display: flex; gap: 6px; flex-wrap: wrap; margin: 8px 0 2px; }
.news-tag { font-size: calc(10px * var(--sv-font-scale, 1)); color: var(--text-muted, #8a8f9c); border: 1px solid var(--line-soft, rgba(148,163,184,.18)); padding: 1px 8px; border-radius: 999px; }
.news-votes { display: inline-flex; gap: 10px; margin-left: auto; align-items: center; }
.news-votes em { font-style: normal; font-size: calc(11px * var(--sv-font-scale, 1)); font-weight: 800; }
.news-votes .v-bull { color: var(--up, #2ebd85); }
.news-votes .v-bear { color: var(--down, #f6465d); }
#newsEventCards { display: flex; gap: 10px; overflow-x: auto; padding: 10px 2px; scrollbar-width: thin; }
.news-event-card { flex: 0 0 auto; display: flex; flex-direction: column; gap: 3px; align-items: flex-start; border: 1px solid var(--line-strong, rgba(148,163,184,.25)); background: color-mix(in srgb, var(--bg-elevated, #16181f) 72%, transparent); border-radius: 10px; padding: 8px 12px; cursor: pointer; min-width: 132px; text-align: left; }
.news-event-card:hover { border-color: var(--accent-line, rgba(255,255,255,.2)); }
.news-event-card.active { border-color: var(--warn, #f0b90b); box-shadow: 0 0 0 1px var(--warn-soft, rgba(240,185,11,.3)); }
.news-event-card .nec-label { font-size: calc(12px * var(--sv-font-scale, 1)); font-weight: 800; color: var(--text-main, #f4f5f7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 168px; }
.news-event-card .nec-count { font-size: calc(10px * var(--sv-font-scale, 1)); color: var(--text-muted, #8a8f9c); }

/* ============ 要闻/快讯 双栏 tab + 决策级别徽章(复刻老站展示形式) ============ */
.news-section-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.news-section-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-elevated, rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line-soft, rgba(255, 255, 255, 0.06));
  border-radius: var(--radius-md);
}
.news-section-tab {
  padding: 8px 22px;
  font-size: calc(13px * var(--sv-font-scale, 1));
  font-weight: 850;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  background: transparent;
  border: none;
  border-radius: calc(var(--radius-md) - 3px);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.news-section-tab:hover { color: var(--text-main); }
.news-section-tab.active {
  background: var(--text-main);
  color: var(--bg-core);
}
.news-section-tip {
  font-size: calc(11px * var(--sv-font-scale, 1));
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted, #8a8f9c);
  font-family: var(--font-mono);
}

/* 决策级别 S/A/B:只出现在主力/巨鲸/清算等资金决策类条目 */
.decision-level {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: calc(12px * var(--sv-font-scale, 1));
  font-weight: 900;
  font-family: var(--font-mono);
  border-radius: 5px;
  color: #fff;
  flex: none;
}
.decision-level.lv-S { background: var(--down-red, #f6465d); box-shadow: 0 0 10px rgba(246, 70, 93, 0.45); }
.decision-level.lv-A { background: var(--warn, #f0b90b); color: #1a1a1a; }
.decision-level.lv-B { background: var(--line-strong, rgba(255, 255, 255, 0.16)); color: var(--text-secondary); }

/* 决策标签:主力买入/巨鲸转入…,方向着色 */
.decision-label {
  padding: 3px 9px;
  font-size: calc(11px * var(--sv-font-scale, 1));
  font-weight: 850;
  font-family: var(--font-mono);
  border-radius: var(--radius-sm, 6px);
  color: var(--text-main);
  background: var(--accent-soft, rgba(255, 255, 255, 0.06));
}
.decision-label.bullish { color: var(--up-green, #2ebd85); background: var(--up-soft, rgba(46, 189, 133, 0.12)); }
.decision-label.bearish { color: var(--down-red, #f6465d); background: var(--down-soft, rgba(246, 70, 93, 0.12)); }
.timeline-item.decision .timeline-dot { background: var(--warn, #f0b90b); box-shadow: 0 0 10px rgba(240, 185, 11, 0.5); }

/* ---- 事件日历:月/周 视图切换(糖哥 2026-08-04,对标 AICoin) ---- */
/* 标题右侧紧跟切换胶囊,「只看重要」仍靠右 → 标题与切换成组、不被拉开 */
.cal-head { gap: 8px; }
.cal-head .cal-only { margin-left: auto; }
.cal-view-sw {
  display: inline-flex; align-items: center; gap: 2px; padding: 2px;
  border-radius: 7px; background: var(--line-soft);
}
.cal-vw {
  padding: 2px 9px; font-size: calc(11px * var(--sv-font-scale, 1)); line-height: 1.5; cursor: pointer;
  border: none; border-radius: 5px; background: transparent;
  color: var(--text-muted); transition: background .15s, color .15s;
}
.cal-vw:hover { color: var(--text-primary, #e8eaed); }
.cal-vw.on {
  background: var(--bg-elevated, #16181f); color: var(--text-primary, #e8eaed); font-weight: 700;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .18);
}
/* 月视图网格:与周视图同列宽,行高略压缩以免侧栏过长 */
.cal-month-days { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal-month-days .cal-day { padding: 3px 0; }
.cal-month-days .cal-dnum { width: 22px; height: 22px; font-size: calc(11px * var(--sv-font-scale, 1)); }
.cal-month-days .cal-dot { bottom: 1px; width: 4px; height: 4px; }
/* 非本月的日期淡显(AICoin 同款),仍可点选 */
.cal-day.out .cal-dnum { opacity: .32; }
.cal-day.out:hover .cal-dnum { opacity: .6; }

/* 快讯正文行宽上限(糖哥 2026-08-24 自适应分辨率)。
   ⚠️必须写在 .timeline-item 主定义之后 —— 媒体查询不加特异性,写在前面会被后面的主定义盖掉
   (第一版就放在了前面,实测行宽纹丝不动)。 */
@media (min-width: 1600px) { .timeline-item { grid-template-columns: 100px 24px minmax(0, 1040px); } }

/* 页头这行说明也给阅读上限(同 .page-description 的处理) */
.content-header .header-title p { max-width: min(100%, 860px); }
