:root {
  --host-bg: #0f172a;
  --host-panel: #111827;
  --host-panel-alt: #082f49;
  --host-border: #334155;
  --host-accent: #38bdf8;
  --host-text: #f8fafc;
  --host-muted: #94a3b8;
  --host-danger: #b91c1c;
}

.host-dashboard {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 10px;
}

.host-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.host-summary-item {
  border: 1px solid var(--host-accent);
  border-radius: 10px;
  background: var(--host-panel-alt);
  padding: 8px 10px;
  text-align: center;
  min-width: 0;
}

.host-summary-label {
  color: var(--host-muted);
  font-size: 12px;
  margin-bottom: 2px;
}

.host-summary-value {
  color: var(--host-text);
  font-size: 17px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.host-categories {
  border: 1px solid var(--host-border);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.85);
  padding: 8px 10px;
  margin-bottom: 10px;
}

.host-category-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.host-category-chip {
  border: 1px solid var(--host-accent);
  border-radius: 999px;
  background: var(--host-panel-alt);
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 700;
}

.host-category-chip.used {
  border-color: #475569;
  color: #64748b;
  background: #1e293b;
  text-decoration: line-through;
}

.host-control-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0;
}

.host-control-grid button {
  margin: 0;
  min-height: 42px;
}

.host-section {
  border: 1px solid var(--host-border);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.72);
  padding: 10px;
  margin-top: 10px;
}

.host-section-title {
  margin: 0 0 8px;
  font-size: 18px;
}

.host-player-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.host-player-card {
  border: 1px solid var(--host-border);
  border-radius: 10px;
  padding: 8px 10px;
  background: rgba(15, 23, 42, 0.85);
  font-size: 13px;
}

.host-player-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.host-player-meta {
  color: #cbd5e1;
  margin-top: 4px;
  line-height: 1.35;
}

.host-score-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  margin-top: 6px;
}

.host-score-controls input,
.host-score-controls button {
  margin: 0;
  padding: 7px 9px;
}

.host-timer {
  border: 2px solid var(--host-accent);
  border-radius: 10px;
  background: var(--host-panel-alt);
  padding: 7px 10px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
}

.host-timer.expired {
  border-color: #ef4444;
  background: #7f1d1d;
}

.host-action-danger {
  background: var(--host-danger);
}

@media (max-width: 950px) {
  .host-top-dashboard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .host-top-dashboard {
    grid-template-columns: 1fr;
  }

  .host-game-info-grid {
    grid-template-columns: 1fr;
  }

  .host-game-info-grid > div {
    border-right: 0;
    border-bottom: 1px solid #334155;
  }

  .host-game-info-grid > div:last-child {
    border-bottom: 0;
  }
}

/* =========================================================
   HOST PROGRESSIVE LIGHTNING GRID
   ========================================================= */

.host-lightning-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 650px;
  margin: 12px auto;
}

.host-lightning-card {
  border: 4px solid #666;
  border-radius: 12px;
  padding: 8px;
  background: #20252b;
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

/* Nothing has been released yet */
.host-lightning-card.hidden {
  border-color: #666;
}

/* Clue/image released */
.host-lightning-card.clue-released {
  border-color: #ffd700;
  background: #3b3518;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.65);
}

/* Answer released */
.host-lightning-card.answer-released {
  border-color: #36c759;
  background: #173820;
  box-shadow: 0 0 10px rgba(54, 199, 89, 0.65);
}

.host-lightning-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.host-lightning-image {
  display: block;
  width: 100%;
  max-width: 230px;
  height: 135px;
  object-fit: contain;
  border-radius: 8px;
  background: #111;
}

.host-lightning-number {
  margin-top: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0.8;
}

.host-lightning-clue {
  margin-top: 5px;
  font-size: 0.95rem;
  font-weight: 600;
}

.host-lightning-answer {
  margin-top: 5px;
  font-size: 1rem;
  font-weight: 700;
  color: #8ef0a5;
}

/* Keep two across on most screens */
@media (max-width: 600px) {
  .host-lightning-grid {
    gap: 8px;
  }

  .host-lightning-image {
    height: 105px;
  }
}
/* =========================================================
   HOST RESPONSE TRACKER
   ========================================================= */
.host-response-tracker {
  position: static;
  width: 100%;
  max-height: none;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.host-response-tracker-title {
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cbd5e1;
}

.host-response-count {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 700;
}

.host-response-progress {
  width: 100%;
  height: 7px;
  margin-bottom: 5px;
  border-radius: 999px;
  background: #334155;
  overflow: hidden;
}

.host-response-progress-fill {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: #22c55e;
  transition: width 0.25s ease;
}

.host-response-waiting-title {
  margin-bottom: 7px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fbbf24;
}

.host-response-waiting-list {
  max-height: 28px;
  overflow-y: auto;
  font-size: 11px;
}

.host-response-waiting-player {
  padding: 6px 8px;
  border-left: 4px solid #ef4444;
  border-radius: 5px;
  background: rgba(239, 68, 68, 0.12);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.host-response-complete {
  padding: 9px;
  border: 1px solid #22c55e;
  border-radius: 7px;
  background: rgba(34, 197, 94, 0.14);
  color: #86efac;
  font-weight: 700;
  text-align: center;
}

.host-response-tracker.no-question {
  opacity: 0.75;
}

@media (max-width: 900px) {
  .host-response-tracker {
    position: static;
    width: auto;
    max-height: none;
    margin: 10px;
  }
}
.host-page {
    width:100%;
    max-width:1500px;
    margin:auto;
}

.host-dashboard-card {
  min-height: 72px;
  padding: 10px 12px;
  border: 1px solid #334155;
  border-radius: 12px;
  background: #0f172a;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  overflow: hidden;
}

.host-dashboard-card{
    background:#0f172a;
    border:2px solid #334155;
    border-radius:12px;
    padding:15px;
    text-align:center;
}

.host-dashboard-label {
  margin-bottom: 4px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.host-dashboard-value {
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-transform: capitalize;
}

.host-question-panel{
    text-align:center;
    margin-bottom:20px;
}

.host-control-toolbar{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    margin-bottom:20px;
}

.host-content-section{
    margin-bottom:15px;
}
.smart-trivia-title {
  margin: 8px 0 14px;
  font-size: 30px;
  line-height: 1;
  text-align: center;
}
.host-game-info-card {
  align-items: stretch;
}

.host-game-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.host-game-info-grid > div {
  min-width: 0;
  padding: 4px 8px;
  border-right: 1px solid #334155;
  text-align: center;
}

.host-game-info-grid > div:last-child {
  border-right: 0;
}

.host-mini-label {
  display: block;
  margin-bottom: 2px;
  color: #94a3b8;
  font-size: 10px;
  text-transform: uppercase;
}

.host-game-info-grid strong {
  display: block;
  font-size: 16px;
  overflow-wrap: anywhere;
}
/* =========================================================
   COMPACT SMART TRIVIA HOST CONSOLE
   ========================================================= */

.host-console {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 6px 10px 20px;
}

.host-compact-header {
  display: flex;
  align-items: stretch;
  gap: 6px;
  width: 100%;
  min-height: 64px;
  margin: 4px 0 12px;
  padding: 6px;
  border: 1px solid #334155;
  border-radius: 12px;
  background: #0f172a;
  overflow-x: auto;
}

.host-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 8px 14px;
  border-right: 1px solid #334155;
  color: #f8fafc;
  font-size: 21px;
  font-weight: 900;
  white-space: nowrap;
}

.host-header-item {
  display: flex;
  flex: 1 1 105px;
  min-width: 100px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
  border-radius: 8px;
  background: #111827;
  text-align: center;
}

.host-header-label {
  margin-bottom: 2px;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.host-header-item strong {
  color: #f8fafc;
  font-size: 14px;
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-transform: capitalize;
}

.host-header-response {
  display: flex;
  flex: 1.4 1 180px;
  min-width: 170px;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 8px;
  background: #111827;
}

.host-console-main {
  width: 100%;
}

.host-question-panel {
  width: 100%;
  margin-bottom: 10px;
  padding: 14px 18px;
  border: 1px solid #334155;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.78);
  text-align: center;
}

.host-question-title {
  margin: 0 0 8px;
  color: #f8fafc;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.15;
}

.host-question-panel img {
  display: block;
  max-width: min(100%, 430px) !important;
  max-height: 240px !important;
  margin: 8px auto !important;
  object-fit: contain;
}

.host-answer-display {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 17px;
}

.host-answer-display span {
  color: #94a3b8;
}

.host-answer-display strong {
  color: #f8fafc;
}

.host-control-toolbar {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 7px;
  width: 100%;
  margin-bottom: 10px;
}

.host-control-toolbar button {
  min-height: 40px;
  margin: 0;
  padding: 7px 10px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.host-content-panel {
  width: 100%;
  margin-bottom: 9px;
  border: 1px solid #334155;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.72);
  overflow: hidden;
}

/* Response tracker inside compact header */

.host-response-tracker {
  position: static !important;
  width: 100% !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.host-response-tracker-title {
  margin-bottom: 2px;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.host-response-count {
  margin-bottom: 3px;
  color: #f8fafc;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
}

.host-response-progress {
  width: 100%;
  height: 5px;
  margin: 3px 0;
  border-radius: 999px;
  background: #334155;
  overflow: hidden;
}

.host-response-progress-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.25s ease;
}

.host-response-waiting-title {
  margin: 2px 0 0;
  color: #fbbf24;
  font-size: 10px;
  line-height: 1;
}

.host-response-waiting-list {
  display: block;
  max-width: 100%;
  max-height: 16px;
  overflow: hidden;
  color: #cbd5e1;
  font-size: 10px;
  line-height: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.host-response-waiting-player {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 10px;
}

.host-response-waiting-player:not(:last-child)::after {
  content: ", ";
}

.host-response-complete {
  padding: 2px;
  border: 0;
  background: transparent;
  color: #86efac;
  font-size: 11px;
  font-weight: 800;
}

@media (max-width: 1050px) {
  .host-compact-header {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .host-brand {
    flex: 1 1 100%;
    min-height: 38px;
    border-right: 0;
    border-bottom: 1px solid #334155;
  }

  .host-header-item {
    flex: 1 1 140px;
  }

  .host-header-response {
    flex: 1 1 220px;
  }

  .host-control-toolbar {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
  }
}

@media (max-width: 650px) {
  .host-header-item,
  .host-header-response {
    flex: 1 1 45%;
  }

  .host-control-toolbar {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .host-question-panel {
    padding: 12px 10px;
  }
}

/* =========================================================
   HOST DASHBOARD V2
   ========================================================= */
.host-v2-shell { width:100%; max-width:1500px; margin:0 auto; padding:8px 10px 24px; color:var(--host-text); }
.host-v2-header { display:grid; grid-template-columns:minmax(150px,1.5fr) repeat(5,minmax(90px,1fr)); gap:6px; padding:6px; border:1px solid var(--host-border); border-radius:12px; background:var(--host-bg); }
.host-v2-brand,.host-v2-stat { min-height:58px; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:6px 10px; border-radius:8px; background:var(--host-panel); text-align:center; }
.host-v2-brand { font-size:22px; font-weight:900; }
.host-v2-stat span,.host-v2-event-grid span { color:var(--host-muted); font-size:10px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.host-v2-stat strong { margin-top:3px; font-size:14px; }
.host-v2-tabs { display:flex; gap:6px; margin:8px 0; padding:5px; border:1px solid var(--host-border); border-radius:11px; background:rgba(15,23,42,.85); }
.host-v2-tabs button { flex:1; min-height:38px; margin:0; padding:7px 10px; border:1px solid transparent; border-radius:8px; background:transparent; color:var(--host-muted); font-weight:800; }
.host-v2-tabs button.active { border-color:var(--host-accent); background:var(--host-panel-alt); color:var(--host-text); }
.host-v2-tab-panel[hidden] { display:none !important; }
.host-v2-question-card,.host-v2-panel { border:1px solid var(--host-border); border-radius:12px; background:rgba(15,23,42,.78); padding:12px 16px; }
.host-v2-question-card { text-align:center; }
.host-v2-question-card h1 { margin:4px 0 8px; font-size:clamp(24px,3vw,38px); line-height:1.15; }
.host-v2-question-card img { display:block; max-width:min(100%,430px); max-height:240px; margin:8px auto; object-fit:contain; border-radius:10px; }
.host-v2-question-meta { color:var(--host-accent); font-size:12px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.host-v2-notes { max-width:850px; margin:10px auto; padding:9px 12px; border:1px solid #f59e0b; border-radius:9px; background:rgba(120,53,15,.3); text-align:left; }
.host-v2-notes p { margin:4px 0 0; }
.host-v2-answer { display:flex; justify-content:center; align-items:baseline; flex-wrap:wrap; gap:7px; margin-top:9px; }
.host-v2-answer span { color:var(--host-muted); }
.host-v2-answer strong { font-size:18px; }
.host-v2-game-grid { display:grid; grid-template-columns:1.35fr 1fr; gap:8px; margin-top:8px; }
.host-v2-controls { display:grid; grid-template-columns:repeat(6,minmax(110px,1fr)); gap:7px; margin:8px 0; }
.host-v2-controls button,.host-v2-settings-grid button { min-height:40px; margin:0; padding:7px 9px; font-size:13px; font-weight:800; }
.host-v2-review:empty { display:none; }
.host-v2-panel-heading { display:flex; justify-content:space-between; align-items:center; gap:10px; }
.host-v2-panel-heading h2,.host-v2-panel h2 { margin:0 0 8px; }
.host-v2-response-columns { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.host-v2-response-columns h3 { margin:0 0 5px; color:var(--host-muted); font-size:12px; text-transform:uppercase; }
.host-v2-response-list { display:flex; flex-wrap:wrap; gap:5px; }
.host-v2-response { padding:5px 8px; border-radius:7px; font-size:12px; font-weight:700; }
.host-v2-response.answered { border:1px solid #22c55e; background:rgba(34,197,94,.12); color:#86efac; }
.host-v2-response.waiting { border:1px solid #f59e0b; background:rgba(245,158,11,.11); color:#fde68a; }
.host-v2-response-complete { color:#86efac; font-weight:800; }
.host-v2-muted { color:var(--host-muted); font-size:12px; }
.host-v2-leaderboard { display:grid; gap:6px; }
.host-v2-leaderboard-row { display:grid; grid-template-columns:85px 1fr auto; align-items:center; gap:10px; padding:10px 12px; border:1px solid var(--host-border); border-radius:9px; background:rgba(17,24,39,.75); }
.host-v2-rank { font-weight:800; }
.host-v2-event-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:8px; }
.host-v2-event-grid > div { display:flex; flex-direction:column; gap:4px; padding:10px; border:1px solid var(--host-border); border-radius:9px; background:var(--host-panel); text-align:center; }
.host-v2-settings-grid { display:grid; grid-template-columns:repeat(3,minmax(150px,1fr)); gap:8px; }

@media (max-width:1000px) {
  .host-v2-header { grid-template-columns:repeat(3,minmax(110px,1fr)); }
  .host-v2-brand { grid-column:1 / -1; min-height:42px; }
  .host-v2-controls { grid-template-columns:repeat(3,minmax(120px,1fr)); }
}
@media (max-width:700px) {
  .host-v2-header { grid-template-columns:repeat(2,minmax(110px,1fr)); }
  .host-v2-tabs { overflow-x:auto; }
  .host-v2-tabs button { min-width:115px; }
  .host-v2-game-grid,.host-v2-response-columns,.host-v2-event-grid { grid-template-columns:1fr; }
  .host-v2-controls,.host-v2-settings-grid { grid-template-columns:repeat(2,minmax(120px,1fr)); }
}

/* =========================================================
   HOST DASHBOARD V2.1 - COMPACT LIVE GAME VIEW
   ========================================================= */
.host-v2-header {
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 4px;
  padding: 4px;
  border-radius: 9px;
}

.host-v2-header .host-v2-stat {
  min-height: 38px;
  padding: 3px 8px;
  border-radius: 6px;
}

.host-v2-header .host-v2-stat span {
  font-size: 9px;
  line-height: 1;
}

.host-v2-header .host-v2-stat strong {
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.05;
}

.host-v2-tabs {
  margin: 5px 0 7px;
  padding: 3px;
}

.host-v2-tabs button {
  min-height: 31px;
  padding: 4px 8px;
}

.host-v2-question-card {
  padding: 9px 14px;
}

.host-v2-question-topline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  min-height: 34px;
}

.host-v2-question-topline .host-v2-question-meta {
  grid-column: 2;
}

.host-v2-question-timer {
  grid-column: 3;
  justify-self: end;
  min-width: 135px;
}

.host-v2-question-timer > div {
  margin: 0 !important;
  padding: 5px 10px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  line-height: 1.1;
}

.host-v2-question-card h1 {
  margin: 5px 0 7px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.host-v2-answer {
  margin-top: 6px;
  font-size: 17px;
}

.host-v2-answer strong {
  font-size: 18px;
}

.host-v2-game-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
}

#hostResponseTracker .host-v2-panel-heading h2 {
  margin-bottom: 5px;
  font-size: 17px;
}

#hostResponseTracker .host-v2-response-list {
  min-height: 28px;
}

@media (max-width: 1000px) {
  .host-v2-header {
    grid-template-columns: repeat(4, minmax(90px, 1fr));
  }
}

@media (max-width: 700px) {
  .host-v2-header {
    grid-template-columns: repeat(2, minmax(110px, 1fr));
  }

  .host-v2-question-topline {
    grid-template-columns: 1fr auto;
  }

  .host-v2-question-topline .host-v2-question-meta {
    grid-column: 1;
    justify-self: start;
  }

  .host-v2-question-timer {
    grid-column: 2;
    min-width: 115px;
  }
}

/* HOST DASHBOARD V2.2 */
.host-v2-list-heading{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:9px}
.host-v2-list-heading h2{margin:0}
.host-v2-list-heading>span{color:var(--host-muted);font-size:12px;font-weight:700}
.host-v2-leaderboard-row{border:1px solid var(--host-border);background:rgba(17,24,39,.75)}
.host-v2-player-list{display:grid;gap:6px}
.host-v2-player-list-row{display:grid;grid-template-columns:56px minmax(180px,1fr) auto minmax(170px,220px);align-items:center;gap:10px;padding:9px 11px;border:1px solid var(--host-border);border-radius:9px;background:rgba(17,24,39,.75)}
.host-v2-player-identity{min-width:0}
.host-v2-player-identity strong{display:block;overflow-wrap:anywhere}
.host-v2-player-identity span{display:block;margin-top:2px;color:var(--host-muted);font-size:11px;line-height:1.35;overflow-wrap:anywhere}
.host-v2-player-score{white-space:nowrap}
.host-v2-inline-score-controls{display:grid;grid-template-columns:minmax(70px,1fr) auto;gap:6px}
.host-v2-inline-score-controls input,.host-v2-inline-score-controls button{min-height:34px;margin:0;padding:6px 8px}
.host-v2-game-changer{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:7px;margin-bottom:9px;padding:8px 11px;border:1px solid var(--host-accent);border-radius:9px;background:var(--host-panel-alt);text-align:center}
.host-v2-game-changer-flag{display:inline-block;margin-left:7px;padding:2px 6px;border:1px solid var(--host-accent);border-radius:999px;background:var(--host-panel-alt);color:var(--host-text);font-size:10px;font-weight:800;white-space:nowrap}
.host-v2-empty-list{padding:16px;border:1px dashed var(--host-border);border-radius:9px;color:var(--host-muted);text-align:center}
@media(max-width:850px){.host-v2-player-list-row{grid-template-columns:45px minmax(0,1fr) auto}.host-v2-inline-score-controls{grid-column:2/-1}}
@media(max-width:520px){.host-v2-player-list-row{grid-template-columns:38px minmax(0,1fr)}.host-v2-player-score{grid-column:2}.host-v2-inline-score-controls{grid-column:1/-1}.host-v2-game-changer{align-items:flex-start;flex-direction:column;text-align:left}}
