:root {
  --bg: #09111f;
  --bg-accent: #11213c;
  --panel: rgba(12, 22, 40, 0.84);
  --panel-border: rgba(155, 198, 255, 0.12);
  --text: #eff6ff;
  --muted: #8aa2c1;
  --brand: #7dd3fc;
  --brand-strong: #22c55e;
  --warn: #f59e0b;
  --shadow: 0 30px 90px rgba(2, 8, 23, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(125, 211, 252, 0.18), transparent 32%),
    linear-gradient(180deg, #08101d 0%, #0a1324 48%, #050a12 100%);
  color: var(--text);
}

.shell {
  max-width: 1160px;
  margin: 0 auto;
  padding: 28px 18px 40px;
}

.hero,
.status-bar,
.card {
  backdrop-filter: blur(18px);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 8px;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 800;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(34px, 6vw, 64px);
  line-height: 0.94;
}

.subtitle {
  margin-top: 14px;
  max-width: 720px;
  line-height: 1.7;
  color: var(--muted);
}

.primary-btn {
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #7dd3fc, #22c55e);
  color: #041019;
  font-weight: 800;
  cursor: pointer;
}

.status-bar {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.status-pill,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
}

.status-pill {
  background: rgba(125, 211, 252, 0.14);
  color: var(--brand);
}

.badge {
  background: rgba(34, 197, 94, 0.14);
  color: #8af5b2;
}

.status-meta {
  color: var(--muted);
  font-size: 14px;
}

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

.card {
  border-radius: 24px;
  padding: 22px;
  grid-column: span 12;
}

.card-live {
  grid-column: span 12;
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.meta-item {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.meta-label {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 6px;
}

.meta-value {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.rank-list,
.model-list {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.rank-card,
.model-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
}

.rank-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.rank-index {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 800;
}

.rank-title {
  font-size: 22px;
  font-weight: 800;
}

.rank-subtitle,
.note {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.stat-row {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.stat-chip {
  border-radius: 16px;
  padding: 10px 12px;
  background: rgba(125, 211, 252, 0.08);
}

.table-shell {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  font-size: 14px;
}

th {
  color: var(--muted);
  font-weight: 700;
}

@media (min-width: 920px) {
  .card-live {
    grid-column: span 12;
  }

  .grid > .card:nth-child(2),
  .grid > .card:nth-child(3) {
    grid-column: span 6;
  }
}

@media (max-width: 720px) {
  .hero,
  .status-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
