.spotlight {
  padding: var(--s-12) 0 var(--s-10);
  position: relative;
}
.spotlight::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,229,196,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.spotlight__layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--s-12);
  align-items: center;
}

@media (max-width: 1100px) {
  .spotlight__layout { grid-template-columns: 1fr; }
}

.spotlight__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
}

.spotlight__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: var(--lh-tight);
  letter-spacing: var(--tr-tight);
  color: var(--ink-1);
  margin-bottom: var(--s-5);
}
.spotlight__heading b {
  color: var(--accent);
}

.spotlight__desc {
  font-size: var(--t-md);
  color: var(--ink-2);
  line-height: var(--lh-loose);
  max-width: 520px;
  margin-bottom: var(--s-8);
}

.spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}

.spotlight__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-6);
}
.spotlight__stat__num {
  font-family: var(--font-mono);
  font-size: var(--t-2xl);
  font-weight: 700;
  color: var(--ink-1);
  line-height: 1;
}
.spotlight__stat__num b { color: var(--accent); }
.spotlight__stat__label {
  font-size: var(--t-xs);
  color: var(--ink-3);
  letter-spacing: var(--tr-wide);
  margin-top: 4px;
}

/* featured match panel */
.featured-panel {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  position: relative;
  box-shadow: var(--sh-raised);
}
.featured-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,229,196,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.featured-panel__round {
  font-size: var(--t-xs);
  font-weight: 700;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: var(--tr-widest);
  margin-bottom: var(--s-3);
}
.featured-panel__title {
  font-size: var(--t-sm);
  color: var(--ink-2);
  margin-bottom: var(--s-5);
}
.featured-panel__matchup {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
}
.featured-panel__side {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.featured-panel__team {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.featured-panel__crest {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.featured-panel__name { font-size: var(--t-md); font-weight: 600; color: var(--ink-1); }
.featured-panel__score {
  font-family: var(--font-mono);
  font-size: var(--t-3xl);
  font-weight: 800;
  color: var(--accent);
}
.featured-panel__vs {
  text-align: center;
  font-size: var(--t-xs);
  color: var(--ink-mute);
  font-weight: 700;
  letter-spacing: var(--tr-widest);
}
.featured-panel__odds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
}
.featured-panel__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--t-xs);
  color: var(--ink-3);
}
