:root {
      --bg: #0b0f16;
      --panel: #101722;
      --panel2: #141c29;
      --panel3: #0d1420;
      --line: #233044;
      --line2: #31415c;
      --text: #f8fafc;
      --muted: #9bb2cf;
      --muted2: #6f85a3;
      --blue: #3b82f6;
      --blue2: #1e3a8a;
      --green: #22c55e;
      --red: #ef4444;
      --yellow: #f59e0b;
      --purple: #a855f7;
      --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 34%),
        linear-gradient(180deg, #0b0f16 0%, #0f1115 100%);
      color: var(--text);
      font-family: Arial, Helvetica, sans-serif;
      min-height: 100vh;
    }

    a { color: inherit; text-decoration: none; }
    button, input { font-family: inherit; }

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

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      min-height: 70px;
      padding: 0 32px;
      display: flex;
      align-items: center;
      gap: 18px;
      background: rgba(11, 15, 22, 0.94);
      border-bottom: 1px solid rgba(120, 139, 161, 0.14);
      backdrop-filter: blur(14px);
    }

    .logo {
      font-size: 30px;
      font-weight: 950;
      letter-spacing: -0.045em;
      white-space: nowrap;
      cursor: pointer;
    }

    button.ticker-badge {
      font-family: inherit;
    }

    .ticker-badge:hover {
      border-color: rgba(96, 165, 250, 0.70);
      background: rgba(37, 99, 235, 0.28);
    }

    .logo:hover { color: #93c5fd; }

    .search-area {
      position: relative;
      width: min(720px, 62vw);
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .search-wrap { position: relative; width: 100%; }

    .search-input {
      width: 100%;
      height: 42px;
      border-radius: 999px;
      padding: 0 16px;
      border: 1px solid rgba(120, 139, 161, 0.20);
      background: rgba(255, 255, 255, 0.055);
      color: var(--text);
      outline: none;
      font-weight: 800;
    }

    .search-input:focus {
      border-color: rgba(96, 165, 250, 0.72);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
    }

    .search-btn {
      height: 42px;
      min-width: 92px;
      border-radius: 999px;
      border: 1px solid rgba(96, 165, 250, 0.48);
      background: #2563eb;
      color: white;
      font-weight: 950;
      cursor: pointer;
    }

    .search-btn:hover { background: #1d4ed8; }

    .suggestions {
      position: absolute;
      top: 48px;
      left: 0;
      right: 0;
      display: none;
      background: #0f172a;
      border: 1px solid rgba(96, 165, 250, 0.26);
      border-radius: 18px;
      box-shadow: var(--shadow);
      overflow: hidden;
      z-index: 90;
    }

    .suggestion-row {
      width: 100%;
      border: none;
      background: transparent;
      color: var(--text);
      padding: 12px 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      cursor: pointer;
      text-align: left;
    }

    .suggestion-row:hover { background: rgba(37, 99, 235, 0.16); }

    .suggestion-symbol { font-weight: 950; font-size: 15px; }
    .suggestion-name { color: var(--muted); font-size: 12px; margin-top: 2px; }

    .menu-wrap { position: relative; }

    .menu-btn {
      width: 44px;
      height: 44px;
      border-radius: 999px;
      border: 1px solid rgba(120, 139, 161, 0.24);
      background: rgba(255, 255, 255, 0.06);
      color: white;
      font-size: 22px;
      font-weight: 900;
      cursor: pointer;
    }

    .menu-btn:hover {
      border-color: rgba(96, 165, 250, 0.55);
      background: rgba(37, 99, 235, 0.15);
    }

    .menu-dropdown {
      position: absolute;
      top: 54px;
      right: 0;
      width: 230px;
      display: none;
      flex-direction: column;
      padding: 12px;
      border-radius: 18px;
      background: #0f172a;
      border: 1px solid rgba(96, 165, 250, 0.28);
      box-shadow: var(--shadow);
      z-index: 95;
    }

    .menu-dropdown.is-open { display: flex; }

    .menu-dropdown a {
      padding: 12px 10px;
      border-radius: 12px;
      color: var(--text);
      font-weight: 900;
    }

    .menu-dropdown a:hover,
    .menu-dropdown a.is-active {
      background: rgba(37, 99, 235, 0.18);
      color: #bfdbfe;
    }

    .main {
      max-width: 1180px;
      margin: 0 auto;
      padding: 24px 28px 48px;
    }

    .hero {
      border-radius: 20px;
      padding: 22px 26px;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(15, 23, 42, 0.92));
      border: 1px solid rgba(96, 165, 250, 0.26);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .page-updated {
      color: #93c5fd;
      font-size: 13px;
      font-weight: 950;
      white-space: nowrap;
    }

    .eyebrow {
      color: #93c5fd;
      letter-spacing: 0.20em;
      text-transform: uppercase;
      font-size: 12px;
      font-weight: 950;
      margin-bottom: 8px;
    }

    .hero-title {
      margin: 0;
      font-size: clamp(44px, 6vw, 72px);
      line-height: 0.95;
      letter-spacing: -0.06em;
    }

    .hero-text {
      margin: 14px 0 0;
      max-width: 860px;
      color: #c7ddff;
      line-height: 1.45;
      font-size: 17px;
    }

    .toolbar-card,
    .status-card,
    .news-grid-card,
    .ticker-strip-card {
      border-radius: 18px;
      background: rgba(20, 28, 41, 0.88);
      border: 1px solid rgba(120, 139, 161, 0.16);
      padding: 20px;
      margin-bottom: 20px;
    }

    .toolbar-card {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .filter-btn {
      border: 1px solid rgba(120, 139, 161, 0.22);
      color: var(--text);
      background: rgba(255, 255, 255, 0.055);
      border-radius: 999px;
      padding: 11px 16px;
      font-weight: 950;
      cursor: pointer;
    }

    .filter-btn:hover { border-color: rgba(96, 165, 250, 0.55); }

    .filter-btn.is-active {
      border-color: rgba(96, 165, 250, 0.90);
      background: rgba(37, 99, 235, 0.28);
      color: white;
    }

    .status-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: #93c5fd;
      font-weight: 900;
      font-size: 14px;
    }

    .ticker-strip-title {
      color: #93c5fd;
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .ticker-strip {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .ticker-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 34px;
      padding: 7px 11px;
      border-radius: 999px;
      border: 1px solid rgba(96, 165, 250, 0.22);
      background: rgba(37, 99, 235, 0.12);
      color: #dbeafe;
      font-size: 12px;
      font-weight: 950;
      cursor: pointer;
    }

    .ticker-chip:hover {
      border-color: rgba(96, 165, 250, 0.55);
      background: rgba(37, 99, 235, 0.20);
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .news-card-item {
      min-height: 250px;
      border-radius: 16px;
      padding: 18px;
      background: rgba(255, 255, 255, 0.045);
      border: 1px solid rgba(120, 139, 161, 0.15);
      transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }

    .news-card-item:hover {
      transform: translateY(-2px);
      border-color: rgba(96, 165, 250, 0.55);
      background: rgba(37, 99, 235, 0.08);
    }

    .news-card-item.is-clickable { cursor: pointer; }

    .news-topline {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 10px;
    }

    .ticker-badge {
      display: inline-flex;
      min-height: 30px;
      align-items: center;
      justify-content: center;
      padding: 5px 10px;
      border-radius: 999px;
      background: rgba(37, 99, 235, 0.18);
      border: 1px solid rgba(96, 165, 250, 0.34);
      color: #bfdbfe;
      font-size: 12px;
      font-weight: 950;
      white-space: nowrap;
    }

    .ticker-badge.discovery {
      background: rgba(168, 85, 247, 0.14);
      border-color: rgba(168, 85, 247, 0.34);
      color: #e9d5ff;
    }

    .source-text {
      color: #93c5fd;
      font-size: 12px;
      font-weight: 900;
      text-align: right;
      line-height: 1.35;
    }

    .news-headline {
      font-size: 19px;
      line-height: 1.18;
      font-weight: 950;
    }

    .news-summary {
      color: #c7d7ef;
      font-size: 14px;
      line-height: 1.45;
    }

    .why-box {
      margin-top: auto;
      padding: 12px;
      border-radius: 13px;
      border: 1px solid rgba(96, 165, 250, 0.18);
      background: rgba(15, 23, 42, 0.58);
      color: #dbeafe;
      font-size: 13px;
      line-height: 1.45;
      font-weight: 750;
    }

    .action-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 3px;
    }

    .mini-btn {
      min-height: 34px;
      padding: 7px 11px;
      border-radius: 999px;
      border: 1px solid rgba(96, 165, 250, 0.35);
      background: rgba(37, 99, 235, 0.13);
      color: #dbeafe;
      font-size: 12px;
      font-weight: 950;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }

    .mini-btn:hover {
      background: rgba(37, 99, 235, 0.24);
      border-color: rgba(96, 165, 250, 0.70);
    }

    .mini-btn.green {
      border-color: rgba(34, 197, 94, 0.36);
      background: rgba(34, 197, 94, 0.13);
      color: #bbf7d0;
    }

    .empty-state {
      grid-column: 1 / -1;
      border: 1px dashed rgba(120, 139, 161, 0.25);
      border-radius: 16px;
      padding: 24px;
      color: #bfdbfe;
      background: rgba(255, 255, 255, 0.035);
    }

    .footer-note {
      margin-top: 18px;
      color: var(--muted2);
      font-size: 12px;
      line-height: 1.4;
    }

    @media (max-width: 760px) {
      .topbar {
        padding: 12px 16px;
        flex-wrap: wrap;
      }

      .logo { font-size: 28px; }

      .search-area {
        order: 3;
        width: 100%;
        margin-left: 0;
      }

      .main { padding: 18px 16px 40px; }
      .hero { padding: 22px; align-items: flex-start; flex-direction: column; }
      .news-grid { grid-template-columns: 1fr; }

      .status-card {
        align-items: flex-start;
        flex-direction: column;
      }
    }
  

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden !important;
    max-width: 100% !important;
  }

  #tradehub-mobile-shell,
  .tmh-hidden-original-header {
    display: none !important;
  }

  .home-platform-bar,
  .topbar,
  header:has(.chart-top-search-wrap),
  header:has(.chart-menu-wrap),
  header:has(.home-search-area),
  header:has(.search-area),
  header:has(.top-search-wrap) {
    position: sticky !important;
    top: 0 !important;
    z-index: 9500 !important;
    width: 100% !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 48px !important;
    grid-template-rows: auto auto !important;
    align-items: center !important;
    column-gap: 10px !important;
    row-gap: 10px !important;
    padding: 14px 16px !important;
    background: rgba(8, 12, 22, 0.97) !important;
    border-bottom: 1px solid rgba(59, 130, 246, 0.16) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
  }

  .home-platform-logo,
  .topbar .logo,
  .topbar .brand,
  header .platform-logo,
  header .chart-platform-logo {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    max-width: 100% !important;
    margin: 0 !important;
    font-size: clamp(24px, 7vw, 32px) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .home-menu-wrap,
  .chart-menu-wrap,
  .topbar .menu-wrap,
  header .menu-wrap {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    position: relative !important;
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    flex: 0 0 48px !important;
  }

  .home-menu-btn,
  .chart-menu-btn,
  .menu-btn,
  #home-menu-btn,
  #chart-menu-btn,
  #menu-btn {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 44px !important;
  }

  .home-search-area,
  .chart-top-search-wrap,
  .topbar .top-search-wrap,
  .topbar .search-area,
  header .search-area,
  header .top-search-wrap {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 10px !important;
    order: initial !important;
    flex: none !important;
  }

  .symbol-search-wrap,
  .topbar .search-wrap,
  header .search-wrap {
    min-width: 0 !important;
    width: 100% !important;
    max-width: none !important;
  }

  .symbol-search,
  .chart-top-search,
  .top-search,
  .search-input,
  #symbol-search,
  #chart-top-search,
  #top-search,
  #global-search,
  #toolbar-search {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 44px !important;
    min-height: 44px !important;
    border-radius: 999px !important;
    font-size: 16px !important;
    padding: 0 16px !important;
    margin: 0 !important;
  }

  .home-search-area .add-symbol-btn,
  .chart-top-search-btn,
  .topbar .search-btn,
  .topbar .btn-primary,
  #search-symbol-btn,
  #add-symbol-btn,
  #chart-top-search-btn,
  #top-search-btn,
  #global-search-btn,
  #toolbar-search-btn {
    width: auto !important;
    min-width: 88px !important;
    max-width: 112px !important;
    height: 44px !important;
    min-height: 44px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 16px !important;
    margin: 0 !important;
    font-size: 13px !important;
    white-space: nowrap !important;
    flex: 0 0 auto !important;
  }

  .home-search-area {
    flex-direction: unset !important;
    align-items: center !important;
  }

  .home-search-area .add-symbol-btn {
    width: auto !important;
  }

  .home-menu-dropdown,
  .chart-menu-dropdown,
  .menu-dropdown,
  #home-menu-dropdown,
  #chart-menu-dropdown,
  #menu-dropdown {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: 0 !important;
    left: auto !important;
    z-index: 100000 !important;
    min-width: 210px !important;
    max-width: min(82vw, 260px) !important;
  }

  .home-menu-dropdown.is-open,
  .chart-menu-dropdown.is-open,
  .menu-dropdown.is-open,
  #home-menu-dropdown.is-open,
  #chart-menu-dropdown.is-open,
  #menu-dropdown.is-open {
    z-index: 100000 !important;
  }

  .chart-sticky-price,
  #chart-sticky-price {
    z-index: 2500 !important;
    pointer-events: none !important;
  }

  body:has(.chart-menu-dropdown.is-open) .chart-sticky-price,
  body:has(#chart-menu-dropdown.is-open) #chart-sticky-price,
  body:has(.menu-dropdown.is-open) .chart-sticky-price,
  body:has(#menu-dropdown.is-open) #chart-sticky-price {
    opacity: 0.18 !important;
    z-index: 1 !important;
  }

  .chart-hero {
    position: relative !important;
    overflow: visible !important;
  }

  .chart-hero .hero-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(118px, 142px) !important;
    grid-template-areas: "left price" !important;
    gap: 12px !important;
    align-items: start !important;
  }

  .chart-hero .hero-left {
    grid-area: left !important;
    min-width: 0 !important;
  }

  .chart-hero .hero-price-block {
    grid-area: price !important;
    justify-self: end !important;
    align-self: start !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 142px !important;
    margin: 0 !important;
    padding: 14px 12px !important;
    text-align: right !important;
    align-items: flex-end !important;
  }

  .chart-hero .hero-price {
    font-size: clamp(30px, 8vw, 44px) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.04em !important;
    white-space: nowrap !important;
  }

  .chart-hero .hero-change {
    font-size: clamp(13px, 3.6vw, 17px) !important;
    line-height: 1.1 !important;
    white-space: normal !important;
  }

  .chart-hero .hero-symbol {
    font-size: clamp(42px, 13vw, 64px) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.05em !important;
    word-break: keep-all !important;
  }

  .chart-hero .hero-action-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .chart-hero .hero-action-row .btn,
  .chart-hero .hero-action-row button,
  .chart-hero .hero-action-row a {
    width: 100% !important;
    justify-content: center !important;
  }

  #portfolio-section,
  .home-portfolio-card {
    text-align: center !important;
  }

  .home-portfolio-head {
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
  }

  .home-portfolio-head h2 {
    width: 100% !important;
    text-align: center !important;
  }

  .home-portfolio-actions {
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
  }

  .home-portfolio-status {
    width: 100% !important;
    text-align: center !important;
  }

  .calendar-event-modal,
  .event-modal,
  #eventModal {
    max-width: calc(100vw - 28px) !important;
  }

  .detail-card,
  .stat-card,
  .data-card,
  .event-detail-card,
  .calendar-detail-card {
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  .detail-card strong,
  .stat-card strong,
  .data-card strong,
  .event-detail-card strong,
  .calendar-detail-card strong,
  .detail-card span,
  .stat-card span,
  .data-card span,
  .event-detail-card span,
  .calendar-detail-card span {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
  }
}

@media (max-width: 420px) {
  .home-platform-bar,
  .topbar,
  header:has(.chart-top-search-wrap),
  header:has(.chart-menu-wrap),
  header:has(.home-search-area),
  header:has(.search-area),
  header:has(.top-search-wrap) {
    padding-left: 12px !important;
    padding-right: 12px !important;
    grid-template-columns: minmax(0, 1fr) 44px !important;
  }

  .home-search-area,
  .chart-top-search-wrap,
  .topbar .top-search-wrap,
  .topbar .search-area,
  header .search-area,
  header .top-search-wrap {
    gap: 8px !important;
  }

  .home-search-area .add-symbol-btn,
  .chart-top-search-btn,
  .topbar .search-btn,
  .topbar .btn-primary,
  #search-symbol-btn,
  #add-symbol-btn,
  #chart-top-search-btn,
  #top-search-btn,
  #global-search-btn,
  #toolbar-search-btn {
    min-width: 78px !important;
    max-width: 94px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
  }

  .chart-hero .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(104px, 126px) !important;
    gap: 8px !important;
  }

  .chart-hero .hero-price-block {
    max-width: 126px !important;
    padding: 12px 10px !important;
  }

  .chart-hero .hero-symbol {
    font-size: clamp(38px, 12vw, 54px) !important;
  }
}

  @media (max-width: 760px) {
    html,
    body {
      overflow-x: hidden !important;
      max-width: 100% !important;
    }

    .topbar,
    .platform-bar {
      position: sticky !important;
      top: 0 !important;
      z-index: 10000 !important;
      width: 100% !important;
      max-width: 100% !important;
      min-height: 0 !important;
      height: auto !important;
      margin: 0 !important;
      padding: 12px 16px 11px !important;
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) 40px !important;
      grid-template-areas:
        "logo menu"
        "search search" !important;
      align-items: center !important;
      gap: 10px 10px !important;
      background: rgba(8, 12, 22, 0.98) !important;
      border-bottom: 1px solid rgba(59, 130, 246, 0.16) !important;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22) !important;
      backdrop-filter: blur(16px) !important;
      -webkit-backdrop-filter: blur(16px) !important;
      overflow: visible !important;
    }

    .logo,
    .brand,
    .platform-logo {
      grid-area: logo !important;
      justify-self: start !important;
      align-self: center !important;
      width: auto !important;
      margin: 0 !important;
      padding: 0 !important;
      color: #f8fafc !important;
      text-decoration: none !important;
      font-size: clamp(29px, 8vw, 34px) !important;
      line-height: 1 !important;
      font-weight: 950 !important;
      letter-spacing: -0.045em !important;
      white-space: nowrap !important;
    }

    .platform-actions {
      display: contents !important;
    }

    .icon-back {
      display: none !important;
    }

    .menu-wrap,
    .chart-menu-wrap {
      grid-area: menu !important;
      position: relative !important;
      right: auto !important;
      top: auto !important;
      justify-self: end !important;
      align-self: center !important;
      width: 40px !important;
      height: 40px !important;
      min-width: 40px !important;
      min-height: 40px !important;
      margin: 0 !important;
      padding: 0 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }

    .menu-btn,
    .chart-menu-btn,
    #menu-btn,
    #chart-menu-btn {
      width: 34px !important;
      height: 34px !important;
      min-width: 34px !important;
      min-height: 34px !important;
      margin: 0 !important;
      padding: 0 !important;
      border: 0 !important;
      border-radius: 8px !important;
      background: transparent !important;
      box-shadow: none !important;
      color: #dbeafe !important;
      font-size: 25px !important;
      font-weight: 950 !important;
      line-height: 34px !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
    }

    .menu-btn:hover,
    .menu-btn:focus,
    .chart-menu-btn:hover,
    .chart-menu-btn:focus,
    #menu-btn:hover,
    #menu-btn:focus,
    #chart-menu-btn:hover,
    #chart-menu-btn:focus {
      background: rgba(30, 41, 59, 0.36) !important;
      border: 0 !important;
      outline: none !important;
      box-shadow: none !important;
    }

    .menu-dropdown,
    .chart-menu-dropdown,
    #menu-dropdown,
    #chart-menu-dropdown {
      position: absolute !important;
      top: calc(100% + 8px) !important;
      right: 0 !important;
      left: auto !important;
      z-index: 10001 !important;
      min-width: 220px !important;
      width: 220px !important;
      max-width: min(82vw, 270px) !important;
    }

    .search-area,
    .top-search-wrap,
    .chart-top-search-wrap {
      grid-area: search !important;
      width: 100% !important;
      max-width: none !important;
      min-width: 0 !important;
      height: auto !important;
      margin: 0 !important;
      padding: 0 !important;
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) 82px !important;
      align-items: center !important;
      gap: 8px !important;
      flex-direction: unset !important;
    }

    .search-wrap,
    .symbol-search-wrap {
      width: 100% !important;
      min-width: 0 !important;
      max-width: none !important;
      margin: 0 !important;
      padding: 0 !important;
      position: relative !important;
    }

    .search-input,
    .top-search,
    .chart-top-search,
    #global-search,
    #toolbar-search,
    #top-search,
    #chart-top-search {
      width: 100% !important;
      max-width: none !important;
      min-width: 0 !important;
      height: 40px !important;
      min-height: 40px !important;
      margin: 0 !important;
      padding: 0 13px !important;
      border-radius: 999px !important;
      font-size: 14px !important;
      line-height: 40px !important;
    }

    .search-btn,
    .top-search-btn,
    .chart-top-search-btn,
    #global-search-btn,
    #toolbar-search-btn,
    #top-search-btn,
    #chart-top-search-btn {
      width: 82px !important;
      min-width: 82px !important;
      max-width: 82px !important;
      height: 40px !important;
      min-height: 40px !important;
      margin: 0 !important;
      padding: 0 10px !important;
      border-radius: 999px !important;
      font-size: 12px !important;
      line-height: 40px !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      white-space: nowrap !important;
    }

    .suggestions,
    .symbol-suggestions,
    .chart-top-suggestions {
      z-index: 10002 !important;
    }

    .chart-top-suggestions {
      right: 90px !important;
    }

    .chart-sticky-price {
      z-index: 100 !important;
    }

    .menu-dropdown.is-open,
    .chart-menu-dropdown.is-open {
      z-index: 10001 !important;
    }
  }

  .platform-shell > header.home-platform-bar {
    position: sticky !important;
    top: 0 !important;
    z-index: 70000 !important;
    min-height: 70px !important;
    height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 28px !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    background: rgba(11, 15, 22, 0.92) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(120, 139, 161, 0.14) !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .platform-shell > header.home-platform-bar > a.home-platform-logo {
    color: #f8fafc !important;
    text-decoration: none !important;
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    letter-spacing: -0.045em !important;
    white-space: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
    min-width: 0 !important;
    transform: none !important;
  }

  .platform-shell > header.home-platform-bar > a.home-platform-logo:hover {
    color: #93c5fd !important;
  }

  .platform-shell > header.home-platform-bar .home-search-area {
    position: relative !important;
    width: min(720px, 62vw) !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    box-sizing: border-box !important;
  }

  .platform-shell > header.home-platform-bar .home-search-area .symbol-search-wrap {
    width: 100% !important;
    min-width: 0 !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .platform-shell > header.home-platform-bar .home-search-area .symbol-search,
  .platform-shell > header.home-platform-bar #symbol-search {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    height: 42px !important;
    min-height: 42px !important;
    border-radius: 999px !important;
    padding: 0 15px !important;
    border: 1px solid rgba(120, 139, 161, 0.18) !important;
    background: rgba(255, 255, 255, 0.055) !important;
    color: #f8fafc !important;
    outline: none !important;
    font-size: 13px !important;
    line-height: 42px !important;
    font-weight: 800 !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    appearance: none !important;
    -webkit-appearance: none !important;
  }

  .platform-shell > header.home-platform-bar .home-search-area .symbol-search:focus,
  .platform-shell > header.home-platform-bar #symbol-search:focus {
    border-color: rgba(96, 165, 250, 0.62) !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16) !important;
  }

  .platform-shell > header.home-platform-bar .home-search-area .add-symbol-btn,
  .platform-shell > header.home-platform-bar #add-symbol-btn.add-symbol-btn {
    height: 42px !important;
    min-height: 42px !important;
    min-width: 86px !important;
    width: auto !important;
    max-width: none !important;
    border-radius: 999px !important;
    padding: 0 18px !important;
    white-space: nowrap !important;
    font-size: 13px !important;
    line-height: 42px !important;
    font-weight: 950 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    transform: none !important;
    filter: none !important;
  }

  .platform-shell > header.home-platform-bar .symbol-suggestions,
  .platform-shell > header.home-platform-bar #symbol-suggestions {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 16px !important;
    z-index: 100000 !important;
  }

  .platform-shell > header.home-platform-bar .home-menu-wrap {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 90000 !important;
  }

  .platform-shell > header.home-platform-bar .home-menu-btn,
  .platform-shell > header.home-platform-bar #home-menu-btn {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(120, 139, 161, 0.18) !important;
    background: rgba(255, 255, 255, 0.045) !important;
    color: #dbeafe !important;
    font-size: 20px !important;
    line-height: 40px !important;
    font-weight: 950 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    transform: none !important;
  }

  .platform-shell > header.home-platform-bar .home-menu-btn:hover,
  .platform-shell > header.home-platform-bar #home-menu-btn:hover,
  .platform-shell > header.home-platform-bar .home-menu-btn:focus,
  .platform-shell > header.home-platform-bar #home-menu-btn:focus {
    background: rgba(96, 165, 250, 0.12) !important;
    border-color: rgba(96, 165, 250, 0.38) !important;
    outline: none !important;
    box-shadow: none !important;
  }

  .platform-shell > header.home-platform-bar .home-menu-dropdown,
  .platform-shell > header.home-platform-bar #home-menu-dropdown {
    position: absolute !important;
    right: 0 !important;
    left: auto !important;
    top: calc(100% + 10px) !important;
    width: 220px !important;
    max-width: min(82vw, 270px) !important;
    display: none;
    padding: 8px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(120, 139, 161, 0.20) !important;
    background: rgba(15, 23, 42, 0.98) !important;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42) !important;
    z-index: 100000 !important;
    overflow: hidden !important;
  }

  .platform-shell > header.home-platform-bar .home-menu-dropdown.is-open,
  .platform-shell > header.home-platform-bar #home-menu-dropdown.is-open {
    display: grid !important;
    gap: 4px !important;
  }

  @media (max-width: 760px) {
    html,
    body {
      width: 100% !important;
      max-width: 100% !important;
      overflow-x: hidden !important;
      background: #070b12 !important;
    }

    .platform-shell {
      width: 100% !important;
      max-width: 100% !important;
      overflow-x: hidden !important;
      padding: 0 !important;
      background: #070b12 !important;
    }

    .platform-shell > header.home-platform-bar {
      position: sticky !important;
      top: 0 !important;
      z-index: 90000 !important;
      min-height: 118px !important;
      height: auto !important;
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 !important;
      padding: 14px 14px 12px !important;
      box-sizing: border-box !important;
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) auto !important;
      grid-template-areas:
        "logo menu"
        "search search" !important;
      align-items: center !important;
      gap: 12px !important;
      background: rgba(7, 11, 18, 0.96) !important;
      border-top: 0 !important;
      border-left: 0 !important;
      border-right: 0 !important;
      border-bottom: 1px solid rgba(96, 165, 250, 0.14) !important;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22) !important;
      backdrop-filter: blur(14px) !important;
      -webkit-backdrop-filter: blur(14px) !important;
      overflow: visible !important;
    }

    .platform-shell > header.home-platform-bar > a.home-platform-logo {
      grid-area: logo !important;
      justify-self: start !important;
      align-self: center !important;
      color: #f8fafc !important;
      text-decoration: none !important;
      font-size: 28px !important;
      line-height: 1 !important;
      font-weight: 950 !important;
      letter-spacing: -0.045em !important;
      margin: 0 !important;
      padding: 0 !important;
      min-width: 0 !important;
      white-space: nowrap !important;
      transform: none !important;
    }

    .platform-shell > header.home-platform-bar .home-menu-wrap {
      grid-area: menu !important;
      justify-self: end !important;
      align-self: center !important;
      position: relative !important;
      z-index: 92000 !important;
      width: auto !important;
      height: auto !important;
      min-width: 0 !important;
      min-height: 0 !important;
      margin: 0 !important;
      padding: 0 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }

    .platform-shell > header.home-platform-bar button.home-menu-btn,
    .platform-shell > header.home-platform-bar #home-menu-btn {
      width: 42px !important;
      height: 42px !important;
      min-width: 42px !important;
      min-height: 42px !important;
      margin: 0 !important;
      padding: 0 !important;
      border-radius: 16px !important;
      background: rgba(15, 23, 42, 0.72) !important;
      border: 1px solid rgba(96, 165, 250, 0.22) !important;
      color: #f8fbff !important;
      box-shadow: inset 0 0 0 1px rgba(2, 6, 23, 0.40) !important;
      font-size: 25px !important;
      line-height: 42px !important;
      font-weight: 950 !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      cursor: pointer !important;
      appearance: none !important;
      -webkit-appearance: none !important;
      transform: none !important;
    }

    .platform-shell > header.home-platform-bar .home-menu-dropdown,
    .platform-shell > header.home-platform-bar #home-menu-dropdown {
      position: absolute !important;
      right: 0 !important;
      left: auto !important;
      top: calc(100% + 10px) !important;
      min-width: 220px !important;
      width: 220px !important;
      max-width: min(82vw, 270px) !important;
      border-radius: 18px !important;
      background: linear-gradient(180deg, rgba(8, 16, 31, 0.98), rgba(3, 8, 18, 0.99)) !important;
      border: 1px solid rgba(96, 165, 250, 0.30) !important;
      box-shadow: 0 24px 54px rgba(0, 0, 0, 0.55) !important;
      overflow: hidden !important;
      z-index: 100000 !important;
    }

    .platform-shell > header.home-platform-bar .home-menu-dropdown.is-open,
    .platform-shell > header.home-platform-bar #home-menu-dropdown.is-open {
      display: grid !important;
      gap: 4px !important;
    }

    .platform-shell > header.home-platform-bar .home-search-area {
      grid-area: search !important;
      width: 100% !important;
      min-width: 0 !important;
      max-width: none !important;
      margin: 0 !important;
      padding: 0 !important;
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) auto !important;
      gap: 10px !important;
      align-items: center !important;
      position: relative !important;
      box-sizing: border-box !important;
    }

    .platform-shell > header.home-platform-bar .home-search-area .symbol-search-wrap {
      width: 100% !important;
      min-width: 0 !important;
      max-width: none !important;
      margin: 0 !important;
      padding: 0 !important;
      position: relative !important;
    }

    .platform-shell > header.home-platform-bar .home-search-area .symbol-search,
    .platform-shell > header.home-platform-bar #symbol-search {
      width: 100% !important;
      max-width: none !important;
      min-width: 0 !important;
      height: 44px !important;
      min-height: 44px !important;
      margin: 0 !important;
      padding: 0 14px !important;
      border-radius: 16px !important;
      font-size: 14px !important;
      line-height: 44px !important;
      font-weight: 800 !important;
      color: #f8fafc !important;
      background: rgba(255, 255, 255, 0.065) !important;
      border: 1px solid rgba(120, 139, 161, 0.20) !important;
      box-shadow: none !important;
      outline: none !important;
      box-sizing: border-box !important;
      appearance: none !important;
      -webkit-appearance: none !important;
    }

    .platform-shell > header.home-platform-bar .home-search-area .symbol-search::placeholder,
    .platform-shell > header.home-platform-bar #symbol-search::placeholder {
      color: #7f8ea3 !important;
      opacity: 1 !important;
    }

    .platform-shell > header.home-platform-bar .home-search-area .add-symbol-btn,
    .platform-shell > header.home-platform-bar #add-symbol-btn.add-symbol-btn {
      height: 44px !important;
      min-height: 44px !important;
      min-width: 76px !important;
      width: auto !important;
      max-width: none !important;
      margin: 0 !important;
      padding: 0 16px !important;
      border-radius: 16px !important;
      background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%) !important;
      color: #dbeafe !important;
      border: 1px solid rgba(96, 165, 250, 0.22) !important;
      box-shadow: none !important;
      font-size: 13px !important;
      line-height: 44px !important;
      font-weight: 950 !important;
      font-family: inherit !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      white-space: nowrap !important;
      cursor: pointer !important;
      box-sizing: border-box !important;
      appearance: none !important;
      -webkit-appearance: none !important;
      transform: none !important;
      filter: none !important;
    }

    .platform-shell > header.home-platform-bar .symbol-suggestions,
    .platform-shell > header.home-platform-bar #symbol-suggestions {
      position: absolute !important;
      top: calc(100% + 8px) !important;
      left: 0 !important;
      right: 0 !important;
      max-height: 280px !important;
      overflow-y: auto !important;
      z-index: 100000 !important;
      border-radius: 16px !important;
    }

    #chart-sticky-price.chart-sticky-price {
      z-index: 500 !important;
    }
  }

  @media (max-width: 430px) {
    .platform-shell > header.home-platform-bar {
      padding: 13px 12px 11px !important;
    }

    .platform-shell > header.home-platform-bar > a.home-platform-logo {
      font-size: 26px !important;
    }

    .platform-shell > header.home-platform-bar .home-search-area {
      grid-template-columns: 1fr auto !important;
      gap: 8px !important;
    }

    .platform-shell > header.home-platform-bar .home-search-area .symbol-search,
    .platform-shell > header.home-platform-bar #symbol-search {
      font-size: 13px !important;
    }

    .platform-shell > header.home-platform-bar .home-search-area .add-symbol-btn,
    .platform-shell > header.home-platform-bar #add-symbol-btn.add-symbol-btn {
      min-width: 70px !important;
      padding: 0 13px !important;
    }
  }

  @media (max-width: 760px) {
    html body .platform-shell > header.home-platform-bar .home-menu-wrap {
      grid-area: menu !important;
      position: relative !important;
      right: auto !important;
      top: auto !important;
      justify-self: end !important;
      align-self: center !important;
      width: 40px !important;
      height: 40px !important;
      min-width: 40px !important;
      min-height: 40px !important;
      margin: 0 !important;
      padding: 0 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      z-index: 65000 !important;
    }

    html body .platform-shell > header.home-platform-bar #home-menu-btn.home-menu-btn {
      width: 34px !important;
      height: 34px !important;
      min-width: 34px !important;
      min-height: 34px !important;
      margin: 0 !important;
      padding: 0 !important;
      border: 0 !important;
      border-radius: 8px !important;
      background: transparent !important;
      background-image: none !important;
      box-shadow: none !important;
      color: #dbeafe !important;
      font-size: 25px !important;
      line-height: 34px !important;
      font-weight: 950 !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      appearance: none !important;
      -webkit-appearance: none !important;
      transform: none !important;
    }

    html body .platform-shell > header.home-platform-bar #home-menu-btn.home-menu-btn:hover,
    html body .platform-shell > header.home-platform-bar #home-menu-btn.home-menu-btn:focus {
      background: rgba(30, 41, 59, 0.36) !important;
      border: 0 !important;
      outline: none !important;
      box-shadow: none !important;
    }

    html body .platform-shell > header.home-platform-bar .home-search-area {
      grid-area: search !important;
      width: 100% !important;
      max-width: none !important;
      min-width: 0 !important;
      height: auto !important;
      margin: 0 !important;
      padding: 0 !important;
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) 82px !important;
      align-items: center !important;
      gap: 8px !important;
      flex-direction: unset !important;
    }

    html body .platform-shell > header.home-platform-bar .home-search-area .symbol-search-wrap {
      width: 100% !important;
      min-width: 0 !important;
      max-width: none !important;
      margin: 0 !important;
      padding: 0 !important;
    }

    html body .platform-shell > header.home-platform-bar #symbol-search.symbol-search {
      width: 100% !important;
      max-width: none !important;
      min-width: 0 !important;
      height: 40px !important;
      min-height: 40px !important;
      margin: 0 !important;
      padding: 0 13px !important;
      border-radius: 999px !important;
      font-size: 14px !important;
      line-height: 40px !important;
      font-weight: 800 !important;
      color: #f8fafc !important;
      background: rgba(255, 255, 255, 0.065) !important;
      border: 1px solid rgba(120, 139, 161, 0.20) !important;
      box-shadow: none !important;
      outline: none !important;
      box-sizing: border-box !important;
      appearance: none !important;
      -webkit-appearance: none !important;
    }

    html body .platform-shell > header.home-platform-bar #add-symbol-btn.add-symbol-btn {
      width: 82px !important;
      min-width: 82px !important;
      max-width: 82px !important;
      height: 40px !important;
      min-height: 40px !important;
      margin: 0 !important;
      padding: 0 10px !important;
      border-radius: 999px !important;
      font-size: 12px !important;
      line-height: 40px !important;
      font-weight: 950 !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      white-space: nowrap !important;
      box-sizing: border-box !important;
      appearance: none !important;
      -webkit-appearance: none !important;
      transform: none !important;
    }
  }

  @media (max-width: 390px) {
    html body .platform-shell > header.home-platform-bar {
      padding-left: 13px !important;
      padding-right: 13px !important;
      grid-template-columns: minmax(0, 1fr) 36px !important;
    }

    html body .platform-shell > header.home-platform-bar .home-menu-wrap {
      width: 36px !important;
      min-width: 36px !important;
    }

    html body .platform-shell > header.home-platform-bar #home-menu-btn.home-menu-btn {
      width: 32px !important;
      height: 32px !important;
      min-width: 32px !important;
      min-height: 32px !important;
      font-size: 23px !important;
      line-height: 32px !important;
    }

    html body .platform-shell > header.home-platform-bar .home-search-area {
      grid-template-columns: minmax(0, 1fr) 76px !important;
      gap: 7px !important;
    }

    html body .platform-shell > header.home-platform-bar #add-symbol-btn.add-symbol-btn {
      width: 76px !important;
      min-width: 76px !important;
      max-width: 76px !important;
      font-size: 11px !important;
    }
  }

  @media (max-width: 760px) {
    html body .platform-shell > header.home-platform-bar .home-search-area {
      grid-template-columns: minmax(0, 1fr) auto !important;
      gap: 10px !important;
    }

    html body .platform-shell > header.home-platform-bar #symbol-search.symbol-search {
      height: 44px !important;
      min-height: 44px !important;
      line-height: 44px !important;
      border-radius: 16px !important;
      font-size: 14px !important;
      padding: 0 14px !important;
    }

    html body .platform-shell > header.home-platform-bar #add-symbol-btn.add-symbol-btn {
      width: auto !important;
      max-width: none !important;
      height: 44px !important;
      min-height: 44px !important;
      line-height: 44px !important;
      min-width: 76px !important;
      padding: 0 16px !important;
      border-radius: 16px !important;
      font-size: 13px !important;
      font-weight: 950 !important;
    }
  }

  @media (max-width: 430px) {
    html body .platform-shell > header.home-platform-bar .home-search-area {
      grid-template-columns: 1fr auto !important;
      gap: 8px !important;
    }

    html body .platform-shell > header.home-platform-bar #symbol-search.symbol-search {
      font-size: 13px !important;
    }

    html body .platform-shell > header.home-platform-bar #add-symbol-btn.add-symbol-btn {
      width: auto !important;
      max-width: none !important;
      min-width: 70px !important;
      padding: 0 13px !important;
      font-size: 13px !important;
    }
  }

  .platform-shell > header.home-platform-bar .symbol-suggestions .suggestion-row {
    width: 100% !important;
  }

  @media (min-width: 1024px) {
    body {
      background:
        radial-gradient(circle at 12% -4%, rgba(59, 130, 246, 0.15), transparent 32%),
        radial-gradient(circle at 90% 0%, rgba(14, 165, 233, 0.07), transparent 28%),
        linear-gradient(180deg, #070b12 0%, #050910 100%) !important;
    }

    .news-main-v2 {
      width: calc(100vw - 20px) !important;
      max-width: 1860px !important;
      margin: 0 auto !important;
      padding: 18px 26px 38px !important;
    }

    .news-hero-v2 {
      min-height: 154px !important;
      margin-bottom: 16px !important;
      padding: 24px 28px !important;
      border: 0 !important;
      border-radius: 28px !important;
      background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.22), transparent 38%),
        linear-gradient(135deg, rgba(17, 24, 37, 0.95), rgba(7, 12, 21, 0.94)) !important;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 18px 54px rgba(0, 0, 0, 0.16) !important;
    }

    .news-hero-copy {
      min-width: 0 !important;
    }

    .news-hero-v2 .hero-title {
      font-size: clamp(54px, 5.8vw, 86px) !important;
      line-height: 0.92 !important;
      letter-spacing: -0.075em !important;
    }

    .news-hero-v2 .hero-text {
      max-width: 760px !important;
      margin-top: 14px !important;
      color: #b9d5f4 !important;
      font-size: 15px !important;
      line-height: 1.45 !important;
      font-weight: 760 !important;
    }

    .news-hero-right {
      min-width: 430px !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: flex-end !important;
      gap: 15px !important;
    }

    .news-hero-metrics {
      display: grid !important;
      grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
      gap: 10px !important;
      width: min(500px, 38vw) !important;
    }

    .news-hero-metric {
      min-height: 72px !important;
      padding: 13px 14px !important;
      border-radius: 18px !important;
      background: rgba(2, 6, 23, 0.38) !important;
      box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.09) !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: center !important;
      gap: 6px !important;
    }

    .news-hero-metric strong {
      color: #f8fbff !important;
      font-size: 22px !important;
      line-height: 1 !important;
      font-weight: 950 !important;
      letter-spacing: -0.04em !important;
      overflow: hidden !important;
      text-overflow: ellipsis !important;
      white-space: nowrap !important;
    }

    .news-hero-metric span {
      color: #93c5fd !important;
      font-size: 10.5px !important;
      line-height: 1 !important;
      font-weight: 950 !important;
      letter-spacing: .13em !important;
      text-transform: uppercase !important;
    }

    .news-layout-v2 {
      display: grid !important;
      grid-template-columns: minmax(720px, 1fr) minmax(330px, 385px) !important;
      gap: 16px !important;
      align-items: start !important;
    }

    .news-primary-column,
    .news-side-column {
      min-width: 0 !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 16px !important;
    }

    .news-side-column {
      position: sticky !important;
      top: 94px !important;
      max-height: calc(100vh - 108px) !important;
      overflow: auto !important;
      padding-right: 2px !important;
      scrollbar-width: thin !important;
    }

    .toolbar-card,
    .news-grid-card,
    .ticker-strip-card,
    .news-side-card {
      border: 0 !important;
      border-radius: 24px !important;
      background:
        linear-gradient(180deg, rgba(17, 24, 37, 0.92), rgba(7, 12, 21, 0.94)) !important;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 18px 54px rgba(0, 0, 0, 0.14) !important;
      margin: 0 !important;
    }

    .news-filter-card {
      padding: 15px !important;
      gap: 9px !important;
    }

    .filter-btn {
      min-height: 38px !important;
      padding: 9px 14px !important;
      border-radius: 999px !important;
      border-color: rgba(148, 163, 184, 0.14) !important;
      background: rgba(255, 255, 255, 0.045) !important;
      color: #e5edf8 !important;
      font-size: 12.5px !important;
      line-height: 1.05 !important;
      font-weight: 950 !important;
    }

    .filter-btn.is-active {
      border-color: rgba(96, 165, 250, 0.72) !important;
      background: rgba(37, 99, 235, 0.30) !important;
      color: #eff6ff !important;
      box-shadow: 0 10px 24px rgba(37, 99, 235, 0.14) !important;
    }

    .news-feed-card-v2 {
      padding: 18px !important;
    }

    .news-feed-title-row {
      display: flex !important;
      align-items: flex-start !important;
      justify-content: space-between !important;
      gap: 14px !important;
      margin-bottom: 14px !important;
    }

    .news-feed-title-row h2,
    .news-side-card h2 {
      margin: 0 !important;
      color: #f8fbff !important;
      font-size: 21px !important;
      line-height: 1.05 !important;
      font-weight: 950 !important;
      letter-spacing: -0.03em !important;
    }

    .side-kicker {
      color: #93c5fd !important;
      font-size: 11px !important;
      line-height: 1 !important;
      font-weight: 950 !important;
      letter-spacing: .14em !important;
      text-transform: uppercase !important;
      margin-bottom: 8px !important;
    }

    .news-feed-status {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      min-height: 32px !important;
      padding: 7px 10px !important;
      border-radius: 999px !important;
      background: rgba(37, 99, 235, 0.14) !important;
      color: #bfdbfe !important;
      box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.24) !important;
      font-size: 12px !important;
      line-height: 1.05 !important;
      font-weight: 900 !important;
      white-space: nowrap !important;
    }

    .news-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 14px !important;
    }

    .news-card-item {
      min-height: 226px !important;
      border: 0 !important;
      border-radius: 20px !important;
      padding: 18px !important;
      background: rgba(2, 6, 23, 0.34) !important;
      box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08) !important;
    }

    .news-card-item:first-child {
      grid-column: 1 / -1 !important;
      min-height: 218px !important;
      background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 42%),
        rgba(2, 6, 23, 0.38) !important;
      box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.16) !important;
    }

    .news-card-item:first-child .news-headline {
      font-size: clamp(23px, 1.7vw, 30px) !important;
      line-height: 1.08 !important;
      max-width: 980px !important;
    }

    .news-headline {
      color: #f8fbff !important;
      font-size: 18px !important;
      line-height: 1.18 !important;
      letter-spacing: -0.02em !important;
    }

    .news-summary {
      color: #bfd2e6 !important;
      font-size: 13.5px !important;
      line-height: 1.42 !important;
      font-weight: 720 !important;
      display: -webkit-box !important;
      -webkit-line-clamp: 4 !important;
      -webkit-box-orient: vertical !important;
      overflow: hidden !important;
    }

    .why-box {
      border: 0 !important;
      border-radius: 16px !important;
      background: rgba(37, 99, 235, 0.11) !important;
      box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.14) !important;
      color: #dbeafe !important;
      font-size: 12.5px !important;
      line-height: 1.38 !important;
      font-weight: 790 !important;
    }

    .source-text,
    .page-updated {
      color: #93c5fd !important;
      font-size: 12px !important;
      font-weight: 900 !important;
    }

    .ticker-badge,
    .ticker-chip,
    .hot-ticker-btn,
    .news-topic-pill {
      font-family: inherit !important;
    }

    .news-side-card {
      padding: 17px !important;
    }

    .news-brief-card p {
      margin: 0 0 13px 0 !important;
      color: #dbeafe !important;
      font-size: 14px !important;
      line-height: 1.42 !important;
      font-weight: 820 !important;
    }

    .news-topic-list,
    .hot-ticker-list,
    .news-source-list {
      display: grid !important;
      gap: 9px !important;
    }

    .news-topic-pill {
      width: 100% !important;
      min-height: 42px !important;
      padding: 10px 12px !important;
      border-radius: 15px !important;
      background: rgba(2, 6, 23, 0.36) !important;
      box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08) !important;
      color: #e8f1ff !important;
      font-size: 13px !important;
      line-height: 1.25 !important;
      font-weight: 850 !important;
    }

    .hot-ticker-list {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .hot-ticker-btn {
      min-height: 40px !important;
      padding: 9px 11px !important;
      border: 0 !important;
      border-radius: 15px !important;
      background: rgba(37, 99, 235, 0.12) !important;
      box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.18) !important;
      color: #dbeafe !important;
      font-size: 13px !important;
      font-weight: 950 !important;
      cursor: pointer !important;
      text-align: left !important;
    }

    .hot-ticker-btn:hover,
    .ticker-chip:hover {
      background: rgba(37, 99, 235, 0.22) !important;
      box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.38) !important;
    }

    .ticker-strip-title {
      color: #93c5fd !important;
      font-size: 11px !important;
      line-height: 1 !important;
      font-weight: 950 !important;
      letter-spacing: .14em !important;
      margin-bottom: 11px !important;
    }

    .ticker-strip {
      gap: 8px !important;
      max-height: 132px !important;
      overflow: auto !important;
      padding-right: 2px !important;
    }

    .ticker-chip {
      min-height: 32px !important;
      padding: 7px 10px !important;
      border: 0 !important;
      background: rgba(37, 99, 235, 0.10) !important;
      box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.16) !important;
      color: #dbeafe !important;
      font-size: 12px !important;
      font-weight: 950 !important;
    }

    .news-source-row {
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) auto !important;
      gap: 10px !important;
      align-items: center !important;
      min-height: 38px !important;
      padding: 9px 11px !important;
      border-radius: 14px !important;
      background: rgba(2, 6, 23, 0.34) !important;
      box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08) !important;
    }

    .news-source-row span {
      min-width: 0 !important;
      overflow: hidden !important;
      text-overflow: ellipsis !important;
      white-space: nowrap !important;
      color: #cbd5e1 !important;
      font-size: 12.5px !important;
      font-weight: 820 !important;
    }

    .news-source-row strong {
      color: #93c5fd !important;
      font-size: 12px !important;
      font-weight: 950 !important;
    }
  }

  @media (min-width: 1024px) and (max-width: 1350px) {
    .news-main-v2 {
      padding-left: 18px !important;
      padding-right: 18px !important;
    }

    .news-layout-v2 {
      grid-template-columns: minmax(620px, 1fr) minmax(300px, 335px) !important;
      gap: 14px !important;
    }

    .news-hero-right {
      min-width: 360px !important;
    }

    .news-hero-metrics {
      width: 360px !important;
    }

    .news-grid {
      grid-template-columns: 1fr !important;
    }

    .news-card-item:first-child {
      grid-column: auto !important;
    }
  }

  @media (max-width: 1023px) {
    .news-layout-v2 {
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 16px !important;
    }

    .news-primary-column,
    .news-side-column {
      display: flex !important;
      flex-direction: column !important;
      gap: 16px !important;
    }

    .news-side-column {
      order: 3 !important;
    }

    .news-hero-right,
    .news-hero-metrics {
      width: 100% !important;
    }

    .news-hero-metrics {
      display: grid !important;
      grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
      gap: 10px !important;
    }

    .news-hero-metric {
      padding: 11px !important;
      border-radius: 15px !important;
      background: rgba(2, 6, 23, 0.32) !important;
    }

    .news-hero-metric strong {
      display: block !important;
      color: #f8fafc !important;
      font-size: 18px !important;
      line-height: 1 !important;
      font-weight: 950 !important;
    }

    .news-hero-metric span {
      display: block !important;
      margin-top: 5px !important;
      color: #93c5fd !important;
      font-size: 10px !important;
      font-weight: 950 !important;
      letter-spacing: .12em !important;
      text-transform: uppercase !important;
    }

    .news-feed-title-row {
      display: flex !important;
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 8px !important;
      margin-bottom: 12px !important;
    }

    .news-side-card {
      padding: 16px !important;
    }

    .hot-ticker-list {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 8px !important;
    }
  }

  .news-side-card h2 {
    margin-bottom: 13px !important;
  }

  .news-side-card .hot-ticker-list,
  .news-side-card .news-source-list,
  .news-side-card .news-topic-list {
    margin-top: 12px !important;
  }

  .side-helper-text {
    margin: -4px 0 12px 0;
    color: #9fb2c7;
    font-size: 12.5px;
    line-height: 1.35;
    font-weight: 750;
  }

  .side-search-area {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
  }

  .side-symbol-search-wrap {
    position: relative;
    min-width: 0;
  }

  .side-symbol-search {
    width: 100%;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(120, 139, 161, 0.18);
    background: rgba(255, 255, 255, 0.055);
    color: #f8fafc;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 850;
    outline: none;
  }

  .side-symbol-search:focus {
    border-color: rgba(96, 165, 250, 0.62);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
  }

  .side-search-btn {
    height: 42px;
    min-width: 76px;
    border-radius: 999px;
    border: 1px solid rgba(96, 165, 250, 0.42);
    background: #2563eb;
    color: #eff6ff;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.18);
  }

  .side-symbol-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 100005;
    display: none;
    max-height: 260px;
    overflow-y: auto;
    border-radius: 14px;
    border: 1px solid rgba(120, 139, 161, 0.22);
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.42);
    padding: 6px;
  }

  .side-symbol-suggestions .suggestion-row {
    width: 100%;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #f8fafc;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-align: left;
  }

  .side-symbol-suggestions .suggestion-row:hover {
    background: rgba(96, 165, 250, 0.12);
  }

  .side-symbol-suggestions .suggestion-symbol {
    display: block;
    color: #f8fafc;
    font-size: 13px;
    font-weight: 950;
  }

  .side-symbol-suggestions .suggestion-name {
    display: block;
    margin-top: 2px;
    color: #9fb2c7;
    font-size: 11px;
    font-weight: 750;
  }

  .news-loading-card {
    min-height: 118px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    border-radius: 26px;
    border: 1px solid rgba(96, 165, 250, 0.24);
    background:
      radial-gradient(circle at 16% 50%, rgba(59, 130, 246, 0.18), transparent 32%),
      linear-gradient(135deg, rgba(16, 26, 42, 0.95), rgba(7, 12, 21, 0.95));
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.06), 0 18px 40px rgba(0, 0, 0, 0.18);
  }

  .news-loading-orb {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.23);
    box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.32);
  }

  .news-loading-orb span {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #60a5fa;
    box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.55);
    animation: newsPulse 1.35s ease-in-out infinite;
  }

  .news-loading-copy strong {
    display: block;
    color: #f8fafc;
    font-size: 17px;
    font-weight: 950;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }

  .news-loading-copy span {
    display: block;
    margin-top: 5px;
    color: #cfe3ff;
    font-size: 13px;
    font-weight: 820;
    line-height: 1.35;
  }

  .news-loading-bars {
    display: inline-grid;
    grid-template-columns: repeat(3, 6px);
    gap: 6px;
    align-items: center;
  }

  .news-loading-bars i {
    width: 6px;
    height: 16px;
    border-radius: 999px;
    background: rgba(96, 165, 250, 0.30);
    animation: newsBars 1.05s ease-in-out infinite;
  }

  .news-loading-bars i:nth-child(2) { animation-delay: .12s; }
  .news-loading-bars i:nth-child(3) { animation-delay: .24s; }

  @keyframes newsPulse {
    0%, 100% { transform: scale(.86); box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.45); }
    50% { transform: scale(1); box-shadow: 0 0 0 10px rgba(96, 165, 250, 0); }
  }

  @keyframes newsBars {
    0%, 100% { height: 12px; opacity: .45; }
    50% { height: 24px; opacity: 1; }
  }

  @media (max-width: 760px) {
    .side-search-area {
      grid-template-columns: 1fr;
    }

    .side-search-btn {
      width: 100%;
    }

    .news-loading-card {
      grid-template-columns: auto minmax(0, 1fr);
      gap: 14px;
      padding: 18px;
    }

    .news-loading-bars {
      display: none;
    }
  }

  html,
  body,
  .news-side-column,
  .news-source-list,
  .ticker-chip-scroll,
  .news-grid,
  .news-list {
    scrollbar-width: thin;
    scrollbar-color: rgba(96, 165, 250, 0.58) rgba(15, 23, 42, 0.72);
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar,
  .news-side-column::-webkit-scrollbar,
  .news-source-list::-webkit-scrollbar,
  .ticker-chip-scroll::-webkit-scrollbar,
  .news-grid::-webkit-scrollbar,
  .news-list::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }

  html::-webkit-scrollbar-track,
  body::-webkit-scrollbar-track,
  .news-side-column::-webkit-scrollbar-track,
  .news-source-list::-webkit-scrollbar-track,
  .ticker-chip-scroll::-webkit-scrollbar-track,
  .news-grid::-webkit-scrollbar-track,
  .news-list::-webkit-scrollbar-track {
    background: rgba(7, 12, 21, 0.92);
    border-radius: 999px;
  }

  html::-webkit-scrollbar-thumb,
  body::-webkit-scrollbar-thumb,
  .news-side-column::-webkit-scrollbar-thumb,
  .news-source-list::-webkit-scrollbar-thumb,
  .ticker-chip-scroll::-webkit-scrollbar-thumb,
  .news-grid::-webkit-scrollbar-thumb,
  .news-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.88), rgba(37, 99, 235, 0.62));
    border: 2px solid rgba(7, 12, 21, 0.92);
    border-radius: 999px;
  }

  html::-webkit-scrollbar-thumb:hover,
  body::-webkit-scrollbar-thumb:hover,
  .news-side-column::-webkit-scrollbar-thumb:hover,
  .news-source-list::-webkit-scrollbar-thumb:hover,
  .ticker-chip-scroll::-webkit-scrollbar-thumb:hover,
  .news-grid::-webkit-scrollbar-thumb:hover,
  .news-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(147, 197, 253, 0.96), rgba(37, 99, 235, 0.78));
  }

  .news-loading-card {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
  }

  .news-side-search-card h2 {
    margin-bottom: 12px !important;
  }

  .news-side-search-card .side-search-area {
    margin-top: 0 !important;
  }

  .news-side-card h2 + .hot-ticker-list,
  .news-side-card h2 + .news-source-list,
  .news-side-card h2 + .news-topic-list {
    margin-top: 12px !important;
  }

  .news-side-card .side-kicker + h2 {
    margin-top: 6px !important;
  }

  @media (min-width: 1024px) {
    .news-hero-v2 {
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) minmax(300px, 360px) !important;
      gap: 20px !important;
      align-items: center !important;
    }

    .news-hero-right {
      min-width: 0 !important;
      width: 100% !important;
      align-items: flex-end !important;
      justify-content: center !important;
      gap: 12px !important;
    }

    .news-hero-right .page-updated {
      text-align: right !important;
      width: 100% !important;
    }

    .news-hero-metrics {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      width: 100% !important;
      max-width: 320px !important;
      align-self: flex-end !important;
    }
  }

  @media (max-width: 760px) {
    .news-loading-card {
      grid-column: 1 / -1 !important;
      width: 100% !important;
    }
  }

  @media (min-width: 761px) and (max-width: 1023px) {
    .news-main-v2 {
      width: 100% !important;
      max-width: none !important;
      margin: 0 auto !important;
      padding: 18px 28px 42px !important;
    }

    .news-hero-v2 {
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) minmax(260px, 320px) !important;
      gap: 20px !important;
      align-items: center !important;
      padding: 22px 26px !important;
      border: 1px solid rgba(96, 165, 250, 0.26) !important;
      border-radius: 24px !important;
      background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.20), transparent 38%),
        linear-gradient(135deg, rgba(17, 24, 37, 0.95), rgba(7, 12, 21, 0.94)) !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 18px 42px rgba(0,0,0,.16) !important;
    }

    .news-hero-copy {
      min-width: 0 !important;
    }

    .news-hero-v2 .eyebrow,
    .news-hero-v2 .side-kicker {
      color: #93c5fd !important;
      font-size: 11px !important;
      line-height: 1 !important;
      font-weight: 950 !important;
      letter-spacing: .18em !important;
      text-transform: uppercase !important;
      margin: 0 0 12px !important;
    }

    .news-hero-v2 .hero-title {
      font-size: clamp(52px, 6vw, 64px) !important;
      line-height: .92 !important;
      letter-spacing: -0.07em !important;
      margin: 0 !important;
    }

    .news-hero-v2 .hero-text {
      max-width: 520px !important;
      margin: 14px 0 0 !important;
      color: #c7ddff !important;
      font-size: 15px !important;
      line-height: 1.45 !important;
      font-weight: 760 !important;
    }

    .news-hero-right {
      min-width: 0 !important;
      width: 100% !important;
      max-width: 320px !important;
      justify-self: end !important;
      align-self: center !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: flex-end !important;
      justify-content: center !important;
      gap: 11px !important;
      margin: 0 !important;
    }

    .news-hero-right .page-updated {
      width: 100% !important;
      text-align: right !important;
      color: #93c5fd !important;
      font-size: 12px !important;
      line-height: 1.1 !important;
      font-weight: 950 !important;
      white-space: nowrap !important;
    }

    .news-hero-metrics {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 10px !important;
      width: 100% !important;
      max-width: 320px !important;
    }

    .news-hero-metric {
      min-height: 64px !important;
      padding: 12px 13px !important;
      border-radius: 17px !important;
      background: rgba(2, 6, 23, 0.38) !important;
      box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.09) !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: center !important;
      gap: 6px !important;
    }

    .news-hero-metric strong {
      color: #f8fbff !important;
      font-size: 21px !important;
      line-height: 1 !important;
      font-weight: 950 !important;
      letter-spacing: -0.04em !important;
    }

    .news-hero-metric span {
      color: #93c5fd !important;
      font-size: 10px !important;
      line-height: 1 !important;
      font-weight: 950 !important;
      letter-spacing: .13em !important;
      text-transform: uppercase !important;
    }

    .news-layout-v2 {
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 16px !important;
      align-items: start !important;
    }

    .news-primary-column,
    .news-side-column {
      display: contents !important;
    }

    .news-side-column {
      position: static !important;
      max-height: none !important;
      overflow: visible !important;
      padding-right: 0 !important;
    }

    .news-side-search-card { order: 1 !important; }
    .news-filter-card { order: 2 !important; }
    .news-feed-card-v2 { order: 3 !important; }
    .news-brief-card { order: 4 !important; }
    .news-side-column > .news-side-card:not(.news-side-search-card):not(.news-brief-card) { order: 5 !important; }
    .ticker-strip-card { order: 6 !important; }

    .toolbar-card,
    .news-grid-card,
    .ticker-strip-card,
    .news-side-card {
      border: 0 !important;
      border-radius: 24px !important;
      background:
        linear-gradient(180deg, rgba(17, 24, 37, 0.92), rgba(7, 12, 21, 0.94)) !important;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 18px 42px rgba(0, 0, 0, 0.14) !important;
      margin: 0 !important;
      padding: 17px !important;
    }

    .news-side-search-card {
      display: grid !important;
      grid-template-columns: minmax(190px, .30fr) minmax(0, 1fr) !important;
      grid-template-areas:
        "label search"
        "title search" !important;
      gap: 6px 16px !important;
      align-items: center !important;
    }

    .news-side-search-card .side-kicker {
      grid-area: label !important;
      margin: 0 !important;
    }

    .news-side-search-card h2 {
      grid-area: title !important;
      margin: 0 !important;
      color: #f8fbff !important;
      font-size: 22px !important;
      line-height: 1.05 !important;
      font-weight: 950 !important;
      letter-spacing: -0.03em !important;
    }

    .news-side-search-card .side-search-area {
      grid-area: search !important;
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) 88px !important;
      gap: 10px !important;
      align-items: center !important;
      margin: 0 !important;
    }

    .side-kicker,
    .ticker-strip-title,
    .news-feed-title-row .side-kicker {
      color: #93c5fd !important;
      font-size: 11px !important;
      line-height: 1 !important;
      font-weight: 950 !important;
      letter-spacing: .14em !important;
      text-transform: uppercase !important;
      margin: 0 0 9px !important;
    }

    .news-feed-title-row {
      display: flex !important;
      align-items: flex-start !important;
      justify-content: space-between !important;
      gap: 14px !important;
      margin-bottom: 14px !important;
    }

    .news-feed-title-row h2,
    .news-side-card h2 {
      margin: 0 !important;
      color: #f8fbff !important;
      font-size: 22px !important;
      line-height: 1.05 !important;
      font-weight: 950 !important;
      letter-spacing: -0.03em !important;
    }

    .news-feed-status {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      min-height: 32px !important;
      padding: 7px 10px !important;
      border-radius: 999px !important;
      background: rgba(37, 99, 235, 0.14) !important;
      color: #bfdbfe !important;
      box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.24) !important;
      font-size: 12px !important;
      line-height: 1.05 !important;
      font-weight: 900 !important;
      white-space: nowrap !important;
    }

    .news-filter-card {
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 9px !important;
      align-items: center !important;
      padding: 15px !important;
    }

    .filter-btn {
      min-height: 38px !important;
      padding: 9px 14px !important;
      border-radius: 999px !important;
      border-color: rgba(148, 163, 184, 0.14) !important;
      background: rgba(255, 255, 255, 0.045) !important;
      color: #e5edf8 !important;
      font-size: 12.5px !important;
      line-height: 1.05 !important;
      font-weight: 950 !important;
    }

    .filter-btn.is-active {
      border-color: rgba(96, 165, 250, 0.72) !important;
      background: rgba(37, 99, 235, 0.30) !important;
      color: #eff6ff !important;
      box-shadow: 0 10px 24px rgba(37, 99, 235, 0.14) !important;
    }

    .news-grid {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 14px !important;
    }

    .news-card-item {
      min-height: 220px !important;
      border: 0 !important;
      border-radius: 20px !important;
      padding: 18px !important;
      background: rgba(2, 6, 23, 0.34) !important;
      box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08) !important;
    }

    .news-card-item:first-child {
      grid-column: 1 / -1 !important;
      background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 42%),
        rgba(2, 6, 23, 0.38) !important;
      box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.16) !important;
    }

    .news-headline {
      color: #f8fbff !important;
      font-size: 18px !important;
      line-height: 1.18 !important;
      letter-spacing: -0.02em !important;
      font-weight: 950 !important;
    }

    .news-card-item:first-child .news-headline {
      font-size: 24px !important;
      line-height: 1.08 !important;
    }

    .news-summary {
      color: #bfd2e6 !important;
      font-size: 13.5px !important;
      line-height: 1.42 !important;
      font-weight: 720 !important;
      display: -webkit-box !important;
      -webkit-line-clamp: 4 !important;
      -webkit-box-orient: vertical !important;
      overflow: hidden !important;
    }

    .why-box,
    .news-topic-pill,
    .news-source-row {
      border: 0 !important;
      border-radius: 16px !important;
      background: rgba(37, 99, 235, 0.11) !important;
      box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.14) !important;
      color: #dbeafe !important;
      font-size: 12.5px !important;
      line-height: 1.38 !important;
      font-weight: 790 !important;
    }

    .why-box {
      padding: 12px !important;
    }

    .news-brief-card p {
      margin: 0 0 13px 0 !important;
      color: #dbeafe !important;
      font-size: 14px !important;
      line-height: 1.42 !important;
      font-weight: 820 !important;
    }

    .news-topic-list,
    .hot-ticker-list,
    .news-source-list {
      display: grid !important;
      gap: 9px !important;
      margin-top: 12px !important;
    }

    .news-topic-list {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .news-topic-pill {
      min-height: 42px !important;
      padding: 10px 12px !important;
      background: rgba(2, 6, 23, 0.36) !important;
      box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08) !important;
    }

    .hot-ticker-list {
      grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    .hot-ticker-btn {
      min-height: 40px !important;
      padding: 9px 11px !important;
      border: 0 !important;
      border-radius: 15px !important;
      background: rgba(37, 99, 235, 0.12) !important;
      box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.18) !important;
      color: #dbeafe !important;
      font-size: 13px !important;
      font-weight: 950 !important;
      cursor: pointer !important;
      text-align: center !important;
    }

    .ticker-strip {
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 8px !important;
      max-height: none !important;
      overflow: visible !important;
      padding-right: 0 !important;
    }

    .ticker-chip {
      min-height: 32px !important;
      padding: 7px 10px !important;
      border: 0 !important;
      border-radius: 999px !important;
      background: rgba(37, 99, 235, 0.10) !important;
      box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.16) !important;
      color: #dbeafe !important;
      font-size: 12px !important;
      font-weight: 950 !important;
    }

    .news-source-list {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .news-source-row {
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) auto !important;
      gap: 10px !important;
      align-items: center !important;
      min-height: 38px !important;
      padding: 9px 11px !important;
      background: rgba(2, 6, 23, 0.34) !important;
      box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08) !important;
    }

    .news-source-row span {
      min-width: 0 !important;
      overflow: hidden !important;
      text-overflow: ellipsis !important;
      white-space: nowrap !important;
      color: #cbd5e1 !important;
      font-size: 12.5px !important;
      font-weight: 820 !important;
    }

    .news-source-row strong {
      color: #93c5fd !important;
      font-size: 12px !important;
      font-weight: 950 !important;
    }

    .side-symbol-search {
      height: 42px !important;
      border-radius: 999px !important;
    }

    .side-search-btn {
      height: 42px !important;
      min-width: 88px !important;
      border-radius: 999px !important;
    }
  }

  @media (min-width: 761px) and (max-width: 860px) {
    .news-main-v2 {
      padding-left: 22px !important;
      padding-right: 22px !important;
    }

    .news-hero-v2 {
      grid-template-columns: 1fr !important;
    }

    .news-hero-right {
      justify-self: stretch !important;
      max-width: none !important;
      align-items: flex-start !important;
    }

    .news-hero-right .page-updated {
      text-align: left !important;
    }

    .news-hero-metrics {
      max-width: 340px !important;
      align-self: flex-start !important;
    }

    .news-side-search-card {
      grid-template-columns: 1fr !important;
      grid-template-areas:
        "label"
        "title"
        "search" !important;
      gap: 8px !important;
    }

    .news-side-search-card .side-search-area {
      grid-template-columns: minmax(0, 1fr) 88px !important;
      margin-top: 4px !important;
    }

    .news-grid {
      grid-template-columns: 1fr !important;
    }

    .hot-ticker-list,
    .news-topic-list,
    .news-source-list {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
  }

  @media (min-width: 761px) and (max-width: 1023px) {
    .news-side-search-card {
      display: grid !important;
      grid-template-columns: minmax(175px, 220px) minmax(0, 1fr) !important;
      grid-template-areas:
        "label label"
        "title search" !important;
      gap: 10px 16px !important;
      align-items: center !important;
      padding: 17px !important;
    }

    .news-side-search-card .side-kicker {
      grid-area: label !important;
      display: block !important;
      width: 100% !important;
      margin: 0 !important;
      color: #93c5fd !important;
      font-size: 10.5px !important;
      line-height: 1 !important;
      font-weight: 950 !important;
      letter-spacing: .12em !important;
      text-transform: uppercase !important;
      white-space: nowrap !important;
    }

    .news-side-search-card h2 {
      grid-area: title !important;
      align-self: center !important;
      margin: 0 !important;
      color: #f8fbff !important;
      font-size: 22px !important;
      line-height: 1.05 !important;
      font-weight: 950 !important;
      letter-spacing: -0.03em !important;
      white-space: nowrap !important;
    }

    .news-side-search-card .side-search-area {
      grid-area: search !important;
      align-self: center !important;
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) 88px !important;
      gap: 10px !important;
      align-items: center !important;
      width: 100% !important;
      max-width: none !important;
      margin: 0 !important;
    }

    .news-side-search-card .side-symbol-search {
      height: 42px !important;
      min-height: 42px !important;
      border-radius: 999px !important;
      padding: 0 14px !important;
      font-size: 13px !important;
      line-height: 42px !important;
    }

    .news-side-search-card .side-search-btn {
      width: 88px !important;
      min-width: 88px !important;
      max-width: 88px !important;
      height: 42px !important;
      min-height: 42px !important;
      border-radius: 999px !important;
      padding: 0 12px !important;
      line-height: 42px !important;
    }

    .news-brief-card .news-topic-list {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 10px !important;
      margin-top: 14px !important;
    }

    .news-brief-card .news-topic-pill {
      min-height: 43px !important;
      display: flex !important;
      align-items: center !important;
      padding: 10px 12px !important;
      border-radius: 16px !important;
      border: 1px solid rgba(96, 165, 250, 0.16) !important;
      background: rgba(2, 6, 23, 0.40) !important;
      box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.06) !important;
      color: #f1f7ff !important;
      font-size: 13px !important;
      line-height: 1.25 !important;
      font-weight: 850 !important;
    }

    .news-feed-title-row {
      display: flex !important;
      flex-direction: row !important;
      align-items: flex-start !important;
      justify-content: space-between !important;
      gap: 14px !important;
      margin-bottom: 14px !important;
      width: 100% !important;
    }

    .news-feed-title-row > div {
      min-width: 0 !important;
    }

    .news-feed-title-row .side-kicker {
      color: #93c5fd !important;
      font-size: 11px !important;
      line-height: 1 !important;
      font-weight: 950 !important;
      letter-spacing: .14em !important;
      text-transform: uppercase !important;
      margin: 0 0 10px 0 !important;
      white-space: nowrap !important;
    }

    .news-feed-status {
      flex: 0 0 auto !important;
      align-self: flex-start !important;
      margin-top: 0 !important;
      white-space: nowrap !important;
    }
  }

  @media (min-width: 761px) and (max-width: 860px) {
    .news-side-search-card {
      grid-template-columns: minmax(155px, 190px) minmax(0, 1fr) !important;
      grid-template-areas:
        "label label"
        "title search" !important;
      gap: 10px 12px !important;
    }

    .news-side-search-card h2 {
      font-size: 20px !important;
    }

    .news-side-search-card .side-search-area {
      grid-template-columns: minmax(0, 1fr) 82px !important;
      gap: 8px !important;
    }

    .news-side-search-card .side-search-btn {
      width: 82px !important;
      min-width: 82px !important;
      max-width: 82px !important;
    }

    .news-brief-card .news-topic-list {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
  }

  .mobile-news-filter-control {
    display: none;
  }

  @media (max-width: 760px) {
    .news-main-v2 {
      width: 100% !important;
      max-width: none !important;
      padding: 14px 14px 36px !important;
      margin: 0 !important;
    }

    .news-hero-v2 {
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 15px !important;
      align-items: stretch !important;
      margin: 14px 0 16px !important;
      padding: 18px !important;
      border-radius: 20px !important;
      border: 1px solid rgba(96, 165, 250, 0.24) !important;
      background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.20), transparent 42%),
        linear-gradient(135deg, rgba(17, 24, 37, 0.96), rgba(7, 12, 21, 0.96)) !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 14px 34px rgba(0,0,0,.16) !important;
    }

    .news-hero-copy {
      min-width: 0 !important;
    }

    .news-hero-v2 .eyebrow {
      margin: 0 0 12px !important;
      color: #93c5fd !important;
      font-size: 10.5px !important;
      line-height: 1.1 !important;
      font-weight: 950 !important;
      letter-spacing: .18em !important;
      text-transform: uppercase !important;
    }

    .news-hero-v2 .hero-title {
      margin: 0 !important;
      font-size: clamp(42px, 14vw, 58px) !important;
      line-height: .92 !important;
      letter-spacing: -0.07em !important;
    }

    .news-hero-v2 .hero-text {
      margin: 13px 0 0 !important;
      max-width: none !important;
      color: #dbeafe !important;
      font-size: 14px !important;
      line-height: 1.42 !important;
      font-weight: 760 !important;
    }

    .news-hero-right {
      width: 100% !important;
      min-width: 0 !important;
      max-width: none !important;
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 10px !important;
      align-items: stretch !important;
      justify-items: stretch !important;
      margin: 0 !important;
    }

    .news-hero-right .page-updated {
      width: 100% !important;
      text-align: left !important;
      color: #93c5fd !important;
      font-size: 12px !important;
      line-height: 1.15 !important;
      font-weight: 950 !important;
      white-space: normal !important;
    }

    .news-hero-metrics {
      width: 100% !important;
      max-width: none !important;
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 10px !important;
      align-self: stretch !important;
    }

    .news-hero-metric {
      min-height: 62px !important;
      padding: 12px 13px !important;
      border-radius: 16px !important;
      background: rgba(2, 6, 23, 0.40) !important;
      box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.09) !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: center !important;
      gap: 6px !important;
    }

    .news-hero-metric strong {
      color: #f8fbff !important;
      font-size: 22px !important;
      line-height: 1 !important;
      font-weight: 950 !important;
      letter-spacing: -0.04em !important;
    }

    .news-hero-metric span {
      color: #93c5fd !important;
      font-size: 10px !important;
      line-height: 1 !important;
      font-weight: 950 !important;
      letter-spacing: .13em !important;
      text-transform: uppercase !important;
    }

    .news-layout-v2 {
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 14px !important;
      align-items: start !important;
    }

    .news-primary-column,
    .news-side-column {
      display: contents !important;
    }

    .news-side-column {
      position: static !important;
      max-height: none !important;
      overflow: visible !important;
      padding-right: 0 !important;
    }

    .news-side-search-card { order: 1 !important; }
    .news-filter-card { order: 2 !important; }
    .news-feed-card-v2 { order: 3 !important; }
    .news-brief-card { order: 4 !important; }
    .news-side-column > .news-side-card:not(.news-side-search-card):not(.news-brief-card) { order: 5 !important; }
    .ticker-strip-card { order: 6 !important; }

    .toolbar-card,
    .news-grid-card,
    .ticker-strip-card,
    .news-side-card {
      width: 100% !important;
      margin: 0 !important;
      padding: 16px !important;
      border: 0 !important;
      border-radius: 20px !important;
      background:
        linear-gradient(180deg, rgba(17, 24, 37, 0.94), rgba(7, 12, 21, 0.96)) !important;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.035),
        0 14px 34px rgba(0,0,0,.15) !important;
    }

    .news-side-search-card {
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 10px !important;
      align-items: stretch !important;
    }

    .news-side-search-card .side-kicker {
      margin: 0 !important;
      white-space: nowrap !important;
      color: #93c5fd !important;
      font-size: 10.5px !important;
      line-height: 1 !important;
      font-weight: 950 !important;
      letter-spacing: .12em !important;
      text-transform: uppercase !important;
    }

    .news-side-search-card h2 {
      margin: -2px 0 0 !important;
      color: #f8fbff !important;
      font-size: 22px !important;
      line-height: 1.05 !important;
      font-weight: 950 !important;
      letter-spacing: -0.03em !important;
    }

    .news-side-search-card .side-search-area {
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) 82px !important;
      gap: 8px !important;
      align-items: center !important;
      width: 100% !important;
      margin: 2px 0 0 !important;
    }

    .side-symbol-search {
      height: 42px !important;
      min-height: 42px !important;
      border-radius: 16px !important;
      padding: 0 13px !important;
      font-size: 13px !important;
      line-height: 42px !important;
      background: rgba(255,255,255,.06) !important;
      border: 1px solid rgba(120,139,161,.20) !important;
      color: #f8fafc !important;
    }

    .side-search-btn {
      width: 82px !important;
      min-width: 82px !important;
      max-width: 82px !important;
      height: 42px !important;
      min-height: 42px !important;
      border-radius: 16px !important;
      padding: 0 10px !important;
      font-size: 12px !important;
      line-height: 42px !important;
    }

    .news-filter-card {
      display: block !important;
      padding: 14px !important;
    }

    .news-filter-card .filter-btn {
      display: none !important;
    }

    .mobile-news-filter-control {
      display: grid !important;
      gap: 8px !important;
      width: 100% !important;
    }

    .mobile-news-filter-control label {
      color: #93c5fd !important;
      font-size: 10.5px !important;
      line-height: 1 !important;
      font-weight: 950 !important;
      letter-spacing: .14em !important;
      text-transform: uppercase !important;
    }

    .mobile-news-filter-select {
      width: 100% !important;
      height: 44px !important;
      min-height: 44px !important;
      padding: 0 42px 0 14px !important;
      border-radius: 16px !important;
      border: 1px solid rgba(96, 165, 250, 0.26) !important;
      background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(7, 12, 21, 0.96)) !important;
      color: #f8fafc !important;
      font-size: 14px !important;
      line-height: 44px !important;
      font-weight: 900 !important;
      outline: none !important;
      appearance: none !important;
      -webkit-appearance: none !important;
      background-image:
        linear-gradient(45deg, transparent 50%, #93c5fd 50%),
        linear-gradient(135deg, #93c5fd 50%, transparent 50%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(7, 12, 21, 0.96)) !important;
      background-position:
        calc(100% - 22px) 19px,
        calc(100% - 16px) 19px,
        0 0 !important;
      background-size: 6px 6px, 6px 6px, 100% 100% !important;
      background-repeat: no-repeat !important;
    }

    .news-feed-card-v2 {
      padding: 16px !important;
    }

    .news-feed-title-row {
      display: flex !important;
      align-items: flex-start !important;
      justify-content: space-between !important;
      gap: 12px !important;
      margin-bottom: 14px !important;
      width: 100% !important;
    }

    .news-feed-title-row > div {
      min-width: 0 !important;
    }

    .news-feed-title-row .side-kicker,
    .side-kicker,
    .ticker-strip-title {
      color: #93c5fd !important;
      font-size: 10.5px !important;
      line-height: 1 !important;
      font-weight: 950 !important;
      letter-spacing: .14em !important;
      text-transform: uppercase !important;
      margin: 0 0 10px !important;
    }

    .news-feed-title-row h2,
    .news-side-card h2 {
      margin: 0 !important;
      color: #f8fbff !important;
      font-size: 22px !important;
      line-height: 1.08 !important;
      font-weight: 950 !important;
      letter-spacing: -0.035em !important;
    }

    .news-feed-status {
      flex: 0 0 auto !important;
      max-width: 104px !important;
      min-height: 31px !important;
      padding: 7px 9px !important;
      border-radius: 999px !important;
      background: rgba(37, 99, 235, 0.14) !important;
      color: #bfdbfe !important;
      box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.24) !important;
      font-size: 11px !important;
      line-height: 1.05 !important;
      font-weight: 900 !important;
      white-space: nowrap !important;
      overflow: hidden !important;
      text-overflow: ellipsis !important;
    }

    .news-grid {
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 13px !important;
    }

    .news-card-item,
    .news-card-item:first-child {
      grid-column: auto !important;
      min-height: auto !important;
      border: 0 !important;
      border-radius: 18px !important;
      padding: 16px !important;
      background: rgba(2, 6, 23, 0.36) !important;
      box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08) !important;
    }

    .news-card-item:first-child {
      background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.15), transparent 42%),
        rgba(2, 6, 23, 0.40) !important;
      box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.14) !important;
    }

    .news-card-item:first-child .news-headline,
    .news-headline {
      color: #f8fbff !important;
      font-size: 18px !important;
      line-height: 1.16 !important;
      font-weight: 950 !important;
      letter-spacing: -0.02em !important;
    }

    .news-summary {
      color: #bfd2e6 !important;
      font-size: 13.2px !important;
      line-height: 1.42 !important;
      font-weight: 720 !important;
      -webkit-line-clamp: 4 !important;
    }

    .why-box {
      margin-top: auto !important;
      padding: 12px !important;
      border: 0 !important;
      border-radius: 15px !important;
      background: rgba(37, 99, 235, 0.11) !important;
      box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.16) !important;
      color: #dbeafe !important;
      font-size: 12.5px !important;
      line-height: 1.36 !important;
      font-weight: 790 !important;
    }

    .news-brief-card p {
      margin: 0 0 13px !important;
      color: #dbeafe !important;
      font-size: 13.5px !important;
      line-height: 1.38 !important;
      font-weight: 820 !important;
    }

    .news-topic-list,
    .hot-ticker-list,
    .news-source-list {
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 9px !important;
      margin-top: 12px !important;
    }

    .news-topic-pill {
      width: 100% !important;
      min-height: 40px !important;
      display: flex !important;
      align-items: center !important;
      padding: 10px 12px !important;
      border-radius: 15px !important;
      border: 1px solid rgba(96, 165, 250, 0.16) !important;
      background: rgba(2, 6, 23, 0.40) !important;
      box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.06) !important;
      color: #f1f7ff !important;
      font-size: 13px !important;
      line-height: 1.25 !important;
      font-weight: 850 !important;
    }

    .hot-ticker-list {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .hot-ticker-btn {
      width: 100% !important;
      min-height: 40px !important;
      padding: 9px 10px !important;
      border: 0 !important;
      border-radius: 15px !important;
      background: rgba(37, 99, 235, 0.12) !important;
      box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.18) !important;
      color: #dbeafe !important;
      font-size: 12.5px !important;
      line-height: 1.1 !important;
      font-weight: 950 !important;
      text-align: center !important;
    }

    .ticker-strip {
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 8px !important;
      max-height: none !important;
      overflow: visible !important;
      padding: 0 !important;
    }

    .ticker-chip {
      min-height: 32px !important;
      padding: 7px 10px !important;
      border: 0 !important;
      border-radius: 999px !important;
      background: rgba(37, 99, 235, 0.10) !important;
      box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.16) !important;
      color: #dbeafe !important;
      font-size: 12px !important;
      font-weight: 950 !important;
    }

    .news-source-row {
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) auto !important;
      gap: 10px !important;
      align-items: center !important;
      min-height: 38px !important;
      padding: 9px 11px !important;
      border-radius: 14px !important;
      background: rgba(2, 6, 23, 0.34) !important;
      box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08) !important;
    }

    .news-source-row span {
      color: #cbd5e1 !important;
      font-size: 12.5px !important;
      font-weight: 820 !important;
      overflow: hidden !important;
      text-overflow: ellipsis !important;
      white-space: nowrap !important;
    }

    .news-source-row strong {
      color: #93c5fd !important;
      font-size: 12px !important;
      font-weight: 950 !important;
    }
  }

  @media (max-width: 390px) {
    .news-main-v2 {
      padding-left: 12px !important;
      padding-right: 12px !important;
    }

    .news-hero-v2,
    .toolbar-card,
    .news-grid-card,
    .ticker-strip-card,
    .news-side-card {
      padding: 14px !important;
      border-radius: 18px !important;
    }

    .news-side-search-card .side-search-area {
      grid-template-columns: minmax(0, 1fr) 76px !important;
      gap: 7px !important;
    }

    .side-search-btn {
      width: 76px !important;
      min-width: 76px !important;
      max-width: 76px !important;
      font-size: 11px !important;
    }

    .hot-ticker-list {
      grid-template-columns: 1fr !important;
    }
  }

  @media (max-width: 760px) {
    .mobile-news-filter-select {
      display: none !important;
    }

    .mobile-news-filter-menu {
      position: relative !important;
      width: 100% !important;
      min-width: 0 !important;
    }

    .mobile-news-filter-button {
      width: 100% !important;
      height: 46px !important;
      min-height: 46px !important;
      padding: 0 14px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
      gap: 12px !important;
      border-radius: 16px !important;
      border: 1px solid rgba(96, 165, 250, 0.34) !important;
      background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 42%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(7, 12, 21, 0.98)) !important;
      color: #f8fafc !important;
      box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.06) !important;
      font-size: 14px !important;
      line-height: 1 !important;
      font-weight: 950 !important;
      cursor: pointer !important;
      text-align: left !important;
    }

    .mobile-news-filter-button:focus,
    .mobile-news-filter-button:hover {
      border-color: rgba(147, 197, 253, 0.72) !important;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16), inset 0 0 0 1px rgba(147, 197, 253, 0.10) !important;
      outline: none !important;
    }

    .mobile-news-filter-chevron {
      color: #93c5fd !important;
      font-size: 13px !important;
      line-height: 1 !important;
      transition: transform 140ms ease !important;
    }

    .mobile-news-filter-menu.is-open .mobile-news-filter-chevron {
      transform: rotate(180deg) !important;
    }

    .mobile-news-filter-options {
      position: absolute !important;
      top: calc(100% + 8px) !important;
      left: 0 !important;
      right: 0 !important;
      z-index: 100010 !important;
      display: none !important;
      grid-template-columns: 1fr !important;
      gap: 5px !important;
      max-height: 320px !important;
      overflow-y: auto !important;
      padding: 8px !important;
      border-radius: 18px !important;
      border: 1px solid rgba(96, 165, 250, 0.30) !important;
      background: linear-gradient(180deg, rgba(8, 16, 31, 0.99), rgba(3, 8, 18, 0.99)) !important;
      box-shadow: 0 24px 54px rgba(0, 0, 0, 0.55) !important;
    }

    .mobile-news-filter-menu.is-open .mobile-news-filter-options {
      display: grid !important;
    }

    .mobile-news-filter-options button {
      width: 100% !important;
      min-height: 40px !important;
      padding: 10px 12px !important;
      border: 0 !important;
      border-radius: 13px !important;
      background: rgba(255, 255, 255, 0.035) !important;
      color: #dbeafe !important;
      font-size: 13px !important;
      line-height: 1.15 !important;
      font-weight: 900 !important;
      text-align: left !important;
      cursor: pointer !important;
    }

    .mobile-news-filter-options button:hover,
    .mobile-news-filter-options button.is-active {
      background: rgba(37, 99, 235, 0.24) !important;
      color: #f8fbff !important;
      box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.30) !important;
    }

    .news-side-search-card .side-search-btn,
    #news-sidebar-search-btn.side-search-btn {
      font-size: 13.5px !important;
      font-weight: 950 !important;
      letter-spacing: -0.01em !important;
    }

    .news-feed-title-row {
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) auto !important;
      align-items: start !important;
      gap: 10px !important;
    }

    .news-feed-status {
      justify-self: end !important;
      max-width: none !important;
      width: auto !important;
      min-width: 112px !important;
      padding: 7px 10px !important;
      font-size: 10.8px !important;
      white-space: nowrap !important;
      overflow: visible !important;
      text-overflow: clip !important;
    }

    .news-brief-card,
    .news-side-card {
      background:
        linear-gradient(180deg, rgba(17, 24, 37, 0.94), rgba(7, 12, 21, 0.96)) !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 14px 34px rgba(0,0,0,.15) !important;
      border-radius: 20px !important;
      border: 0 !important;
    }

    .news-brief-card .news-topic-list,
    .news-side-card .hot-ticker-list,
    .news-side-card .news-source-list {
      display: grid !important;
      gap: 9px !important;
      margin-top: 12px !important;
    }

    .news-brief-card .news-topic-pill {
      border: 1px solid rgba(96, 165, 250, 0.16) !important;
      background: rgba(2, 6, 23, 0.40) !important;
      box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.06) !important;
      color: #f1f7ff !important;
      border-radius: 15px !important;
      padding: 10px 12px !important;
      min-height: 40px !important;
      font-weight: 850 !important;
    }

    .hot-ticker-btn {
      color: #dbeafe !important;
      background: rgba(37, 99, 235, 0.12) !important;
      box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.18) !important;
      border-radius: 15px !important;
      border: 0 !important;
    }

    .news-card-item,
    .news-card-item:first-child {
      overflow: hidden !important;
    }

    .news-headline,
    .news-summary,
    .why-box {
      word-break: normal !important;
      overflow-wrap: normal !important;
      hyphens: none !important;
    }
  }

  @media (max-width: 390px) {
    .news-feed-status {
      min-width: 102px !important;
      font-size: 10.4px !important;
      padding-left: 8px !important;
      padding-right: 8px !important;
    }
  }

  @media (max-width: 760px) {
    #news-page-status.news-feed-status {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      text-align: center !important;
      min-width: 118px !important;
      max-width: none !important;
      width: auto !important;
      padding: 8px 12px !important;
      font-size: 10.8px !important;
      line-height: 1.05 !important;
      font-weight: 950 !important;
      letter-spacing: -0.01em !important;
      white-space: nowrap !important;
      overflow: visible !important;
      text-overflow: clip !important;
    }
  }

  @media (max-width: 390px) {
    #news-page-status.news-feed-status {
      min-width: 112px !important;
      padding-left: 10px !important;
      padding-right: 10px !important;
      font-size: 10.5px !important;
    }
  }
