/* board.css — დიდი მონიტორი */
.stage {
  position: fixed; inset: 0 0 120px 0;
  display: flex; align-items: center; justify-content: center;
  padding: 30px;
}
#content { width: 100%; max-width: 1500px; }

.round-badge {
  position: fixed; top: 18px; left: 24px;
  font-size: 1.3rem; color: var(--gold); font-weight: 800; letter-spacing: 1px;
}

/* ── ლოგო / ინტრო ── */
.logo-screen { text-align: center; }
.logo-screen .big { font-size: 8rem; }
.logo-screen h1 { font-size: 5rem; margin: 0; }
.logo-screen .msg { font-size: 1.6rem; color: var(--muted); margin-top: 10px; }

/* ── სათამაშო მინდორი ── */
.field { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.field .theme-head {
  background: linear-gradient(180deg, var(--panel2), var(--panel));
  border: 1px solid var(--line); border-radius: 10px;
  min-height: 80px; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 8px; font-weight: 800; font-size: 1.15rem; color: var(--gold);
}
.field .cell {
  background: radial-gradient(120px 80px at 50% 0%, var(--panel2), var(--panel));
  border: 1px solid var(--line); border-radius: 10px;
  min-height: 92px; display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; font-weight: 800; color: var(--gold);
}
.field .cell.used { background: var(--bg); color: transparent; border-color: #16224a; }
.field .cell.picked { box-shadow: 0 0 0 3px var(--gold) inset; }

/* ── კითხვის ზუმი ── */
.question-screen { text-align: center; animation: zoomIn .45s ease; }
@keyframes zoomIn { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.question-screen .qtheme { font-size: 1.6rem; color: var(--gold); margin-bottom: 18px; }
.question-screen .qtext { font-size: 3.4rem; line-height: 1.25; font-weight: 700; }
.question-screen .qval { margin-top: 22px; font-size: 2rem; color: var(--muted); }
.answer-box { margin-top: 30px; font-size: 2.4rem; color: var(--green); font-weight: 800; }
.answer-box.wrong { color: var(--red); }

.timer-ring {
  margin: 24px auto 0; width: 120px; height: 120px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; font-weight: 800;
  border: 8px solid var(--blue);
}
.timer-ring.urgent { border-color: var(--red); animation: pulse .6s infinite; }

.bet-screen { text-align: center; }
.bet-screen .big { font-size: 4rem; color: var(--gold); }

/* ── ქვედა ქულათა პანელი ── */
.board-scorebar {
  position: fixed; left: 0; right: 0; bottom: 0; height: 110px;
  display: flex; gap: 18px; align-items: center; justify-content: center;
  background: linear-gradient(0deg, var(--bg), transparent);
  padding: 0 24px 14px;
}
.psc {
  flex: 0 0 320px; max-width: 340px;
  background: var(--panel); border: 2px solid var(--line); border-radius: 14px;
  padding: 10px 18px; display: flex; align-items: center; gap: 14px;
  position: relative;
}
.psc.active { border-color: var(--gold); }
.psc.answering { border-color: var(--green); box-shadow: 0 0 24px rgba(31,191,107,.6); }
.psc .light {
  width: 18px; height: 18px; border-radius: 50%; background: #223; flex: none;
}
.psc.answering .light { background: var(--green); box-shadow: 0 0 14px var(--green); }
.psc .nm { font-size: 1.2rem; font-weight: 700; }
.psc .sc { margin-left: auto; font-size: 2rem; font-weight: 800; color: var(--gold); }
.psc .sc.neg { color: var(--red); }

/* ── ფინალი ── */
.final-themes { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.final-theme {
  background: var(--panel2); border: 2px solid var(--line); border-radius: 14px;
  padding: 26px 34px; font-size: 2rem; font-weight: 800; transition: .3s;
}
.final-theme.removed { opacity: .25; text-decoration: line-through; }
.final-theme.chosen { border-color: var(--gold); box-shadow: 0 0 30px rgba(255,203,69,.5); }
.final-reveal { text-align: center; }
.final-reveal .ans { font-size: 3rem; font-weight: 800; margin: 16px 0; }
.final-reveal .bet { font-size: 2rem; }
.winner-screen { text-align: center; animation: zoomIn .6s ease; }
.winner-screen .crown { font-size: 6rem; }
.winner-screen .wname { font-size: 4rem; color: var(--gold); font-weight: 800; }
.winner-screen .wscore { font-size: 2.4rem; }
.winner-photo { width: 200px; height: 200px; border-radius: 16px; object-fit: cover; border: 3px solid var(--gold); margin: 16px auto; display: block; }
