
    :root {
      --bg: #f4f6f8;
      --paper: #ffffff;
      --paper-soft: #fafbfc;
      --line: #e5e9ee;
      --line-strong: #d9dfe6;
      --ink: #182230;
      --muted: #697586;
      --subtle: #98a2b3;
      --up: #d83a3a;
      --up-soft: #fff1f0;
      --up-mid: #f7d4d1;
      --down: #0b8f6a;
      --down-soft: #eaf8f3;
      --down-mid: #c7eadf;
      --amber: #b7791f;
      --amber-soft: #fff8e8;
      --blue: #315d9b;
      --blue-soft: #edf4ff;
      --violet: #6e57ad;
      --violet-soft: #f3f0fb;
      --radius-lg: 18px;
      --radius-md: 13px;
      --radius-sm: 9px;
      --shadow: 0 8px 28px rgba(35, 48, 67, .06);
      --shadow-hover: 0 14px 34px rgba(35, 48, 67, .10);
      --sidebar: 228px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; background: var(--bg); }
    body {
      margin: 0;
      color: var(--ink);
      background:
        radial-gradient(circle at 85% 2%, rgba(216, 58, 58, .045), transparent 23rem),
        var(--bg);
      font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
        "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      font-size: 14px;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
    }

    a { color: inherit; text-decoration: none; }
    button { font: inherit; }
    svg { display: block; }
    .up { color: var(--up) !important; }
    .down { color: var(--down) !important; }
    .muted { color: var(--muted); }
    .mono { font-variant-numeric: tabular-nums; }

    .app-shell { min-height: 100vh; }

    .sidebar {
      position: fixed;
      inset: 0 auto 0 0;
      z-index: 30;
      width: var(--sidebar);
      padding: 24px 16px 18px;
      border-right: 1px solid var(--line);
      background: rgba(255, 255, 255, .94);
      backdrop-filter: blur(14px);
      display: flex;
      flex-direction: column;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 11px;
      padding: 2px 8px 22px;
      border-bottom: 1px solid var(--line);
    }
    .brand-mark {
      position: relative;
      width: 36px;
      height: 36px;
      border: 1px solid #efc3c0;
      border-radius: 11px;
      background: var(--up-soft);
      overflow: hidden;
    }
    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      bottom: 8px;
      width: 4px;
      border-radius: 4px 4px 1px 1px;
      background: var(--up);
    }
    .brand-mark::before { left: 9px; height: 10px; box-shadow: 8px -6px 0 var(--up), 16px -14px 0 var(--up); }
    .brand-title { font-size: 15px; font-weight: 760; letter-spacing: .02em; }
    .brand-sub { margin-top: 1px; color: var(--subtle); font-size: 10px; letter-spacing: .16em; }

    .nav-label {
      margin: 21px 10px 8px;
      color: var(--subtle);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .14em;
    }
    .nav { display: grid; gap: 3px; }
    .nav-link {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 39px;
      padding: 0 10px;
      border-radius: 9px;
      color: #526071;
      font-size: 13px;
      transition: .18s ease;
    }
    .nav-link:hover { color: var(--ink); background: #f5f7f9; }
    .nav-link.active { color: var(--up); background: var(--up-soft); font-weight: 650; }
    .nav-no { width: 23px; color: var(--subtle); font-size: 10px; font-variant-numeric: tabular-nums; }
    .nav-link.active .nav-no { color: #d56a64; }
    .nav-dot { margin-left: auto; width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: 0; }
    .nav-link.active .nav-dot { opacity: 1; }

    .main { margin-left: var(--sidebar); min-width: 0; }
    .topbar {
      position: sticky;
      top: 0;
      z-index: 20;
      height: 70px;
      padding: 0 28px;
      border-bottom: 1px solid rgba(222, 227, 233, .88);
      background: rgba(248, 249, 251, .88);
      backdrop-filter: blur(14px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .page-title { font-size: 17px; font-weight: 750; letter-spacing: -.01em; }
    .page-meta { margin-top: 2px; color: var(--muted); font-size: 11px; }
    .top-actions { display: flex; align-items: center; gap: 9px; }
    .segmented {
      display: flex;
      padding: 3px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: #eef1f4;
    }
    .segment {
      border: 0;
      padding: 7px 12px;
      border-radius: 7px;
      color: var(--muted);
      background: transparent;
      cursor: pointer;
      font-size: 12px;
    }
    .segment.active { color: var(--ink); background: #fff; box-shadow: 0 1px 5px rgba(36, 48, 65, .1); font-weight: 650; }

    .content { max-width: 1510px; margin: 0 auto; padding: 26px 28px 52px; }

    .card {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--paper);
      box-shadow: var(--shadow);
    }
    .card:hover { border-color: #dde2e8; }
    .section { scroll-margin-top: 88px; margin-top: 18px; }
    .section-head {
      margin: 30px 2px 12px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
    }
    .section-kicker { margin-bottom: 4px; color: var(--up); font-size: 10px; font-weight: 750; letter-spacing: .13em; }
    .section-title { margin: 0; font-size: 19px; line-height: 1.25; letter-spacing: -.02em; }
    .section-note { color: var(--muted); font-size: 11px; }
    .card-head { padding: 20px 20px 14px; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
    .card-title { margin: 0; font-size: 15px; font-weight: 730; }
    .card-subtitle { margin-top: 3px; color: var(--muted); font-size: 11px; }
    .info-tip {
      width: 20px; height: 20px; border: 1px solid var(--line); border-radius: 50%; color: var(--subtle);
      display: inline-grid; place-items: center; font-size: 11px; cursor: help;
    }

    .overview {
      padding: 22px;
      background: linear-gradient(118deg, #fff 72%, #fff6f5 100%);
    }
    .overview-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
    .date-line { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
    .date-main { font-size: 17px; font-weight: 740; }
    .status-pill,
    .tag,
    .mini-tag {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      border-radius: 99px;
      white-space: nowrap;
    }
    .status-pill { gap: 6px; padding: 5px 9px; color: var(--up); background: var(--up-soft); font-size: 11px; font-weight: 650; }
    .status-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
    .overview-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) 1.2fr 1.35fr; gap: 0; padding-top: 18px; }
    .market-item { min-width: 0; padding: 2px 18px; border-right: 1px solid var(--line); }
    .market-item:first-child { padding-left: 0; }
    .market-item:last-child { padding-right: 0; border-right: 0; }
    .market-label { color: var(--muted); font-size: 11px; }
    .market-value { margin-top: 5px; font-size: 21px; font-weight: 760; letter-spacing: -.025em; font-variant-numeric: tabular-nums; }
    .market-change { margin-left: 6px; font-size: 12px; font-weight: 650; }
    .market-detail { margin-top: 4px; color: var(--muted); font-size: 10px; }
    .breadth-inline { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
    .split-line { flex: 1; height: 5px; min-width: 70px; border-radius: 99px; overflow: hidden; background: var(--down); display: flex; }
    .split-up { width: 53%; background: var(--up); }

    .sentiment-layout { display: grid; grid-template-columns: minmax(330px, .92fr) minmax(0, 1.6fr); gap: 18px; }
    .thermo-card { padding: 22px; display: grid; grid-template-columns: 220px 1fr; gap: 16px; align-items: center; min-height: 272px; }
    .gauge-wrap { position: relative; width: 210px; height: 142px; }
    .gauge-copy { position: absolute; inset: 59px 0 auto; text-align: center; }
    .gauge-value { font-size: 43px; font-weight: 820; letter-spacing: -.05em; line-height: 1; color: #c8872f; }
    .gauge-unit { color: var(--muted); font-size: 11px; }
    .gauge-label { margin-top: 7px; color: #b7791f; font-size: 13px; font-weight: 720; }
    .sentiment-brief h3 { margin: 0; font-size: 21px; letter-spacing: -.03em; }
    .sentiment-brief p { margin: 8px 0 14px; color: var(--muted); font-size: 12px; }
    .tag-cloud { display: flex; gap: 7px; flex-wrap: wrap; }
    .tag { padding: 6px 9px; color: #6d5230; background: #f8f1e7; font-size: 10px; }
    .tag.red { color: #a83b35; background: var(--up-soft); }
    .tag.blue { color: var(--blue); background: var(--blue-soft); }

    .metric-grid { padding: 16px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
    .metric {
      min-width: 0;
      padding: 15px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: var(--paper-soft);
    }
    .metric-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
    .metric-name { color: var(--muted); font-size: 11px; }
    .mini-tag { padding: 3px 7px; font-size: 9px; font-weight: 650; }
    .mini-tag.hot { color: var(--up); background: var(--up-soft); }
    .mini-tag.neutral { color: var(--blue); background: var(--blue-soft); }
    .mini-tag.cold { color: var(--down); background: var(--down-soft); }
    .metric-value { margin-top: 8px; font-size: 21px; font-weight: 770; letter-spacing: -.025em; }
    .metric-value small { margin-left: 5px; color: var(--muted); font-size: 10px; font-weight: 500; }
    .progress { height: 6px; margin-top: 11px; border-radius: 99px; background: #e9edf1; overflow: hidden; }
    .progress > span { display: block; height: 100%; border-radius: inherit; background: var(--up); }
    .progress.blue > span { background: var(--blue); }
    .progress.green > span { background: var(--down); }
    .metric-foot { margin-top: 7px; color: var(--subtle); font-size: 9px; }
    .metric-wide { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 12px 15px; }
    .metric-wide .metric-value { margin: 0; font-size: 14px; }

    .mainline-card { overflow: hidden; }
    .mainline-summary { margin: 0 20px 16px; padding: 12px 14px; border: 1px solid var(--up-mid); border-radius: 11px; background: var(--up-soft); color: #793a37; font-size: 12px; }
    .summary-key { color: var(--up); font-weight: 720; }
    .data-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
    .data-table th { padding: 10px 15px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); background: #fafbfc; font-size: 10px; font-weight: 650; text-align: left; letter-spacing: .02em; }
    .data-table td { padding: 14px 15px; border-bottom: 1px solid #edf0f3; font-size: 12px; vertical-align: middle; }
    .data-table tr:last-child td { border-bottom: 0; }
    .data-table tbody tr:hover { background: #fcfcfd; }
    .theme-name { font-size: 13px; font-weight: 720; }
    .theme-sub { margin-top: 2px; color: var(--subtle); font-size: 9px; }
    .classify { padding: 4px 8px; border-radius: 6px; font-size: 10px; font-weight: 650; }
    .classify.primary { color: var(--up); border: 1px solid #f0c6c3; background: var(--up-soft); }
    .classify.branch { color: var(--blue); border: 1px solid #ccdaf0; background: var(--blue-soft); }
    .classify.event { color: var(--amber); border: 1px solid #eed7ac; background: var(--amber-soft); }
    .classify.trap { color: var(--down); border: 1px solid #bee4d8; background: var(--down-soft); }
    .stars { color: #d69b2f; letter-spacing: 1px; font-size: 12px; }
    .flow { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; }
    .flow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

    .two-col { display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(340px, .78fr); gap: 18px; }
    .rank-list { padding: 0 18px 18px; }
    .rank-row { display: grid; grid-template-columns: 30px minmax(90px, .65fr) 70px 68px minmax(180px, 1.35fr); gap: 10px; align-items: center; min-height: 48px; border-bottom: 1px solid #edf0f3; }
    .rank-row:last-child { border-bottom: 0; }
    .rank-no { color: var(--subtle); font-size: 11px; font-variant-numeric: tabular-nums; }
    .rank-no.top { color: var(--up); font-weight: 800; }
    .rank-name { font-weight: 680; }
    .rank-change { font-weight: 720; font-variant-numeric: tabular-nums; }
    .limit-count { color: var(--muted); font-size: 11px; }
    .rank-logic { color: var(--muted); font-size: 10px; }
    .weak-list { padding: 0 18px 14px; }
    .weak-row { display: grid; grid-template-columns: 25px minmax(82px, .7fr) 62px minmax(120px, 1.3fr); gap: 9px; align-items: center; min-height: 45px; border-bottom: 1px solid #edf0f3; }
    .weak-row:last-child { border-bottom: 0; }

    .pyramid-card { padding-bottom: 20px; }
    .pyramid { padding: 4px 22px 4px; display: grid; place-items: center; gap: 8px; }
    .pyramid-tier { min-height: 47px; border: 1px solid #eed1cf; border-radius: 10px; background: #fff7f6; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 13px; }
    .pyramid-tier:nth-child(1) { width: 48%; background: #fce7e5; border-color: #eab7b3; }
    .pyramid-tier:nth-child(2) { width: 64%; }
    .pyramid-tier:nth-child(3) { width: 82%; background: #fffbfa; }
    .pyramid-tier:nth-child(4) { width: 100%; border-color: var(--line); background: #fafbfc; }
    .tier-level { color: var(--up); font-size: 11px; font-weight: 730; }
    .tier-stock { font-size: 11px; font-weight: 680; text-align: right; }
    .tier-stock small { display: block; color: var(--muted); font-size: 9px; font-weight: 500; }
    .stock-cloud { margin: 14px 22px 0; padding-top: 15px; border-top: 1px solid var(--line); }
    .stock-cloud-title { margin-bottom: 8px; color: var(--muted); font-size: 10px; }
    .stock-chips { display: flex; flex-wrap: wrap; gap: 7px; }
    .stock-chip { padding: 7px 9px; border: 1px solid var(--line); border-radius: 8px; background: #fff; font-size: 10px; }
    .stock-chip b { margin-right: 4px; color: var(--up); }

    .chart-card { min-height: 340px; }
    .chart-body { padding: 0 20px 20px; }
    .legend { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: 10px; }
    .legend-item { display: inline-flex; align-items: center; gap: 5px; }
    .legend-dot { width: 7px; height: 7px; border-radius: 2px; }
    .bars { height: 218px; margin-top: 15px; padding: 8px 4px 0 32px; border-bottom: 1px solid var(--line-strong); position: relative; display: flex; align-items: flex-end; justify-content: space-around; gap: 16px; }
    .bars::before, .bars::after { content: ""; position: absolute; left: 32px; right: 0; height: 1px; background: #eef1f4; }
    .bars::before { top: 32%; }
    .bars::after { top: 65%; }
    .y-mark { position: absolute; left: 0; color: var(--subtle); font-size: 8px; }
    .bar-col { z-index: 1; flex: 1; max-width: 74px; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 7px; }
    .bar-value { font-size: 9px; font-weight: 680; font-variant-numeric: tabular-nums; }
    .bar { width: min(42px, 72%); min-height: 5px; border-radius: 6px 6px 2px 2px; background: var(--up); }
    .bar.green { background: var(--down); }
    .bar-label { height: 28px; color: var(--muted); font-size: 9px; text-align: center; }
    .donut-layout { padding: 4px 22px 24px; display: grid; grid-template-columns: 190px 1fr; align-items: center; gap: 14px; }
    .donut { width: 180px; height: 180px; border-radius: 50%; background: conic-gradient(#d64b45 0 50%, #e88866 50% 63%, #d7a23f 63% 74%, #6088be 74% 82%, #c3cbd5 82% 100%); position: relative; }
    .donut::after { content: ""; position: absolute; inset: 35px; border-radius: 50%; background: #fff; box-shadow: inset 0 0 0 1px var(--line); }
    .donut-center { position: absolute; inset: 0; z-index: 2; display: grid; place-content: center; text-align: center; }
    .donut-center b { font-size: 24px; }
    .donut-center span { color: var(--muted); font-size: 9px; }
    .donut-list { display: grid; gap: 10px; }
    .donut-row { display: grid; grid-template-columns: 8px 1fr auto; align-items: center; gap: 8px; color: var(--muted); font-size: 10px; }
    .donut-row b { color: var(--ink); font-size: 11px; }

    .fund-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; padding: 0 18px 18px; }
    .fund-panel { border: 1px solid var(--line); border-radius: 13px; overflow: hidden; }
    .fund-panel-head { padding: 12px 13px; border-bottom: 1px solid var(--line); background: #fafbfc; display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 720; }
    .fund-icon { width: 25px; height: 25px; border-radius: 8px; display: grid; place-items: center; font-size: 12px; }
    .fund-icon.in { color: var(--up); background: var(--up-soft); }
    .fund-icon.out { color: var(--down); background: var(--down-soft); }
    .fund-icon.hot { color: var(--amber); background: var(--amber-soft); }
    .fund-list { padding: 5px 13px; }
    .fund-row { min-height: 48px; padding: 8px 0; border-bottom: 1px solid #edf0f3; display: flex; justify-content: space-between; gap: 12px; }
    .fund-row:last-child { border-bottom: 0; }
    .fund-name { font-size: 11px; font-weight: 690; }
    .fund-note { margin-top: 2px; color: var(--muted); font-size: 9px; }
    .fund-amount { white-space: nowrap; font-size: 10px; font-weight: 690; }
    .risk-strip { margin: 0 18px 18px; padding: 10px 12px; border: 1px solid #efddb7; border-radius: 9px; color: #835f22; background: var(--amber-soft); font-size: 10px; }

    .alert-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; padding: 0 18px 18px; }
    .alert-card { padding: 15px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
    .alert-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
    .alert-title { font-size: 12px; font-weight: 730; }
    .alert-level { padding: 3px 7px; border-radius: 99px; color: #a0631e; background: var(--amber-soft); font-size: 9px; font-weight: 650; }
    .alert-data { margin: 12px 0 5px; font-size: 18px; font-weight: 780; letter-spacing: -.02em; }
    .alert-copy { color: var(--muted); font-size: 10px; }
    .watch-list { margin: 0 18px 20px; padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: #fafbfc; }
    .watch-title { margin-bottom: 10px; font-size: 11px; font-weight: 720; }
    .watch-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 18px; }
    .watch-item { display: grid; grid-template-columns: 22px 1fr; gap: 8px; align-items: start; color: var(--muted); font-size: 10px; }
    .watch-no { width: 22px; height: 22px; border-radius: 7px; color: var(--blue); background: var(--blue-soft); display: grid; place-items: center; font-size: 9px; font-weight: 720; }
    .watch-item b { display: block; color: var(--ink); font-size: 11px; margin-bottom: 1px; }

    .overnight-card { padding: 18px; }
    .overnight-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
    .overnight-panel { min-height: 205px; padding: 17px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
    .overnight-panel:nth-child(1) { background: #fff9f8; border-color: #efcfcc; }
    .overnight-icon { width: 31px; height: 31px; margin-bottom: 14px; border-radius: 9px; color: var(--up); background: var(--up-soft); display: grid; place-items: center; }
    .overnight-label { color: var(--muted); font-size: 10px; }
    .overnight-main { margin: 4px 0 10px; font-size: 18px; font-weight: 770; letter-spacing: -.02em; }
    .forecast-range { margin-left: 6px; color: var(--up); font-size: 11px; font-weight: 650; }
    .bullet-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; }
    .bullet-list li { position: relative; padding-left: 12px; color: var(--muted); font-size: 10px; }
    .bullet-list li::before { content: ""; position: absolute; left: 0; top: .58em; width: 4px; height: 4px; border-radius: 50%; background: #aab3bf; }

    .footer {
      margin-top: 24px;
      padding: 18px 4px 0;
      border-top: 1px solid var(--line-strong);
      color: var(--subtle);
      font-size: 10px;
      display: flex;
      justify-content: space-between;
      gap: 18px;
    }
    .footer strong { color: var(--muted); font-weight: 650; }
    .footer-meta { white-space: nowrap; text-align: right; }

    .toast {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 50;
      padding: 11px 14px;
      border: 1px solid var(--line-strong);
      border-radius: 10px;
      color: var(--ink);
      background: #fff;
      box-shadow: var(--shadow-hover);
      font-size: 12px;
      opacity: 0;
      transform: translateY(8px);
      pointer-events: none;
      transition: .2s ease;
    }
    .toast.show { opacity: 1; transform: translateY(0); }

    @media (max-width: 1180px) {
      :root { --sidebar: 198px; }
      .overview-grid { grid-template-columns: repeat(3, 1fr); row-gap: 18px; }
      .market-item:nth-child(3) { border-right: 0; }
      .market-item:nth-child(4) { padding-left: 0; grid-column: span 1; }
      .market-item:nth-child(5) { grid-column: span 2; border-right: 0; }
      .sentiment-layout { grid-template-columns: 1fr; }
      .thermo-card { grid-template-columns: 260px 1fr; }
      .two-col { grid-template-columns: 1fr; }
      .fund-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 820px) {
      :root { --sidebar: 0px; }
      .sidebar { display: none; }
      .main { margin-left: 0; }
      .topbar { height: auto; min-height: 68px; padding: 12px 16px; }
      .content { padding: 18px 14px 40px; }
      .overview { padding: 17px; }
      .overview-top { align-items: flex-start; }
      .overview-grid { grid-template-columns: repeat(2, 1fr); }
      .market-item { padding: 6px 12px; border-right: 0; border-bottom: 1px solid var(--line); }
      .market-item:nth-child(odd) { padding-left: 0; border-right: 1px solid var(--line); }
      .market-item:nth-child(4) { padding-left: 12px; }
      .market-item:nth-child(5) { grid-column: 1 / -1; padding-left: 0; border: 0; }
      .thermo-card { grid-template-columns: 1fr; justify-items: center; text-align: center; }
      .tag-cloud { justify-content: center; }
      .metric-grid { grid-template-columns: 1fr; }
      .metric-wide { grid-column: 1; align-items: flex-start; flex-direction: column; }
      .mainline-card { overflow-x: auto; }
      .data-table { min-width: 760px; }
      .rank-row { grid-template-columns: 25px 1fr 58px 52px; }
      .rank-logic { display: none; }
      .donut-layout { grid-template-columns: 1fr; justify-items: center; }
      .donut-list { width: min(100%, 280px); }
      .alert-grid, .overnight-grid { grid-template-columns: 1fr; }
      .watch-grid { grid-template-columns: 1fr; }
      .footer { flex-direction: column; }
      .footer-meta { text-align: left; }
    }

    @media print {
      .sidebar, .topbar { display: none !important; }
      .main { margin-left: 0; }
      .content { max-width: none; padding: 0; }
      .card { box-shadow: none; break-inside: avoid; }
      body { background: #fff; }
    }
  
.date-picker{height:38px;padding:0 10px;border:1px solid var(--line-strong);border-radius:9px;color:var(--ink);background:#fff;font-size:14px;cursor:pointer;max-width:200px;}
.date-picker option{color:var(--ink);}
.segment{text-decoration:none;cursor:pointer;}
.segment.disabled{opacity:.42;pointer-events:none;}

body{font-size:16px;line-height:1.7;}
.data-table td{font-size:14px;}
.data-table th{font-size:12px;}
.market-label{font-size:13px;}
.market-detail{font-size:12px;}
.section-note{font-size:13px;}
.card-title{font-size:18px;}
.card-subtitle{font-size:13px;}
.metric-name{font-size:13px;}
.metric-foot{font-size:12px;}
.theme-name{font-size:15px;}
.theme-sub{font-size:12px;}
.rank-name{font-size:14px;}
.rank-logic{font-size:12px;}
.tier-level{font-size:13px;}
.tier-stock{font-size:13px;}
.stock-chip{font-size:12px;}
.fund-name{font-size:13px;}
.fund-note{font-size:12px;}
.fund-amount{font-size:12px;}
.alert-title{font-size:14px;}
.alert-copy{font-size:13px;}
.watch-item{font-size:13px;}
.overnight-label{font-size:13px;}
.bullet-list li{font-size:13px;}
.footer{font-size:12px;}
.tag{font-size:12px;}
.sentiment-brief p{font-size:14px;}
.archive-meta{font-size:13px;}
.archive-go{font-size:13px;}

.archive-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:14px;padding:0 20px 24px;}
.archive-card{display:block;padding:16px;border:1px solid var(--line);border-radius:12px;background:#fff;transition:.18s ease;}
.archive-card:hover{border-color:#dde2e8;box-shadow:var(--shadow-hover);transform:translateY(-1px);}
.archive-date{font-weight:720;font-size:16px;}
.archive-badge{font-size:12px;padding:2px 9px;border-radius:99px;font-weight:650;}
.archive-badge.close{color:var(--up);background:var(--up-soft);}
.archive-badge.midday{color:var(--blue);background:var(--blue-soft);}
.archive-meta{color:var(--muted);font-size:13px;margin-top:6px;}
.archive-go{color:var(--muted);font-size:13px;margin-top:12px;display:inline-block;}
