:root {
  --sky-top: #3aa3ff;
  --sky-mid: #7ed0ff;
  --sky-bottom: #dff5ff;
  --panel-bg: rgba(12, 29, 53, 0.84);
  --panel-edge: rgba(255, 255, 255, 0.22);
  --text-main: #f8fbff;
  --text-soft: #c5d8f4;
  --accent: #ffd34d;
  --good: #75ff9a;
  --card-shadow: 0 22px 50px rgba(3, 16, 35, 0.28);
  --font-body: "Segoe UI Variable Text", "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
  --font-heading: "Bahnschrift SemiBold", "Franklin Gothic Demi", "Trebuchet MS", sans-serif;
  --font-ui: "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
  --form-bg: linear-gradient(180deg, #f7fbff 0%, #dfe9f8 100%);
  --form-text: #112842;
  --form-border: rgba(18, 39, 67, 0.2);
}

/* Back to Hub button */
.hub-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 100px;
  color: var(--text-soft);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.hub-back-btn:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--text-main);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8), transparent 18%),
    radial-gradient(circle at 85% 12%, rgba(255, 227, 124, 0.55), transparent 16%),
    linear-gradient(180deg, #2b88ef 0%, #6fc5ff 42%, #d7f4ff 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.layout {
  width: min(1720px, calc(100% - 24px));
  margin: 0 auto;
  padding: 24px 0 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.game-shell,
.panel {
  backdrop-filter: blur(16px);
  background: var(--panel-bg);
  border: 1px solid var(--panel-edge);
  box-shadow: var(--card-shadow);
}

.game-shell {
  border-radius: 28px;
  padding: 22px;
}

.game-header,
.hud-row,
.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.game-header {
  gap: 16px;
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-family: var(--font-ui);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  opacity: 0.95;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  letter-spacing: 0.015em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.15rem, 3.4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 10px 24px rgba(2, 13, 30, 0.28);
}

h2 {
  font-size: 1.45rem;
  font-weight: 700;
}

h3 {
  font-size: 1.12rem;
  font-weight: 700;
}

.header-actions {
  display: flex;
  gap: 10px;
}

button,
select {
  font: inherit;
}

button,
.stat-card strong,
.status-banner,
.target-display,
.scoreboard-header span {
  font-family: var(--font-ui);
}

.primary-button,
.secondary-button {
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
  padding: 14px 18px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.primary-button {
  background: linear-gradient(180deg, #ffe06b 0%, #ffb73a 100%);
  color: #13243a;
}

.secondary-button {
  background: rgba(255, 255, 255, 0.16);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.primary-button:active,
.secondary-button:active {
  transform: translateY(1px) scale(0.99);
}

.hud-row {
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.stat-card {
  min-width: 120px;
  flex: 1;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-card span {
  display: block;
  color: var(--text-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stat-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.stat-card-wide {
  min-width: min(100%, 300px);
  flex: 2.2;
}

.health-card {
  padding: 14px 16px 16px;
}

.health-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.health-header strong {
  margin-top: 0;
}

.health-bar {
  margin-top: 12px;
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(9, 18, 31, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.health-fill {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #64e88c 0%, #d8ff6d 100%);
  box-shadow: 0 0 16px rgba(117, 255, 154, 0.45);
  transition: width 160ms ease, background 160ms ease;
}

.canvas-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(6, 15, 32, 0.2);
}

#gameCanvas {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 17 / 9;
}

.canvas-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  pointer-events: none;
}

.status-banner,
.target-display {
  align-self: flex-start;
  max-width: min(78%, 620px);
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(6, 25, 53, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 24px rgba(4, 12, 25, 0.22);
}

.status-banner {
  font-weight: 700;
  line-height: 1.35;
}

.target-display {
  margin-top: auto;
  font-size: 1rem;
  line-height: 1.35;
}

.target-display .typed {
  color: var(--good);
}

/* Removed touch keyboard class */

/* Removed touch keyboard span 2 */

.control-panel {
  display: block;
}

.panel {
  border-radius: 24px;
  padding: 20px;
}

.quick-tips {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-soft);
  display: grid;
  gap: 10px;
}

.quick-tips p {
  margin: 0;
  font-family: var(--font-ui);
}

.scoreboard {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.scoreboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.scoreboard-header span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 211, 77, 0.16);
  color: #ffe27a;
  font-size: 0.84rem;
  font-weight: 700;
}

.scoreboard-list {
  margin: 14px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-family: var(--font-ui);
}

.field {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.field span,
.checkbox-row span {
  color: var(--text-soft);
  font-family: var(--font-ui);
  font-weight: 600;
}

select {
  appearance: none;
  width: 100%;
  padding: 12px 42px 12px 14px;
  border-radius: 14px;
  color: var(--form-text);
  background-color: #eef4fd;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath fill='%23112842' d='M4.1 6.5 9 11.4l4.9-4.9 1.1 1.1L9 13.6 3 7.6z'/%3E%3C/svg%3E"),
    var(--form-bg);
  background-repeat: no-repeat, no-repeat;
  background-position: right 14px center, center;
  background-size: 18px, 100%;
  border: 1px solid var(--form-border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 8px 18px rgba(3, 16, 35, 0.18);
  font-family: var(--font-ui);
  font-weight: 600;
}

select:focus,
input:focus,
button:focus {
  outline: 3px solid rgba(255, 211, 77, 0.6);
  outline-offset: 2px;
}

select:hover {
  filter: brightness(1.02);
}

select option {
  color: var(--form-text);
  background: #f5f8fd;
}

.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
}

.checkbox-row input {
  margin-top: 4px;
}

.info-list {
  padding-left: 18px;
  margin: 16px 0 0;
  color: var(--text-soft);
  display: grid;
  gap: 12px;
}

kbd {
  display: inline-block;
  min-width: 28px;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-main);
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1180px) {
  .control-panel {
    display: block;
  }
}

@media (max-width: 820px) {
  .layout {
    width: min(100% - 18px, 1440px);
    padding-top: 14px;
  }

  .game-shell,
  .panel {
    border-radius: 20px;
  }

  .game-header,
  .panel-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-actions {
    width: 100%;
  }

  .header-actions button {
    flex: 1;
  }

  .touch-keyboard {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .health-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .status-banner,
  .target-display {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
/* Removed mobile touch keyboard grid */
}

/* Fullscreen styles */
.game-shell:fullscreen {
  width: 100vw;
  height: 100vh;
  padding: 0;
  border: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
}

.game-shell:fullscreen .canvas-card {
  flex: 1;
  border: none;
  border-radius: 0;
}

.game-shell:fullscreen #gameCanvas {
  height: 100%;
  object-fit: contain;
}

/* Removed old :fullscreen rules — now handled via body.fs-mode class */

/* ============================================================
   FULLSCREEN MODE  (toggled via body.fs-mode class by JS)
   ============================================================ */
body.fs-mode {
  overflow: hidden;
}

body.fs-mode .layout {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  max-height: 100vh;
  padding: 0;
  gap: 0;
  overflow: hidden;
  grid-template-columns: 1fr;
}

body.fs-mode .control-panel {
  display: none !important;
}

body.fs-mode .game-shell {
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

body.fs-mode .game-header {
  flex-shrink: 0;
  padding: 6px 14px;
  margin-bottom: 4px;
  background: rgba(0,0,0,0.35);
}

body.fs-mode .eyebrow { display: none; }

body.fs-mode h1 {
  font-size: clamp(1rem, 2vw, 1.4rem);
}

body.fs-mode .hud-row {
  flex-shrink: 0;
  margin-bottom: 4px;
  padding: 0 10px;
  flex-wrap: nowrap;
}

body.fs-mode .stat-card { padding: 8px 12px; }

body.fs-mode .canvas-card {
  flex: 1;
  min-height: 0;
  border-radius: 0;
  border: none;
}

body.fs-mode #gameCanvas {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: unset !important;
  display: block;
}

/* ============================================================
   CREW NAMES & TOURNAMENT UI
   ============================================================ */

.canvas-overlay .overlay-top-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: auto;
  max-width: 260px;
}

.health-card {
  padding: 12px 14px 14px;
  max-width: 250px;
}

.hint-text {
  margin: 10px 0 6px;
  color: var(--text-soft);
  font-size: 0.8rem;
  font-family: var(--font-ui);
}

.name-input {
  appearance: none;
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--form-text);
  background: #eef4fd;
  border: 1px solid var(--form-border);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75), 0 4px 10px rgba(3,16,35,0.12);
}

.tournament-zone {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.tournament-panel { margin-top: 10px; }

.tournament-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 14px 0;
}

.tourn-toggle-btn {
  font-size: 0.72rem !important;
  padding: 5px 10px !important;
  border-radius: 10px !important;
}

.team-entries-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-entry {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.team-entry-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.team-entry-remove {
  background: none;
  border: none;
  color: rgba(255,100,100,0.7);
  cursor: pointer;
  font-size: 1rem;
  padding: 0 4px;
  line-height: 1;
}
.team-entry-remove:hover { color: #ff5555; }

.team-input {
  appearance: none;
  width: 100%;
  padding: 7px 10px;
  border-radius: 9px;
  color: var(--form-text);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--form-border);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
}

.row-btns {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.small-btn {
  flex: 1;
  font-size: 0.82rem !important;
  padding: 9px 10px !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}

.bracket-view { margin-top: 12px; }

.current-match-banner {
  background: linear-gradient(135deg,rgba(255,211,77,0.13),rgba(255,183,63,0.06));
  border: 1px solid rgba(255,211,77,0.28);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
  font-size: 0.83rem;
  color: var(--text-main);
  font-family: var(--font-ui);
  line-height: 1.45;
}

.current-match-banner strong {
  color: var(--accent);
  display: block;
  margin-bottom: 3px;
  font-size: 0.88rem;
}

.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  font-family: var(--font-ui);
  color: var(--text-soft);
}

.standings-table th {
  color: var(--text-soft);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  padding: 5px 7px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  text-align: left;
}

.standings-table td {
  padding: 5px 7px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.standings-table tr.is-current td { background: rgba(255,211,77,0.07); color: var(--text-main); }
.standings-table tr.is-leader  td { color: var(--accent); font-weight: 700; }

/* ============================================================
   MODALS (Tournament Setup + Round Result)
   ============================================================ */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 14, 35, 0.82);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: modalFadeIn 0.18s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-box {
  background: linear-gradient(160deg, #0e2040 0%, #0a1a32 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  max-width: 540px;
  width: calc(100vw - 40px);
  max-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  animation: modalSlideUp 0.2s cubic-bezier(0.34,1.56,0.64,1);
}

.modal-box--result {
  max-width: 480px;
}

@keyframes modalSlideUp {
  from { transform: translateY(24px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0)   scale(1);    opacity: 1; }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.modal-header h2 {
  font-size: 1.25rem;
  font-family: var(--font-ui);
  color: var(--text-main);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

.modal-close {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: background 140ms, color 140ms;
}
.modal-close:hover { background: rgba(255,80,80,0.25); color: #ff6060; }

.modal-body {
  padding: 20px 24px;
  overflow-y: auto;
  flex: 1;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-shrink: 0;
}

.modal-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 18px 0;
}

.modal-crew-row {
  display: flex;
  gap: 12px;
}
.modal-crew-row .field { flex: 1; }

/* Round result specific */
.rr-scores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
}

.rr-score-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

.rr-score-card.is-winner {
  background: rgba(255,211,77,0.12);
  border-color: rgba(255,211,77,0.35);
}

.rr-score-card .rr-team {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.rr-score-card .rr-crew {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-bottom: 10px;
  line-height: 1.35;
}

.rr-score-card .rr-pts {
  font-family: var(--font-ui);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.rr-score-card.is-winner .rr-pts { color: #ffd700; }
.rr-winner-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-top: 6px;
}

.rr-next {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 12px;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.5;
}
.rr-next strong { color: var(--accent); display: block; margin-bottom: 4px; font-size: 0.96rem; }

.rr-standings {
  margin-top: 16px;
}

.rr-standings h4 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  margin: 0 0 8px;
}

/* ============================================================
   IN-GAME MENUS & UI JUICE
   ============================================================ */

.game-menus-overlay {
  position: absolute;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 14, 35, 0.65);
  backdrop-filter: blur(12px);
  pointer-events: auto;
}

.glass-panel {
  background: linear-gradient(160deg, rgba(14, 32, 64, 0.85) 0%, rgba(10, 26, 50, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.menu-header {
  text-align: center;
  margin-bottom: 24px;
}

.menu-header h2 {
  font-size: 2.8rem;
  color: var(--text-main);
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
  margin-bottom: 4px;
}

.menu-columns {
  display: flex;
  gap: 40px;
}

.menu-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-col h3 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.debrief-stats .stat-card {
  min-width: 140px;
}

/* Boss Health Bar */
.boss-health-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  margin: 0 auto;
  pointer-events: none;
}
.boss-health-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #ffb07c;
  margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.boss-health-bar {
  width: 100%;
  height: 20px;
  background: rgba(0,0,0,0.6);
  border: 2px solid #ffb07c;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 143, 87, 0.3);
}
.boss-health-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ff4f54 0%, #ff8f57 100%);
  transition: width 0.15s ease-out;
}

/* Cinematic Banner */
.cinematic-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, rgba(255,0,0,0) 0%, rgba(200,30,30,0.6) 50%, rgba(255,0,0,0) 100%);
  padding: 30px 0;
  margin: auto 0;
  pointer-events: none;
}
.cinematic-banner-text {
  font-family: 'Impact', 'Aptos', sans-serif;
  font-size: 6rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 0 30px #ff0000, 0 8px 16px rgba(0,0,0,0.7);
}

.stat-card.combo-hot {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(255, 211, 77, 0.4);
}

@keyframes popIn {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.pop-anim {
  animation: popIn 0.2s ease-out;
}
