/* ===== MODE INFINI ===== */
#inf-section { display: none; }
#inf-section.active { display: block; }

.inf-streak-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 20px;
  background: var(--card); border: 2px solid var(--border);
  border-radius: 16px; overflow: hidden;
}
.inf-streak-item {
  flex: 1; text-align: center; padding: 16px 24px;
}
.inf-streak-sep {
  width: 2px; background: var(--border); align-self: stretch;
}
.inf-streak-label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text2); font-weight: 700; margin-bottom: 6px;
}
.inf-streak-val {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.inf-replay-wrap {
  display: flex; justify-content: center; margin-top: 24px;
}
.inf-replay-wrap.hidden { display: none; }
.inf-replay-btn {
  background: var(--gold); color: #1a1200;
  border: none; border-radius: 12px;
  padding: 14px 36px; font-size: 1rem; font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.06em; cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.inf-replay-btn:hover { background: var(--gold-l); transform: translateY(-2px); }
.inf-replay-btn:active { transform: translateY(0); }

