/* ─── Charts Page Design System ────────────────────────────────────── */
:root {
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --bg: #000;
  --bg-surface: #0d0d0f;
  --bg-card: #111115;
  --bg-hover: #1a1a1f;
  --bg-sidebar: #0a0a0d;
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.12);
  --text: #f5f5f7;
  --text-1: #f5f5f7;
  --text-2: #8e8e93;
  --text-3: #48484a;
  --green: #30d158;
  --red: #ff453a;
  --blue: #0a84ff;
  --accent: #0a84ff;
  --purple: #af52de;
  --orange: #ff9f0a;
  --cyan: #64d2ff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; overflow: hidden; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* Top Indices sliding ticker tape */
.ticker-tape {
  height: 28px;
  background: #020204;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 105;
}
.ticker-wrap {
  width: 100%;
  overflow: hidden;
}
.ticker-items {
  display: flex;
  white-space: nowrap;
  animation: ticker 90s linear infinite;
  gap: 0;
  padding-left: 100%;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 0 18px;
  border-right: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: background 0.15s;
}
.ticker-item:hover { background: rgba(255,255,255,0.04); }
.ticker-sym { color: var(--text); font-weight: 700; }
.ticker-val { color: var(--text-2); }
.ticker-pct { font-weight: 600; padding: 1px 4px; border-radius: 3px; font-size: 10px; }
.ticker-pct.up { background: rgba(48,209,88,0.15); color: var(--green); }
.ticker-pct.down { background: rgba(255,69,58,0.15); color: var(--red); }

@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

.workspace-toggle-group {
  display: flex;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px;
}
.ws-btn {
  background: none; border: none; color: var(--text-2);
  font-size: 11px; font-weight: 600; padding: 4px 10px;
  border-radius: 4px; cursor: pointer; transition: all 0.15s;
}
.ws-btn:hover { color: var(--text); }
.ws-btn.active { background: var(--blue); color: #fff; }

.movers-list {
  display: flex;
  flex-direction: column;
}
.mover-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.02);
  cursor: pointer;
  transition: background 0.12s;
}
.mover-item:hover { background: var(--bg-hover); }
.mover-left { display: flex; flex-direction: column; gap: 2px; }
.mover-sym { font-size: 12px; font-weight: 700; }
.mover-name { font-size: 9px; color: var(--text-2); max-width: 110px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mover-right { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.mover-price { font-size: 12px; font-weight: 600; font-family: var(--font-mono); }
.mover-change { font-size: 10px; font-weight: 600; font-family: var(--font-mono); }

/* Global Toasts */
.toast-container {
  position: fixed; bottom: 20px; right: 20px;
  display: flex; flex-direction: column; gap: 8px;
  z-index: 999;
}
.toast-item {
  background: rgba(10, 132, 255, 0.15); border: 1px solid var(--blue);
  backdrop-filter: blur(12px); padding: 10px 16px; border-radius: 6px;
  color: #fff; font-size: 12px; display: flex; align-items: center; gap: 8px;
  animation: slideIn 0.25s ease-out;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.toast-item.green { border-color: var(--green); background: rgba(48,209,88,0.15); }
.toast-item.red { border-color: var(--red); background: rgba(255,69,58,0.15); }

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ─── Header ──────────────────────────────────────────────────────── */
.charts-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(13,13,15,0.95);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-left { display: flex; align-items: center; gap: 12px; }
.back-link {
  display: flex; align-items: center; gap: 6px;
  text-decoration: none; color: var(--text-2);
  font-size: 13px; transition: color 0.18s;
}
.back-link:hover { color: var(--text); }
.back-link svg { stroke: currentColor; }
.header-divider { color: var(--text-3); font-size: 18px; }
.header-title { font-size: 13px; font-weight: 600; color: var(--text); }
.header-right { display: flex; align-items: center; gap: 6px; }

/* Mobile Menu & Backdrop */
.sidebar-toggle-btn {
  display: none;
  background: none; border: none; color: var(--text-2);
  cursor: pointer; padding: 4px; border-radius: 5px;
  align-items: center; justify-content: center;
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0; margin-right: 4px;
}
.sidebar-toggle-btn:hover { color: var(--text); background: var(--bg-hover); }
.sidebar-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  z-index: 290;
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.status-dot.blinking { animation: blink 1.8s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.status-label { font-size: 11px; font-weight: 600; color: var(--green); letter-spacing: 0.08em; }

/* ─── Layout ──────────────────────────────────────────────────────── */
.charts-layout {
  display: flex;
  height: calc(100vh - 48px);
  overflow: hidden;
}

/* ─── Sidebar ─────────────────────────────────────────────────────── */
.sidebar {
  width: 220px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  background: var(--bg-surface);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
  position: relative;
  background: rgba(255,255,255,0.01);
}
.search-input-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 8px;
  gap: 6px;
  min-width: 0;
  transition: border-color 0.15s, background 0.15s;
}
.search-input-wrapper:focus-within {
  border-color: var(--blue);
  background: rgba(255,255,255,0.06);
}
.search-icon { color: var(--text-2); flex-shrink: 0; }
#symbol-input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-family: var(--font-sans); font-size: 12px;
  padding: 2px 0; min-width: 0;
}
#symbol-input::placeholder { color: var(--text-3); }
.search-go-btn {
  background: var(--blue); border: none; border-radius: 6px;
  color: #fff; font-size: 11px; font-weight: 600; padding: 5px 10px;
  cursor: pointer; transition: background 0.15s;
  flex-shrink: 0;
}
.search-go-btn:hover { background: #0070d8; }
.suggestions-list {
  position: absolute; top: calc(100%); left: 0; right: 0;
  background: var(--bg-card); border: 1px solid var(--border-strong);
  border-top: none; z-index: 200; max-height: 200px; overflow-y: auto;
}
.suggestions-list.hidden { display: none; }
.suggestion-item {
  padding: 8px 10px; cursor: pointer; font-size: 12px;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.12s;
}
.suggestion-item:hover { background: var(--bg-hover); }
.suggestion-item .sym { font-weight: 600; }
.suggestion-item .exch { font-size: 10px; color: var(--text-2); }

.watchlist-header {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--text-3); padding: 10px 12px 6px; text-transform: uppercase;
}
.watchlist { flex: 1; overflow-y: auto; }
.watchlist::-webkit-scrollbar { width: 4px; }
.watchlist::-webkit-scrollbar-track { background: transparent; }
.watchlist::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 2px; }

/* Watchlist filter header */
.wl-header { position: sticky; top: 0; z-index: 10; }
.wl-header input:focus { border-color: var(--blue) !important; }
.wl-cat-btn:hover { opacity: 0.85; transform: translateY(-1px); }

.watchlist-item {
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 2px solid transparent;
  transition: background 0.12s, border-color 0.12s;
}
.watchlist-item:hover { background: var(--bg-hover); }
.watchlist-item.active {
  background: rgba(10,132,255,0.08);
  border-left-color: var(--blue);
}
.wi-symbol { font-size: 13px; font-weight: 700; }
.wi-name { font-size: 10px; color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wi-price { font-size: 12px; font-weight: 600; font-family: var(--font-mono); }
.wi-change { font-size: 10px; font-family: var(--font-mono); }
.up { color: var(--green); }
.down { color: var(--red); }

/* ─── Main Chart Area ─────────────────────────────────────────────── */
.chart-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}

/* Stock Info Bar */
.stock-info-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
  flex-wrap: wrap;
  min-height: 50px;
}
.sib-symbol { font-size: 18px; font-weight: 800; }
.sib-name { font-size: 12px; color: var(--text-2); }
.sib-price-block { display: flex; align-items: baseline; gap: 8px; margin-left: auto; }
.sib-price { font-size: 22px; font-weight: 700; font-family: var(--font-mono); }
.sib-change { font-size: 13px; font-weight: 600; font-family: var(--font-mono); }
.sib-stats { display: flex; gap: 14px; }
.sib-stat { display: flex; flex-direction: column; gap: 1px; }
.sib-stat-label { font-size: 9px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; }
.sib-stat span:last-child { font-size: 12px; font-family: var(--font-mono); }

/* Toolbar */
.chart-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
  gap: 12px;
  flex-wrap: wrap;
}
.toolbar-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.timeframe-group, .chart-type-group {
  display: flex; align-items: center; gap: 2px;
  background: var(--bg-card); border-radius: 6px; padding: 2px;
}
.tf-btn, .ct-btn {
  background: none; border: none; color: var(--text-2);
  font-family: var(--font-sans); font-size: 12px; font-weight: 500;
  padding: 4px 10px; border-radius: 5px; cursor: pointer;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}
.ct-btn { display: flex; align-items: center; gap: 5px; padding: 4px 8px; }
.tf-btn:hover, .ct-btn:hover { background: var(--bg-hover); color: var(--text); }
.tf-btn.active, .ct-btn.active { background: var(--blue); color: #fff; }

.indicators-toggle-group {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.indicator-label { font-size: 11px; color: var(--text-2); font-weight: 600; }
.ind-toggle {
  display: flex; align-items: center; gap: 4px;
  font-size: 11px; color: var(--text-2); cursor: pointer;
  transition: color 0.12s;
}
.ind-toggle:hover { color: var(--text); }
.ind-toggle input { accent-color: var(--blue); cursor: pointer; }
.ind-toggle span { user-select: none; }

/* Chart Panes */
.chart-pane-wrapper {
  position: relative;
  border-bottom: 1px solid var(--border);
}
.chart-pane-label {
  position: absolute;
  top: 6px; left: 10px;
  font-size: 10px; font-weight: 600;
  color: var(--text-3); letter-spacing: 0.06em;
  text-transform: uppercase; z-index: 2;
  pointer-events: none;
}
.main-pane { height: 100%; min-height: 240px; }
.vol-pane { height: 80px; }
.indicator-pane { height: 100px; }

/* Wrapper heights — flex */
.chart-main { overflow: hidden; }
.chart-pane-wrapper { flex-shrink: 0; }
.chart-pane-wrapper:first-of-type { flex: 1; display: flex; flex-direction: column; }
.chart-pane-wrapper:first-of-type .main-pane { flex: 1; height: auto; }

/* Loading */
.chart-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0,0,0,0.75);
  z-index: 50;
  backdrop-filter: blur(4px);
}
.chart-loading.hidden { display: none; }
.loading-spinner {
  width: 32px; height: 32px;
  border: 2px solid var(--border-strong);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.chart-loading p { font-size: 13px; color: var(--text-2); }

/* Responsive */
@media (max-width: 768px) {
  .sidebar-toggle-btn { display: flex; }
  
  .sidebar {
    position: fixed;
    top: 48px;
    bottom: 0;
    left: 0;
    width: 250px;
    transform: translateX(-250px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 300;
    border-right: 1px solid var(--border-strong);
    box-shadow: 10px 0 30px rgba(0,0,0,0.5);
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .sidebar-backdrop.visible {
    display: block;
  }

  .sib-stats { display: none; }
  .indicators-toggle-group { display: none; }

  /* Toolbar horizontal swipe scroll on mobile */
  .chart-toolbar {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 6px 8px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .chart-toolbar::-webkit-scrollbar { display: none; }
  .toolbar-left, .indicators-toggle-group {
    flex-wrap: nowrap;
    flex-shrink: 0;
  }

  /* Responsive pane heights on mobile to avoid squishing and overlap */
  .main-pane { min-height: 250px; }
  .vol-pane { height: 60px; }
  .indicator-pane { height: 80px; }
}

/* Price Flash Animations */
@keyframes flash-green {
  0% { background: rgba(48,209,88,0.22); }
  100% { background: transparent; }
}
@keyframes flash-red {
  0% { background: rgba(255,69,58,0.22); }
  100% { background: transparent; }
}
.flash-green-bg {
  animation: flash-green 1s ease-out;
}
.flash-red-bg {
  animation: flash-red 1s ease-out;
}

/* AI Analyst Button & Panel */
.btn-ai-analyze {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  border: none; border-radius: 6px;
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 6px 12px; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: opacity 0.18s, box-shadow 0.18s;
  box-shadow: 0 0 10px rgba(175,82,222,0.25);
  margin-left: 12px;
}
.btn-ai-analyze:hover {
  opacity: 0.9;
  box-shadow: 0 0 14px rgba(10,132,255,0.4);
}
.btn-ai-analyze svg { stroke: currentColor; }

.ai-analyst-panel {
  background: rgba(13,13,17,0.98);
  border-left: 1px solid var(--border);
  padding: 16px;
  width: 360px;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  transition: all 0.25s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.ai-analyst-panel.hidden { display: none !important; }
.aip-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}
.aip-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.aip-title { font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.btn-close-aip {
  background: none; border: none; color: var(--text-2);
  font-size: 20px; cursor: pointer; transition: color 0.15s;
}
.btn-close-aip:hover { color: var(--text); }

.aip-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.aip-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 30px 0;
}
.aip-loader p { font-size: 12px; color: var(--text-2); text-align: center; }

.aip-content {
  font-size: 13px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  flex: 1;
  padding-right: 4px;
}
.aip-signal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  align-self: flex-start;
}
.aip-signal-badge.buy { background: rgba(48,209,88,0.15); color: var(--green); border: 1px solid rgba(48,209,88,0.3); }
.aip-signal-badge.sell { background: rgba(255,69,58,0.15); color: var(--red); border: 1px solid rgba(255,69,58,0.3); }
.aip-signal-badge.hold { background: rgba(255,159,10,0.15); color: var(--orange); border: 1px solid rgba(255,159,10,0.3); }

.aip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.aip-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
}
.aip-box-title { font-size: 11px; font-weight: 700; color: var(--text-2); text-transform: uppercase; margin-bottom: 6px; }
.aip-box-list { padding-left: 14px; }
.aip-box-list li { margin-bottom: 4px; }
.aip-narrative { color: var(--text-2); font-style: italic; }
.aip-model { font-size: 10px; color: var(--text-3); font-family: var(--font-mono); align-self: flex-end; }

/* AI Chat Tabs and Interface styling */
.aip-tabs {
  display: flex;
  gap: 8px;
  margin: 0 12px;
}
.aip-tab {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-2);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}
.aip-tab:hover {
  color: var(--text);
  border-color: var(--border-strong);
}
.aip-tab.active {
  background: rgba(10,132,255,0.15);
  color: var(--blue);
  border-color: var(--blue);
}

.tab-pane-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  flex: 1;
  height: 100%;
  overflow: hidden;
}
.tab-pane-content.hidden {
  display: none !important;
}

.chat-messages-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px;
  background: #08080a;
}
.chat-bubble {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.5;
  word-wrap: break-word;
}
.chat-bubble.assistant-msg {
  background: var(--bg-surface);
  color: var(--text-2);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  border: 1px solid var(--border);
}
.chat-bubble.user-msg {
  background: rgba(10,132,255,0.2);
  color: var(--text);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  border: 1px solid rgba(10,132,255,0.3);
}
.chat-bubble.system-error {
  background: rgba(255,69,58,0.1);
  color: var(--red);
  align-self: center;
  border: 1px dashed var(--red);
  text-align: center;
}

.chat-input-wrapper {
  display: flex;
  gap: 8px;
}
#chat-input {
  flex: 1;
  background: #0d0d11;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 12px;
  padding: 8px 12px;
  outline: none;
  transition: border-color 0.15s;
}
#chat-input:focus {
  border-color: var(--blue);
}
#chat-send-btn {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 0 16px;
  cursor: pointer;
  transition: opacity 0.15s;
}
#chat-send-btn:hover {
  opacity: 0.9;
}
#chat-send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Hide TradingView Attribution/Logo/Watermark */
a[href*="tradingview.com"],
div[class*="tv-lightweight-charts-logo"],
.tv-lightweight-charts-logo {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Chat Action Buttons (Attachment & Mic) & Previews */
.chat-action-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  transition: all 0.15s ease;
}
.chat-action-btn:hover {
  color: var(--text);
  border-color: var(--border-strong);
  background: var(--bg-hover);
}
.chat-action-btn.active {
  color: var(--red);
  border-color: var(--red);
  background: rgba(255,69,58,0.1);
  animation: pulse-red 1.5s infinite;
}
.chat-action-btn svg {
  stroke: currentColor;
  display: block;
}
@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(255,69,58,0.4); }
  70% { box-shadow: 0 0 0 6px rgba(255,69,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,69,58,0); }
}

.chat-attachment-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,132,255,0.08);
  border: 1px solid rgba(10,132,255,0.2);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 11px;
  margin-bottom: 8px;
}
.chat-attachment-preview.hidden {
  display: none !important;
}
.cap-details {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
}
.cap-remove {
  background: none;
  border: none;
  color: var(--text-2);
  cursor: pointer;
  font-size: 14px;
}
.cap-remove:hover {
  color: var(--red);
}



