:root {
      --bg: #070b12;
      --panel: #101722;
      --panel2: #141c29;
      --panel3: #0c1320;
      --line: #233044;
      --line2: #31415c;
      --text: #f8fafc;
      --muted: #9bb2cf;
      --muted2: #6f85a3;
      --blue: #3b82f6;
      --blue2: #1e3a8a;
      --green: #22c55e;
      --red: #ef4444;
      --yellow: #f59e0b;
      --purple: #a855f7;
      --orange: #fb923c;
      --cyan: #38bdf8;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 34%),
        linear-gradient(180deg, #070b12 0%, #0a0f18 100%);
      color: var(--text);
      font-family: Arial, Helvetica, sans-serif;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input {
      font-family: inherit;
    }

    .page-shell {
      min-height: 100vh;
      padding-bottom: 48px;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      height: 72px;
      padding: 0 32px;
      display: flex;
      align-items: center;
      gap: 18px;
      background: rgba(7, 11, 18, 0.95);
      border-bottom: 1px solid rgba(148, 163, 184, 0.14);
      backdrop-filter: blur(14px);
    }

    .logo {
      font-size: 31px;
      font-weight: 950;
      letter-spacing: -0.06em;
      white-space: nowrap;
    }

    .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;
      border: 1px solid rgba(148, 163, 184, 0.22);
      background: rgba(255, 255, 255, 0.055);
      color: var(--text);
      padding: 0 16px;
      font-size: 13px;
      font-weight: 800;
      outline: none;
    }

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

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

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

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

    .suggestion-row {
      padding: 12px 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.1);
      cursor: pointer;
    }

    .suggestion-row:hover {
      background: rgba(59, 130, 246, 0.13);
    }

    .suggestion-row:last-child {
      border-bottom: 0;
    }

    .suggestion-symbol {
      font-size: 14px;
      font-weight: 950;
    }

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

    .menu-wrap {
      position: relative;
    }

    .menu-btn {
      width: 44px;
      height: 44px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.22);
      background: rgba(255, 255, 255, 0.06);
      color: var(--text);
      font-size: 24px;
      font-weight: 900;
      cursor: pointer;
    }

    .menu-btn:hover {
      border-color: rgba(96, 165, 250, 0.55);
      background: rgba(59, 130, 246, 0.14);
    }

    .menu-dropdown {
      position: absolute;
      top: 52px;
      right: 0;
      z-index: 90;
      width: 220px;
      display: none;
      padding: 12px;
      border: 1px solid rgba(96, 165, 250, 0.25);
      border-radius: 16px;
      background: #0d1422;
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.48);
    }

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

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

    .menu-dropdown a:hover {
      background: rgba(59, 130, 246, 0.14);
    }

    .main {
      width: min(1200px, calc(100vw - 48px));
      margin: 22px auto 0;
    }

    .hero {
      padding: 34px 26px;
      border: 1px solid rgba(148, 163, 184, 0.16);
      border-radius: 18px;
      background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 36%),
        #0d1422;
    }

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

    .controls {
      margin-top: 18px;
      padding: 16px;
      border: 1px solid rgba(148, 163, 184, 0.16);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.045);
    }

    .control-row {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .control-row + .control-row {
      margin-top: 14px;
    }

    .calendar-month-toolbar {
      margin-top: 18px;
      padding: 14px 18px;
      border: 1px solid rgba(148, 163, 184, 0.16);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.045);
      display: flex;
      justify-content: center;
    }

    .calendar-month-toolbar .month-nav {
      justify-content: center;
    }

    .events-card-main {
      margin-top: 18px;
    }

    .events-card-title-wrap {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .events-card-actions {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .calendar-pane {
      display: block;
    }

    .filter-btn,
    .view-btn,
    .month-btn {
      height: 38px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.2);
      background: rgba(255, 255, 255, 0.055);
      color: var(--text);
      font-size: 13px;
      font-weight: 950;
      cursor: pointer;
    }

    .filter-btn:hover,
    .view-btn:hover,
    .month-btn:hover {
      border-color: rgba(96, 165, 250, 0.45);
      background: rgba(59, 130, 246, 0.13);
    }

    .filter-btn.is-active,
    .view-btn.is-active {
      border-color: rgba(96, 165, 250, 0.85);
      background: rgba(37, 99, 235, 0.32);
    }

    .month-title {
      min-width: 150px;
      text-align: center;
      font-size: 18px;
      font-weight: 950;
    }

    .control-row-bottom {
      justify-content: center;
      align-items: center;
    }

    .month-nav {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .view-toggle-wrap {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 18px;
    }

    .stat-card {
      padding: 15px;
      border: 1px solid rgba(148, 163, 184, 0.14);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.045);
    }

    .stat-label {
      color: #93c5fd;
      font-size: 11px;
      font-weight: 950;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .stat-value {
      margin-top: 7px;
      font-size: 24px;
      font-weight: 950;
    }

    .card {
      margin-top: 18px;
      padding: 18px;
      border: 1px solid rgba(148, 163, 184, 0.16);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.045);
    }

    .card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 16px;
    }

    .card-title {
      margin: 0;
      font-size: 21px;
      font-weight: 950;
      letter-spacing: -0.03em;
    }

    .card-meta {
      color: #93c5fd;
      font-size: 12px;
      font-weight: 900;
    }

    .event-list {
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.14);
      border-radius: 14px;
    }

    .ff-row {
      display: grid;
      grid-template-columns: 120px 95px 115px 1fr 150px 100px;
      gap: 16px;
      align-items: center;
      min-height: 88px;
      padding: 14px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.12);
      background: rgba(255, 255, 255, 0.035);
      cursor: pointer;
    }

    .ff-row:hover {
      background: rgba(59, 130, 246, 0.11);
    }

    .ff-row:last-child {
      border-bottom: 0;
    }

    .ff-row.is-today {
      outline: 1px solid rgba(34, 197, 94, 0.6);
      background: rgba(34, 197, 94, 0.07);
    }

    .ff-row.is-week {
      border-left: 4px solid rgba(96, 165, 250, 0.72);
    }

    .ff-row.impact-high {
      background:
        linear-gradient(90deg, rgba(239, 68, 68, 0.12), transparent 24%),
        rgba(255, 255, 255, 0.035);
    }

    .date-main {
      color: var(--text);
      font-size: 20px;
      font-weight: 950;
      letter-spacing: -0.04em;
    }

    .date-sub {
      margin-top: 4px;
      color: #93c5fd;
      font-size: 11px;
      font-weight: 950;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .time-cell {
      font-size: 13px;
      font-weight: 950;
      color: #bfdbfe;
    }

    .type-pill,
    .impact-pill,
    .status-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      min-height: 26px;
      padding: 5px 10px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 950;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .type-economic { color: #bfdbfe; background: rgba(59, 130, 246, 0.18); }
    .type-fed { color: #c4b5fd; background: rgba(168, 85, 247, 0.17); }
    .type-watchlist { color: #86efac; background: rgba(34, 197, 94, 0.16); }
    .type-major { color: #fed7aa; background: rgba(251, 146, 60, 0.18); }
    .type-market { color: #fde68a; background: rgba(245, 158, 11, 0.17); }

    .impact-high-pill {
      color: #fecaca;
      background: rgba(239, 68, 68, 0.2);
      border: 1px solid rgba(239, 68, 68, 0.4);
    }

    .impact-medium-pill {
      color: #fde68a;
      background: rgba(245, 158, 11, 0.19);
      border: 1px solid rgba(245, 158, 11, 0.4);
    }

    .impact-low-pill {
      color: #cbd5e1;
      background: rgba(148, 163, 184, 0.13);
      border: 1px solid rgba(148, 163, 184, 0.24);
    }

    .status-pending { color: #dbeafe; background: rgba(59, 130, 246, 0.17); }
    .status-released { color: #dcfce7; background: rgba(34, 197, 94, 0.16); }
    .status-estimated { color: #fde68a; background: rgba(245, 158, 11, 0.17); }

    .event-title {
      font-size: 16px;
      font-weight: 950;
      line-height: 1.25;
    }

    .event-note {
      margin-top: 6px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .data-mini {
      display: grid;
      gap: 4px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
    }

    .data-mini strong {
      color: var(--text);
    }

    .empty-box {
      padding: 22px;
      border: 1px dashed rgba(148, 163, 184, 0.2);
      border-radius: 14px;
      color: #bfdbfe;
      font-size: 15px;
    }

    .month-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 10px;
    }

    .day-name {
      padding: 10px 4px;
      color: #93c5fd;
      text-align: center;
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .day-cell {
      min-height: 126px;
      padding: 10px;
      border: 1px solid rgba(148, 163, 184, 0.12);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.035);
    }

    .day-cell.is-muted {
      opacity: 0.36;
    }

    .day-cell.is-today {
      border-color: rgba(34, 197, 94, 0.85);
      box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.3);
    }

    .day-cell.is-week {
      background: rgba(59, 130, 246, 0.07);
    }

    .day-number {
      font-size: 16px;
      font-weight: 950;
      margin-bottom: 8px;
    }

    .cal-event {
      margin-top: 6px;
      padding: 7px 8px;
      border-radius: 9px;
      font-size: 11px;
      font-weight: 900;
      line-height: 1.15;
      cursor: pointer;
    }

    .cal-event:hover {
      filter: brightness(1.12);
    }

    .cal-high { color: #fecaca; background: rgba(239, 68, 68, 0.2); border: 1px solid rgba(239, 68, 68, 0.36); }
    .cal-medium { color: #fde68a; background: rgba(245, 158, 11, 0.18); border: 1px solid rgba(245, 158, 11, 0.32); }
    .cal-low { color: #dbeafe; background: rgba(59, 130, 246, 0.14); border: 1px solid rgba(59, 130, 246, 0.28); }

    .modal-backdrop {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: rgba(0, 0, 0, 0.68);
    }

    .modal-backdrop.is-open {
      display: flex;
    }

    .modal {
      width: min(760px, 100%);
      max-height: 88vh;
      overflow: auto;
      border: 1px solid rgba(96, 165, 250, 0.32);
      border-radius: 20px;
      background: #0d1422;
      box-shadow: 0 24px 90px rgba(0, 0, 0, 0.65);
    }

    .modal-header {
      padding: 20px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.14);
      display: flex;
      justify-content: space-between;
      gap: 14px;
    }

    .modal-title {
      margin: 0;
      font-size: 26px;
      font-weight: 950;
      letter-spacing: -0.04em;
      line-height: 1.1;
    }

    .modal-subtitle {
      margin-top: 8px;
      color: #93c5fd;
      font-size: 13px;
      font-weight: 900;
    }

    .modal-close {
      width: 36px;
      height: 36px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.2);
      background: rgba(255, 255, 255, 0.06);
      color: var(--text);
      font-size: 18px;
      cursor: pointer;
    }

    .modal-body {
      padding: 20px;
    }

    .detail-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 10px;
      margin-bottom: 16px;
    }

    .detail-card {
      padding: 13px;
      border: 1px solid rgba(148, 163, 184, 0.14);
      border-radius: 13px;
      background: rgba(255, 255, 255, 0.04);
    }

    .detail-label {
      color: #93c5fd;
      font-size: 11px;
      font-weight: 950;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .detail-value {
      margin-top: 7px;
      color: var(--text);
      font-size: 16px;
      font-weight: 950;
    }

    .modal-section {
      margin-top: 14px;
      padding: 15px;
      border: 1px solid rgba(148, 163, 184, 0.14);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.035);
    }

    .modal-section h3 {
      margin: 0 0 8px;
      font-size: 15px;
      font-weight: 950;
    }

    .modal-section p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }


    .feed-status {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 13px 15px;
      border: 1px dashed rgba(148, 163, 184, 0.22);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.035);
      color: var(--muted);
      font-size: 12px;
      font-weight: 850;
    }

    .feed-status-left {
      display: flex;
      align-items: center;
      gap: 9px;
      min-width: 0;
    }

    .feed-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--yellow);
      box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.12);
      flex: 0 0 auto;
    }

    .feed-status.is-connected .feed-dot {
      background: var(--green);
      box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
    }

    .feed-status.is-error .feed-dot {
      background: var(--red);
      box-shadow: 0 0 0 5px rgba(239, 68, 68, 0.12);
    }

    .feed-status-time {
      color: #93c5fd;
      font-size: 11px;
      font-weight: 900;
      white-space: nowrap;
    }

    .calendar-footer-feed {
      margin-top: 18px;
      margin-bottom: 28px;
      opacity: 0.82;
    }

    .calendar-footer-feed:hover {
      opacity: 1;
    }

    .data-lines {
      display: grid;
      gap: 8px;
    }

    .data-line {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 12px;
      align-items: start;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
    }

    .data-line strong {
      color: #93c5fd;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    @media (max-width: 980px) {
      .topbar { padding: 0 18px; }
      .logo { font-size: 28px; }
      .search-area { width: 100%; }
      .stats-row { grid-template-columns: 1fr 1fr; }
      .ff-row { grid-template-columns: 110px 80px 1fr; }
      .ff-type, .ff-data, .ff-impact { display: none; }
      .month-grid { gap: 7px; }
      .day-cell { min-height: 112px; padding: 8px; }
    }

    @media (max-width: 680px) {
      .topbar {
        height: auto;
        min-height: 72px;
        flex-wrap: wrap;
        padding: 14px;
      }

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

      .main {
        width: min(100% - 24px, 1200px);
        margin-top: 14px;
      }

      .hero, .controls, .card { padding: 14px; }
      .stats-row, .detail-grid { grid-template-columns: 1fr; }
      .control-row-bottom { flex-direction: column; align-items: stretch; }
      .view-toggle-wrap { margin-left: 0; justify-content: flex-start; }
      .month-grid { grid-template-columns: repeat(2, 1fr); }
      .day-name { display: none; }
      .day-cell.is-muted { display: none; }
    }


@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;
    }
  }


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

    body {
      padding-top: 0 !important;
    }

    .home-platform-bar,
    .topbar,
    .platform-bar {
      position: sticky !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      z-index: 20000 !important;
      width: 100% !important;
      max-width: 100vw !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;
    }

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

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

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

    .home-menu-wrap,
    .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;
      max-width: 40px !important;
      max-height: 40px !important;
      margin: 0 !important;
      padding: 0 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      flex: 0 0 40px !important;
    }

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

    .home-menu-btn:hover,
    .home-menu-btn:focus,
    .menu-btn:hover,
    .menu-btn:focus,
    .chart-menu-btn:hover,
    .chart-menu-btn:focus,
    #home-menu-btn:hover,
    #home-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;
      background-color: rgba(30, 41, 59, 0.36) !important;
      border: 0 !important;
      box-shadow: none !important;
      outline: none !important;
    }

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

    .home-search-area .symbol-search-wrap,
    .search-wrap,
    .symbol-search-wrap {
      position: relative !important;
      width: 100% !important;
      max-width: none !important;
      min-width: 0 !important;
      height: 40px !important;
      min-height: 40px !important;
      margin: 0 !important;
      padding: 0 !important;
      display: block !important;
    }

    .home-search-area .symbol-search,
    .symbol-search,
    .search-input,
    .top-search,
    .chart-top-search,
    #symbol-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;
      border: 1px solid rgba(120, 139, 161, 0.18) !important;
      background: rgba(255, 255, 255, 0.055) !important;
      color: #f8fafc !important;
      outline: none !important;
      box-shadow: none !important;
      font-size: 14px !important;
      font-weight: 800 !important;
      line-height: 40px !important;
      display: block !important;
    }

    .home-search-area .symbol-search:focus,
    .symbol-search:focus,
    .search-input:focus,
    .top-search:focus,
    .chart-top-search:focus,
    #symbol-search:focus,
    #global-search:focus,
    #toolbar-search:focus,
    #top-search:focus,
    #chart-top-search:focus {
      border-color: rgba(96, 165, 250, 0.62) !important;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16) !important;
    }

    .home-search-area .add-symbol-btn,
    .add-symbol-btn,
    .search-btn,
    .top-search-btn,
    .chart-top-search-btn,
    #add-symbol-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;
      max-height: 40px !important;
      margin: 0 !important;
      padding: 0 10px !important;
      border-radius: 999px !important;
      border: 1px solid #60a5fa !important;
      background: #2563eb !important;
      color: #ffffff !important;
      box-shadow: none !important;
      font-size: 12px !important;
      font-weight: 950 !important;
      line-height: 40px !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      text-align: center !important;
      white-space: nowrap !important;
    }

    .home-search-area .add-symbol-btn:hover,
    .add-symbol-btn:hover,
    .search-btn:hover,
    .top-search-btn:hover,
    .chart-top-search-btn:hover,
    #add-symbol-btn:hover,
    #global-search-btn:hover,
    #toolbar-search-btn:hover,
    #top-search-btn:hover,
    #chart-top-search-btn:hover {
      background: #2f6df7 !important;
      border-color: #93c5fd !important;
      transform: none !important;
    }

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

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

    .suggestions,
    .symbol-suggestions,
    .chart-top-suggestions,
    #global-suggestions,
    #toolbar-suggestions,
    #chart-top-suggestions {
      z-index: 20006 !important;
    }

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


  @media (max-width: 760px) {
    body > .page-shell {
      width: 100% !important;
      max-width: 100vw !important;
      margin: 0 !important;
      padding: 0 0 28px 0 !important;
      overflow-x: hidden !important;
    }

    body > .page-shell > .main {
      width: 100% !important;
      max-width: 100vw !important;
      margin: 0 !important;
      padding: 14px 12px 28px !important;
      overflow-x: hidden !important;
    }

    main.page-shell {
      width: 100% !important;
      max-width: 100vw !important;
      margin: 0 !important;
      padding: 14px 12px 28px !important;
      overflow-x: hidden !important;
    }

    body > .page-shell > .main > .hero,
    main.page-shell > .hero {
      margin-top: 0 !important;
      margin-bottom: 0 !important;
      border-radius: 18px !important;
      padding: 22px 18px !important;
    }

    body > .page-shell > .main > .hero + *,
    main.page-shell > .hero + * {
      margin-top: 14px !important;
    }

    body > .page-shell > .main > .controls,
    body > .page-shell > .main > .card,
    main.page-shell > .section,
    main.page-shell > .card {
      margin-top: 14px !important;
    }

    .hero h1,
    .hero-title {
      margin-top: 0 !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;
  }


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

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

  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;
  }

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

  .calendar-hero-v2 {
    min-height: 154px !important;
    margin: 0 0 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;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px) !important;
    gap: 20px !important;
    align-items: center !important;
  }

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

  .calendar-hero-v2 .eyebrow,
  .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;
  }

  .calendar-hero-v2 .eyebrow {
    margin: 0 0 12px !important;
    letter-spacing: .18em !important;
  }

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

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

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

  .calendar-hero-chip {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 34px !important;
    padding: 8px 12px !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;
    font-weight: 950 !important;
    white-space: nowrap !important;
  }

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

  .calendar-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;
  }

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

  .calendar-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;
  }

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

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

  .calendar-side-column {
    position: sticky !important;
    top: 94px !important;
  }

  .calendar-feed-card-v2,
  .calendar-side-card,
  .calendar-filter-card,
  .calendar-month-toolbar,
  .stats-row .stat-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;
  }

  .calendar-feed-card-v2 {
    margin: 0 !important;
    padding: 18px !important;
  }

  .calendar-filter-card,
  .calendar-month-toolbar,
  .calendar-footer-feed {
    margin: 0 !important;
    padding: 17px !important;
  }

  .calendar-filter-card .side-kicker,
  .calendar-month-toolbar .side-kicker {
    margin: 0 0 12px !important;
  }

  .calendar-filter-button-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 9px !important;
    align-items: center !important;
  }

  .filter-btn,
  .view-btn,
  .month-btn {
    min-height: 38px !important;
    height: auto !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:hover,
  .view-btn:hover,
  .month-btn:hover {
    border-color: rgba(96, 165, 250, 0.55) !important;
    background: rgba(37, 99, 235, 0.18) !important;
  }

  .filter-btn.is-active,
  .view-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;
  }

  .calendar-month-toolbar {
    display: block !important;
  }

  .month-nav {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
    align-items: center !important;
  }

  .month-title {
    grid-column: 1 / -1 !important;
    order: -1 !important;
    min-height: 48px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !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;
    color: #f8fbff !important;
    font-size: 21px !important;
    font-weight: 950 !important;
    letter-spacing: -0.03em !important;
  }

  .calendar-side-stats {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin: 0 !important;
  }

  .stats-row .stat-card {
    margin: 0 !important;
    min-height: 82px !important;
    padding: 14px !important;
  }

  .stat-label {
    color: #93c5fd !important;
    font-size: 10.5px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    letter-spacing: .13em !important;
  }

  .stat-value {
    color: #f8fbff !important;
    font-size: 24px !important;
    line-height: 1 !important;
    letter-spacing: -0.04em !important;
  }

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

  .calendar-feed-title-row .side-kicker {
    margin: 0 0 9px !important;
  }

  .card-title {
    color: #f8fbff !important;
    font-size: 22px !important;
    line-height: 1.05 !important;
    font-weight: 950 !important;
    letter-spacing: -0.03em !important;
  }

  .card-meta {
    color: #93c5fd !important;
    font-size: 12px !important;
    font-weight: 900 !important;
  }

  .event-list {
    border: 0 !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    display: grid !important;
    gap: 10px !important;
    background: transparent !important;
  }

  .ff-row {
    min-height: 86px !important;
    padding: 15px !important;
    border: 0 !important;
    border-radius: 18px !important;
    grid-template-columns: 100px 84px 112px minmax(0, 1fr) 160px 104px !important;
    gap: 14px !important;
    background: rgba(2, 6, 23, 0.34) !important;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08) !important;
  }

  .ff-row:hover {
    background: rgba(37, 99, 235, 0.10) !important;
    box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.22) !important;
  }

  .ff-row.impact-high {
    background:
      linear-gradient(90deg, rgba(239, 68, 68, 0.13), transparent 26%),
      rgba(2, 6, 23, 0.34) !important;
  }

  .ff-row.is-today {
    outline: none !important;
    box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.44), 0 10px 28px rgba(34, 197, 94, 0.08) !important;
  }

  .ff-row.is-week {
    border-left: 0 !important;
  }

  .date-main {
    color: #f8fbff !important;
    font-size: 20px !important;
  }

  .event-title {
    color: #f8fbff !important;
    font-size: 16px !important;
    line-height: 1.22 !important;
    letter-spacing: -0.02em !important;
  }

  .event-note,
  .data-mini,
  .modal-section p {
    color: #bfd2e6 !important;
  }

  .type-pill,
  .impact-pill,
  .status-pill {
    border-radius: 999px !important;
    font-size: 10.5px !important;
    line-height: 1 !important;
  }

  .month-grid {
    gap: 10px !important;
  }

  .day-name {
    color: #93c5fd !important;
  }

  .day-cell {
    border: 0 !important;
    border-radius: 18px !important;
    background: rgba(2, 6, 23, 0.34) !important;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08) !important;
  }

  .day-cell.is-week {
    background: rgba(37, 99, 235, 0.09) !important;
  }

  .day-cell.is-today {
    border: 0 !important;
    box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.48), 0 10px 26px rgba(34, 197, 94, 0.08) !important;
  }

  .feed-status {
    border: 0 !important;
    color: #bfd2e6 !important;
    font-weight: 820 !important;
    opacity: 1 !important;
  }

  .modal-backdrop {
    z-index: 120000 !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
  }

  .modal {
    border: 1px solid rgba(96, 165, 250, 0.30) !important;
    border-radius: 24px !important;
    background: linear-gradient(180deg, rgba(17, 24, 37, 0.98), rgba(7, 12, 21, 0.99)) !important;
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.70) !important;
  }

  .detail-card,
  .modal-section {
    border: 0 !important;
    border-radius: 16px !important;
    background: rgba(2, 6, 23, 0.38) !important;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08) !important;
  }

  @media (max-width: 1350px) {
    .calendar-layout-v2 {
      grid-template-columns: minmax(620px, 1fr) minmax(300px, 335px) !important;
      gap: 14px !important;
    }

    .ff-row {
      grid-template-columns: 92px 78px 104px minmax(0, 1fr) 138px 96px !important;
      gap: 12px !important;
    }
  }

  @media (max-width: 1023px) {
    .calendar-main-v2 {
      width: 100% !important;
      max-width: none !important;
      padding: 16px 18px 38px !important;
    }

    .calendar-hero-v2 {
      grid-template-columns: 1fr !important;
      border-radius: 24px !important;
      padding: 22px !important;
    }

    .calendar-hero-right {
      align-items: flex-start !important;
    }

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

    .calendar-layout-v2 {
      grid-template-columns: 1fr !important;
    }

    .calendar-side-column {
      position: static !important;
      top: auto !important;
      order: -1 !important;
    }

    .calendar-side-stats {
      grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    .ff-row {
      grid-template-columns: 100px 84px minmax(0, 1fr) 104px !important;
    }

    .ff-type,
    .ff-data {
      display: none !important;
    }
  }

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

    .calendar-main-v2 {
      width: 100% !important;
      max-width: none !important;
      margin: 0 !important;
      padding: 14px 14px 36px !important;
    }

    .calendar-hero-v2 {
      margin: 14px 0 14px !important;
      padding: 18px !important;
      border-radius: 20px !important;
      gap: 14px !important;
    }

    .calendar-hero-v2 .eyebrow {
      font-size: 10.5px !important;
      line-height: 1.1 !important;
      margin-bottom: 12px !important;
    }

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

    .calendar-hero-v2 .hero-text {
      color: #dbeafe !important;
      font-size: 14px !important;
      line-height: 1.42 !important;
    }

    .calendar-hero-chip {
      align-self: flex-start !important;
      min-height: 32px !important;
      font-size: 11px !important;
    }

    .calendar-hero-metrics {
      width: 100% !important;
      max-width: none !important;
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .calendar-hero-metric {
      min-height: 62px !important;
      padding: 12px 13px !important;
      border-radius: 16px !important;
    }

    .calendar-hero-metric strong {
      font-size: 22px !important;
    }

    .calendar-layout-v2 {
      gap: 14px !important;
    }

    .calendar-side-column {
      display: contents !important;
    }

    .calendar-primary-column {
      display: contents !important;
    }

    .calendar-filter-card { order: 1 !important; }
    .calendar-month-toolbar { order: 2 !important; }
    .calendar-side-stats { order: 3 !important; }
    .calendar-feed-card-v2 { order: 4 !important; }
    .calendar-footer-feed { order: 5 !important; }

    .calendar-filter-card,
    .calendar-month-toolbar,
    .calendar-feed-card-v2,
    .calendar-footer-feed,
    .stats-row .stat-card {
      border-radius: 20px !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 14px 34px rgba(0,0,0,.15) !important;
    }

    .calendar-filter-card,
    .calendar-month-toolbar,
    .calendar-feed-card-v2,
    .calendar-footer-feed {
      padding: 16px !important;
      margin: 0 !important;
    }

    .calendar-filter-card .side-kicker,
    .calendar-filter-button-row {
      display: none !important;
    }

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

    .mobile-calendar-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-calendar-filter-menu {
      position: relative !important;
      width: 100% !important;
      min-width: 0 !important;
    }

    .mobile-calendar-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-calendar-filter-button:focus,
    .mobile-calendar-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-calendar-filter-chevron {
      color: #93c5fd !important;
      font-size: 13px !important;
      line-height: 1 !important;
      transition: transform 140ms ease !important;
    }

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

    .mobile-calendar-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-calendar-filter-menu.is-open .mobile-calendar-filter-options {
      display: grid !important;
    }

    .mobile-calendar-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-calendar-filter-options button:hover,
    .mobile-calendar-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;
    }

    .month-nav {
      grid-template-columns: 1fr 1fr 1fr !important;
      gap: 8px !important;
    }

    .month-title {
      min-height: 44px !important;
      border-radius: 16px !important;
      font-size: 20px !important;
    }

    .month-btn {
      width: 100% !important;
      min-height: 40px !important;
      padding: 9px 10px !important;
      font-size: 12px !important;
    }

    .calendar-side-stats {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 10px !important;
      margin: 0 !important;
    }

    .stats-row .stat-card {
      min-height: 76px !important;
      padding: 13px !important;
      border-radius: 18px !important;
    }

    .stat-value {
      font-size: 22px !important;
    }

    .calendar-feed-title-row {
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 12px !important;
    }

    .view-toggle-wrap {
      margin-left: 0 !important;
      width: 100% !important;
      display: grid !important;
      grid-template-columns: 1fr 1fr !important;
      gap: 8px !important;
    }

    .view-btn {
      width: 100% !important;
      min-height: 42px !important;
    }

    .event-list {
      gap: 10px !important;
    }

    .ff-row {
      grid-template-columns: 72px minmax(0, 1fr) !important;
      grid-template-areas:
        "date title"
        "time title"
        "impact data" !important;
      gap: 8px 12px !important;
      min-height: auto !important;
      padding: 14px !important;
      border-radius: 17px !important;
      align-items: start !important;
    }

    .ff-date { grid-area: date !important; }
    .time-cell { grid-area: time !important; }
    .ff-title { grid-area: title !important; min-width: 0 !important; }
    .ff-impact { grid-area: impact !important; display: block !important; }
    .ff-data { grid-area: data !important; display: block !important; }
    .ff-type { display: none !important; }
    .ff-status { display: none !important; }

    .date-main {
      font-size: 18px !important;
    }

    .event-title {
      font-size: 15.5px !important;
    }

    .event-note {
      font-size: 12.5px !important;
      line-height: 1.35 !important;
    }

    .data-mini {
      font-size: 11.5px !important;
      line-height: 1.32 !important;
    }

    .month-grid {
      grid-template-columns: 1fr !important;
      gap: 9px !important;
    }

    .day-name,
    .day-cell.is-muted {
      display: none !important;
    }

    .day-cell {
      min-height: auto !important;
      padding: 13px !important;
      border-radius: 17px !important;
    }

    .feed-status {
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 8px !important;
      font-size: 12px !important;
    }

    .feed-status-time {
      white-space: normal !important;
    }

    .modal {
      width: min(100%, calc(100vw - 24px)) !important;
      max-height: 86vh !important;
      border-radius: 20px !important;
    }

    .modal-header,
    .modal-body {
      padding: 16px !important;
    }

    .modal-title {
      font-size: 22px !important;
    }

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

    .data-line {
      grid-template-columns: 1fr !important;
      gap: 4px !important;
    }
  }

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

    .calendar-hero-v2,
    .calendar-filter-card,
    .calendar-month-toolbar,
    .calendar-feed-card-v2,
    .calendar-footer-feed {
      padding: 14px !important;
      border-radius: 18px !important;
    }

    .calendar-side-stats {
      grid-template-columns: 1fr !important;
    }

    .ff-row {
      grid-template-columns: 66px minmax(0, 1fr) !important;
      gap: 8px 10px !important;
    }
  }


  .calendar-month-toolbar .month-nav {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 9px !important;
    align-items: center !important;
  }

  .calendar-month-toolbar .month-title {
    grid-column: 1 / -1 !important;
    order: -1 !important;
  }

  #month-title.month-title {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
  }

  #prev-month-btn { grid-column: 1 !important; grid-row: 2 !important; }
  #today-btn { grid-column: 2 !important; grid-row: 2 !important; }
  #next-month-btn { grid-column: 3 !important; grid-row: 2 !important; }


  .calendar-month-toolbar .month-nav {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-template-areas:
      "title title title"
      "prev today next" !important;
    gap: 10px !important;
  }

  .calendar-month-toolbar #month-title {
    grid-area: title !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .calendar-month-toolbar #prev-month-btn { grid-area: prev !important; width: 100% !important; }
  .calendar-month-toolbar #today-btn { grid-area: today !important; width: 100% !important; }
  .calendar-month-toolbar #next-month-btn { grid-area: next !important; width: 100% !important; }

  .status-upcoming { color: #dbeafe; background: rgba(59, 130, 246, 0.17); }
  .status-today { color: #fef3c7; background: rgba(245, 158, 11, 0.18); }
  .status-passed { color: #cbd5e1; background: rgba(148, 163, 184, 0.13); }
  .status-completed { color: #dcfce7; background: rgba(34, 197, 94, 0.16); }

  .ff-data .event-data-muted {
    color: #9fb2c7 !important;
    font-weight: 850 !important;
  }

  @media (max-width: 760px) {
    .calendar-month-toolbar .month-nav {
      grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
  }


  @media (max-width: 760px) {
    html body .calendar-side-stats.stats-row,
    html body section.calendar-side-stats {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 9px !important;
      margin: 0 !important;
      width: 100% !important;
    }

    html body .calendar-side-stats .stat-card,
    html body .stats-row.calendar-side-stats .stat-card {
      min-width: 0 !important;
      min-height: 66px !important;
      padding: 12px !important;
      border-radius: 16px !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: center !important;
    }

    html body .calendar-side-stats .stat-label {
      font-size: 9.5px !important;
      line-height: 1.05 !important;
      letter-spacing: .10em !important;
      white-space: normal !important;
    }

    html body .calendar-side-stats .stat-value {
      margin-top: 6px !important;
      font-size: 20px !important;
      line-height: 1 !important;
      overflow: hidden !important;
      text-overflow: ellipsis !important;
      white-space: nowrap !important;
    }

    html body .event-list {
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 12px !important;
      border: 0 !important;
      overflow: visible !important;
      background: transparent !important;
    }

    html body .event-list .ff-row {
      display: grid !important;
      grid-template-columns: 70px minmax(0, 1fr) !important;
      grid-template-areas:
        "date title"
        "time title"
        "tags tags"
        "data data" !important;
      gap: 8px 11px !important;
      min-height: 0 !important;
      padding: 14px !important;
      border: 1px solid rgba(148, 163, 184, 0.10) !important;
      border-radius: 18px !important;
      align-items: start !important;
      overflow: hidden !important;
      background: rgba(2, 6, 23, 0.34) !important;
      box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.055) !important;
    }

    html body .event-list .ff-row.impact-high {
      background:
        linear-gradient(90deg, rgba(239, 68, 68, 0.13), transparent 34%),
        rgba(2, 6, 23, 0.36) !important;
    }

    html body .event-list .ff-row.is-today {
      border-color: rgba(34, 197, 94, 0.45) !important;
      box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.20) !important;
    }

    html body .event-list .date-cell-mini,
    html body .event-list .ff-date {
      grid-area: date !important;
      min-width: 0 !important;
    }

    html body .event-list .time-cell {
      grid-area: time !important;
      min-width: 0 !important;
      font-size: 12px !important;
      line-height: 1.15 !important;
      white-space: normal !important;
    }

    html body .event-list .ff-title-block {
      grid-area: title !important;
      min-width: 0 !important;
      align-self: start !important;
    }

    html body .event-list .ff-type {
      display: none !important;
    }

    html body .event-list .ff-impact {
      grid-area: tags !important;
      display: block !important;
      min-width: 0 !important;
    }

    html body .event-list .ff-impact > div {
      display: flex !important;
      flex-direction: row !important;
      align-items: center !important;
      justify-content: flex-start !important;
      flex-wrap: wrap !important;
      gap: 7px !important;
    }

    html body .event-list .ff-data {
      grid-area: data !important;
      display: grid !important;
      width: 100% !important;
      min-width: 0 !important;
      padding: 10px 11px !important;
      border-radius: 14px !important;
      background: rgba(15, 23, 42, 0.62) !important;
      box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.10) !important;
    }

    html body .event-list .date-main {
      font-size: 18px !important;
      line-height: 1.02 !important;
      letter-spacing: -0.04em !important;
    }

    html body .event-list .date-sub {
      margin-top: 4px !important;
      font-size: 10px !important;
    }

    html body .event-list .event-title {
      font-size: 15.5px !important;
      line-height: 1.16 !important;
      letter-spacing: -0.025em !important;
      overflow-wrap: anywhere !important;
    }

    html body .event-list .event-note {
      margin-top: 6px !important;
      font-size: 12.4px !important;
      line-height: 1.34 !important;
      color: #c7d7ef !important;
    }

    html body .event-list .data-mini {
      font-size: 11.3px !important;
      line-height: 1.32 !important;
      gap: 4px !important;
    }

    html body .event-list .impact-pill,
    html body .event-list .status-pill {
      min-height: 26px !important;
      padding: 5px 9px !important;
      font-size: 9.8px !important;
      line-height: 1.05 !important;
      white-space: nowrap !important;
    }

    html body #month-grid.month-grid {
      display: grid !important;
      grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
      gap: 4px !important;
      width: 100% !important;
      overflow: visible !important;
    }

    html body #month-grid .day-name {
      display: block !important;
      padding: 4px 0 !important;
      font-size: 8.5px !important;
      line-height: 1 !important;
      letter-spacing: .04em !important;
      text-align: center !important;
    }

    html body #month-grid .day-cell,
    html body #month-grid .day-cell.is-muted {
      display: block !important;
      min-width: 0 !important;
      min-height: 54px !important;
      padding: 5px 4px !important;
      border-radius: 10px !important;
      overflow: hidden !important;
    }

    html body #month-grid .day-cell.is-muted {
      opacity: .28 !important;
    }

    html body #month-grid .day-cell.is-today {
      border-color: rgba(34, 197, 94, 0.80) !important;
      box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.24) !important;
    }

    html body #month-grid .day-number {
      margin: 0 0 4px !important;
      font-size: 11.5px !important;
      line-height: 1 !important;
      text-align: left !important;
    }

    html body #month-grid .cal-event {
      width: 100% !important;
      height: 8px !important;
      min-height: 8px !important;
      margin: 3px 0 0 !important;
      padding: 0 !important;
      border-radius: 999px !important;
      overflow: hidden !important;
      color: transparent !important;
      font-size: 0 !important;
      line-height: 0 !important;
      white-space: nowrap !important;
      cursor: pointer !important;
    }
  }

  @media (max-width: 390px) {
    html body .calendar-side-stats.stats-row,
    html body section.calendar-side-stats {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 8px !important;
    }

    html body .calendar-side-stats .stat-card,
    html body .stats-row.calendar-side-stats .stat-card {
      min-height: 60px !important;
      padding: 10px !important;
      border-radius: 15px !important;
    }

    html body .calendar-side-stats .stat-label {
      font-size: 8.8px !important;
      letter-spacing: .08em !important;
    }

    html body .calendar-side-stats .stat-value {
      font-size: 18px !important;
    }

    html body .event-list .ff-row {
      grid-template-columns: 64px minmax(0, 1fr) !important;
      gap: 8px 10px !important;
      padding: 13px !important;
    }

    html body .event-list .event-title {
      font-size: 14.8px !important;
    }

    html body #month-grid.month-grid {
      gap: 3px !important;
    }

    html body #month-grid .day-cell,
    html body #month-grid .day-cell.is-muted {
      min-height: 48px !important;
      padding: 4px 3px !important;
      border-radius: 9px !important;
    }

    html body #month-grid .day-number {
      font-size: 10.5px !important;
    }
  }


  @media (max-width: 760px) {
    html body .platform-shell > header.home-platform-bar {
      position: sticky !important;
      top: 0 !important;
      z-index: 90000 !important;
      width: 100% !important;
      max-width: 100% !important;
      min-height: 118px !important;
      height: auto !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-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;
    }

    html body .platform-shell > header.home-platform-bar > a.home-platform-logo.logo,
    html body .platform-shell > header.home-platform-bar > a.home-platform-logo {
      grid-area: logo !important;
      justify-self: start !important;
      align-self: center !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: flex-start !important;
      width: auto !important;
      height: 42px !important;
      min-height: 42px !important;
      margin: 0 !important;
      padding: 0 !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;
      white-space: nowrap !important;
      text-align: left !important;
      transform: none !important;
      position: static !important;
    }

    html body .platform-shell > header.home-platform-bar .home-menu-wrap {
      grid-area: menu !important;
      justify-self: end !important;
      align-self: center !important;
      width: 42px !important;
      height: 42px !important;
      min-width: 42px !important;
      min-height: 42px !important;
      margin: 0 !important;
      padding: 0 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      position: relative !important;
      right: auto !important;
      top: auto !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-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) auto !important;
      align-items: center !important;
      gap: 10px !important;
      flex-direction: unset !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: 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;
    }

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

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

    html body .platform-shell > header.home-platform-bar > a.home-platform-logo.logo,
    html body .platform-shell > header.home-platform-bar > a.home-platform-logo {
      font-size: 26px !important;
      height: 42px !important;
      min-height: 42px !important;
      line-height: 1 !important;
    }

    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 {
      min-width: 70px !important;
      padding: 0 13px !important;
      font-size: 13px !important;
    }
  }
