@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ===== VARIABLES ===== */
:root {
  --bg: #08080f;
  --surface: #0f0f1c;
  --card: #14142a;
  --card-hover: #1a1a35;
  --border: #1e1e3f;
  --border-light: #2a2a50;
  --accent: #7c6af7;
  --accent-light: #a78bfa;
  --accent-glow: rgba(124, 106, 247, 0.2);
  --text: #e8e8f5;
  --text-muted: #5a5a7a;
  --text-dim: #3a3a5a;
  --green: #10b981;
  --green-glow: rgba(16, 185, 129, 0.15);
  --red: #ef4444;
  --red-glow: rgba(239, 68, 68, 0.15);
  --yellow: #f59e0b;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 580px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

/* ===== NAVIGATION ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(8, 8, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 50;
}

.logo {
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, #a78bfa 60%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.nav-back {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--text); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn-secondary:hover {
  border-color: var(--accent);
  background: var(--card-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-light);
}

.btn-danger {
  background: var(--red-glow);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.25);
}
.btn-danger:hover { background: rgba(239, 68, 68, 0.25); }

.btn-success {
  background: var(--green-glow);
  color: var(--green);
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.btn-success:hover { background: rgba(16, 185, 129, 0.25); }

.btn-lg {
  padding: 16px 28px;
  font-size: 16px;
  border-radius: 14px;
}

.btn-full { width: 100%; }

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 10px;
}

/* ===== FORM ===== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.input::placeholder { color: var(--text-dim); }

.input-sm {
  padding: 10px 12px;
  font-size: 14px;
}

/* ===== CARDS ===== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}

/* ===== DIVIDER ===== */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.badge-accent {
  background: var(--accent-glow);
  color: var(--accent-light);
}
.badge-green {
  background: var(--green-glow);
  color: var(--green);
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--card-hover);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  z-index: 999;
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.toast-success { color: var(--green); border-color: rgba(16, 185, 129, 0.3); }

/* ===========================
   INDEX PAGE
   =========================== */

.hero {
  text-align: center;
  padding: 44px 0 32px;
}

.hero-title {
  font-size: clamp(38px, 10vw, 60px);
  font-weight: 900;
  background: linear-gradient(150deg, #fff 0%, #d8b4fe 40%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.hero-sub {
  color: var(--text-muted);
  margin-top: 10px;
  font-size: 16px;
}

.stats-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.stat {
  flex: 1;
  max-width: 160px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  text-align: center;
}

.stat-num {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-light), #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 4px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.players-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.player-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.2s;
}
.player-card:hover { border-color: var(--border-light); }

.player-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.player-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--accent-light);
  flex-shrink: 0;
  text-transform: uppercase;
}

.player-name-text {
  font-weight: 700;
  font-size: 15px;
}

.player-song-count {
  font-size: 13px;
  color: var(--text-muted);
}

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-dim);
}

.empty-icon {
  font-size: 44px;
  margin-bottom: 12px;
  opacity: 0.5;
}

.empty-text {
  font-size: 15px;
  font-weight: 500;
}

.empty-sub {
  font-size: 13px;
  margin-top: 6px;
}

.actions-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===========================
   SUBMIT PAGE
   =========================== */

.page-header {
  padding: 28px 0 24px;
}

.page-title {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.page-sub {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 6px;
}

.song-entries {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.song-entry {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: border-color 0.2s;
}
.song-entry:focus-within { border-color: var(--accent); }

.song-entry-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.song-num {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.btn-remove-song {
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.15s;
  line-height: 1;
  padding: 0;
}
.btn-remove-song:hover {
  color: var(--red);
  background: var(--red-glow);
}

.time-row {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 8px;
}

.input-hint {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 3px;
}

/* Success state */
.success-overlay {
  text-align: center;
  padding: 48px 24px;
  display: none;
}

.success-overlay.show { display: flex; flex-direction: column; align-items: center; gap: 12px; }

.success-emoji {
  font-size: 64px;
  animation: bounceIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bounceIn {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.5px;
}

.success-msg {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 300px;
}

.success-player-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-light);
}

/* ===========================
   GAME PAGE
   =========================== */

.game-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  overflow: hidden;
}

.game-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  position: relative;
  z-index: 10;
}

.game-counter {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
}

.game-counter .cur {
  color: var(--text);
}

.game-counter .sep {
  color: var(--text-dim);
  font-size: 32px;
}

.game-counter .tot {
  color: var(--text-dim);
}

.game-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 20px 24px;
  gap: 20px;
}

/* Video wrapper */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

#yt-player {
  width: 100%;
  height: 100%;
  display: block;
}

/* Force iframe to fill container */
#yt-player iframe {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  display: block !important;
}

.video-cover {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #0d0d20 0%, #12122a 50%, #0a0a18 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  border-radius: 20px;
  transition: opacity 0.5s ease;
}

.video-cover.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Pulse animation rings */
.pulse-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  opacity: 0;
  animation: ringOut 2.4s ease-out infinite;
}

.pulse-ring:nth-child(1) { width: 70px;  height: 70px;  animation-delay: 0s; }
.pulse-ring:nth-child(2) { width: 110px; height: 110px; animation-delay: 0.5s; }
.pulse-ring:nth-child(3) { width: 150px; height: 150px; animation-delay: 1s; }
.pulse-ring:nth-child(4) { width: 180px; height: 180px; animation-delay: 1.5s; }

@keyframes ringOut {
  0%   { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.15); opacity: 0; }
}

.pulse-center {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 1;
  position: relative;
  animation: pulseBeat 2s ease-in-out infinite;
}

@keyframes pulseBeat {
  0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(99, 102, 241, 0.5); }
  50%       { transform: scale(1.07); box-shadow: 0 0 45px rgba(99, 102, 241, 0.75); }
}

/* Paused state: stop all animations */
.cover-paused .pulse-ring,
.cover-paused .pulse-center {
  animation-play-state: paused;
}

/* "Stop" / not started label on cover */
.cover-label {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Player reveal */
.player-reveal-row {
  height: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.player-reveal-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 3px;
}

.player-reveal-name {
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-light), #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.3px;
  animation: fadeUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.player-reveal-hidden {
  font-size: 14px;
  color: var(--text-dim);
}

/* Transport controls */
.controls-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-play-pause {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.45);
  transition: all 0.18s ease;
  color: #fff;
  font-size: 24px;
}
.btn-play-pause:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.6);
}
.btn-play-pause:active { transform: scale(0.97); }
.btn-play-pause:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-prev,
.btn-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 20px;
  transition: all 0.18s ease;
}
.btn-prev:hover,
.btn-next:hover {
  border-color: var(--accent);
  background: var(--card-hover);
}
.btn-prev:disabled,
.btn-next:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}

/* Reveal action buttons */
.reveal-row {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 480px;
}

.reveal-row .btn {
  flex: 1;
  font-size: 14px;
  padding: 12px 10px;
}

/* Start overlay */
.start-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 15, 0.95);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
  transition: opacity 0.4s;
}

.start-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.start-card {
  text-align: center;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.start-emoji {
  font-size: 72px;
  animation: pulseBeat 2s ease-in-out infinite;
}

.start-title {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
}

.start-info {
  color: var(--text-muted);
  font-size: 15px;
}

.start-info strong {
  color: var(--accent-light);
}

.start-note {
  font-size: 12px;
  color: var(--text-dim);
  max-width: 280px;
}

/* Reset confirm modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 15, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 28px;
  max-width: 360px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.modal-title {
  font-size: 20px;
  font-weight: 800;
}

.modal-msg {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.modal-actions .btn { flex: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 400px) {
  .time-row {
    grid-template-columns: 1fr;
  }
  .reveal-row {
    flex-direction: column;
  }
  .game-counter {
    font-size: 34px;
  }
}

@media (min-height: 700px) and (min-width: 600px) {
  .game-body {
    gap: 28px;
  }
}

/* ===========================
   LANDING PAGE (index.html)
   =========================== */

.landing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
  margin-bottom: 32px;
}

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

.landing-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: default;
  transition: border-color 0.2s;
}

.landing-card:hover { border-color: var(--border-light); }

.landing-card-icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 4px;
}

.landing-card h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.landing-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.room-input-row {
  display: flex;
  gap: 8px;
}

.room-code-input {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 5px;
  text-transform: uppercase;
  padding: 10px 12px;
  flex: 1;
}

/* Room pill (in submit nav) */
.room-pill {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--accent-light);
  background: var(--accent-glow);
  padding: 4px 12px;
  border-radius: 999px;
}

/* ===========================
   LOBBY PAGE (game.html)
   =========================== */

.lobby-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.lobby-header {
  padding: 20px 24px 0;
  text-align: center;
}

.lobby-logo {
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, #a78bfa 60%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lobby-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 24px 40px;
  gap: 24px;
}

.lobby-join-hint {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
}

.lobby-join-hint span {
  color: var(--accent-light);
  font-weight: 700;
}

.lobby-code-wrap {
  text-align: center;
}

.lobby-code-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.lobby-code {
  font-size: clamp(56px, 16vw, 96px);
  font-weight: 900;
  letter-spacing: 10px;
  background: linear-gradient(135deg, #fff 0%, #c4b5fd 40%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  text-shadow: none;
  /* glow effect via filter */
  filter: drop-shadow(0 0 24px rgba(124, 106, 247, 0.4));
}

.lobby-players-section {
  width: 100%;
  max-width: 560px;
}

.lobby-players-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
  align-items: center;
}

.lobby-waiting {
  font-size: 14px;
  color: var(--text-dim);
  font-style: italic;
}

.lobby-player-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 8px 14px 8px 8px;
  animation: chipIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes chipIn {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.lobby-chip-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.lobby-chip-name {
  font-size: 14px;
  font-weight: 700;
}

.lobby-chip-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-light);
  background: var(--accent-glow);
  padding: 2px 7px;
  border-radius: 999px;
}
