:root {
  --ix-primary: #1b3ea8;
  --ix-ink: #0f172a;
  --ix-muted: #52627e;
  --ix-line: #e2e8f0;
  --ix-surface: #ffffff;
  --ix-bg: #f6f9ff;
  --ix-shadow: 0 10px 28px rgba(2, 6, 23, 0.08);
}
.indices-list-page {
  background:
    radial-gradient(circle at 10% -10%, #e8f0ff 0%, rgba(232, 240, 255, 0) 40%),
    radial-gradient(circle at 90% 5%, #e9fff8 0%, rgba(233, 255, 248, 0) 42%),
    var(--ix-bg);
  padding-bottom: 52px;
}
.indices-hero {
    padding: 40px 0 40px;
    border-bottom: 1px solid #e7eefb;
    background: linear-gradient(186.63deg, #000000 -4.34%, #005CBD 110.69%);
}
.indices-title {
    margin: 0 0 10px;
    line-height: 1.04;
    color: #FFF;
    font-size: 38px;
    font-weight: 500;
    font-family: "Roboto Flex";
}
.indices-subtitle {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 24px;
}
.indices-count {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--ix-line);
  border-radius: 999px;
  color: #1f375f;
  font-size: 13px;
  font-weight: 700;
}
.indices-grid {
  margin-top: 26px;
}
.index-card {
  height: 100%;
  border: 1px solid var(--ix-line);
  border-radius: 16px;
  background: var(--ix-surface);
  box-shadow: var(--ix-shadow);
  padding: 18px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.index-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.12);
  border-color: #c8d7f8;
}
.index-chip {
  display: inline-block;
  margin-bottom: 10px;
  background: #edf3ff;
  border: 1px solid #dbe7ff;
  color: #234278;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: 999px;
  padding: 4px 10px;
}
.index-name {
  margin: 0;
  font-size: 25px;
  line-height: 1.12;
  color: var(--ix-ink);
  font-weight: 800;
}
.index-meta {
  margin-top: 10px;
  margin-bottom: 12px;
  color: var(--ix-muted);
  font-size: 14px;
  min-height: 44px;
}
.index-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}
.index-stat {
  border: 1px solid var(--ix-line);
  border-radius: 10px;
  background: #f8fbff;
  padding: 8px 9px;
}
.index-stat-label {
  display: block;
  font-size: 10px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #667892;
  font-weight: 700;
  margin-bottom: 4px;
}
.index-stat-value {
  display: block;
  font-size: 14px;
  line-height: 1.15;
  color: #0f172a;
  font-weight: 700;
}
.index-stat-value.is-positive { color: #0f9d58; }
.index-stat-value.is-negative { color: #dc2626; }
.index-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ix-primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}
.index-cta:hover {
  color: #112d74;
  text-decoration: underline;
}
.empty-state {
  margin-top: 24px;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  padding: 20px;
  color: var(--ix-muted);
  background: #fff;
}
@media (max-width: 991px) {
  .index-name { font-size: 22px; }
  .index-stat-value { font-size: 13px; }
}
