/* MadMaze — site-wide and lobby */

:root {
  --color-bg: #f0e6d6;
  --color-bg-panel: #fffaf2;
  --color-border: #6b4d8a;
  --color-border-dark: #4a3560;
  --color-accent: #6b4d8a;
  --color-accent-hover: #4a3560;
  --color-maze-border: #c97b6b;
  --color-danger: #a63d3d;
  --font-ui: system-ui, "Segoe UI", Roboto, sans-serif;
  --shadow-panel: 0 4px 16px rgba(42, 32, 53, 0.12);
  --radius: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-ui);
  margin: 0;
  background: var(--color-bg);
  color: #2a2035;
  line-height: 1.45;
}

a {
  color: var(--color-accent);
}

a:hover {
  color: var(--color-accent-hover);
}

/* —— Lobby —— */
.lobby-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lobby-card {
  background: var(--color-bg-panel);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-panel);
}

.lobby-card h1 {
  margin: 0 0 0.35rem;
  font-size: 1.65rem;
  color: var(--color-border-dark);
}

.lobby-card .tagline {
  margin: 0 0 1.5rem;
  color: #5c4d6e;
  font-size: 0.95rem;
}

.lobby-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lobby-nav li {
  margin-bottom: 0.65rem;
}

.lobby-nav a {
  display: block;
  text-align: center;
  text-decoration: none;
}

.lan-play-hint {
  margin: 0 0 1.25rem;
  padding: 0.75rem 1rem;
  border: 1px solid #d8cbb8;
  border-radius: 6px;
  background: rgba(255, 252, 245, 0.9);
  font-size: 0.92rem;
  line-height: 1.45;
  text-align: left;
}

.lan-play-hint__title {
  margin: 0 0 0.35rem;
  font-weight: 700;
}

.lan-play-hint p {
  margin: 0.35rem 0;
}

.lan-play-hint__url {
  display: inline-block;
  word-break: break-all;
}

.lan-play-hint__note,
.lan-play-hint__more {
  font-size: 0.85rem;
  color: #5a4f42;
}

.lan-play-hint--game {
  margin-top: 0.75rem;
}

.lobby-back {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  text-align: center;
}

/* Forms */
.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--color-border-dark);
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid #c4b8a8;
  border-radius: 4px;
  font-size: 1rem;
  background: #fff;
}

.form-field input:focus,
.form-field select:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

.form-field--radios {
  border: 1px solid #c4b8a8;
  border-radius: 4px;
  padding: 0.65rem 0.75rem;
  margin-bottom: 1rem;
}

.form-field--radios legend {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-border-dark);
  padding: 0 0.25rem;
}

.form-radio {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: #3d2a52;
  margin-bottom: 0.45rem;
  cursor: pointer;
}

.form-radio:last-child {
  margin-bottom: 0;
}

.form-radio input {
  width: auto;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  font-family: inherit;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
}

.btn--secondary {
  background: #d4c4e8;
  color: var(--color-border-dark);
}

.btn--secondary:hover {
  background: #c0abd8;
}

.btn--ghost {
  background: transparent;
  color: var(--color-border-dark);
  border: 1px solid #c4b8a8;
}

.btn--ghost:hover {
  background: rgba(107, 77, 138, 0.08);
}

.btn--danger {
  background: var(--color-danger);
  color: #fff;
}

.btn--danger:hover {
  background: #8a3232;
}

.btn--small {
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
}

.btn--block {
  display: block;
  width: 100%;
}

/* —— Game page shell —— */
.game-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ebe1d0 0%, var(--color-bg) 120px);
}

.game-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--color-bg-panel);
  border-bottom: 3px solid var(--color-maze-border);
  box-shadow: var(--shadow-panel);
}

.game-header__brand h1 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--color-border-dark);
}

.game-header__tagline {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: #6a5a7a;
}

.game-header__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.game-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr min(320px, 32vw);
  gap: 1rem;
  padding: 1rem 1.25rem;
  min-height: 0;
}

@media (max-width: 900px) {
  .game-main {
    grid-template-columns: 1fr;
  }
}

.board-panel {
  background: var(--color-bg-panel);
  border: 2px solid #c4b8a8;
  border-radius: var(--radius);
  padding: 0.75rem;
  box-shadow: var(--shadow-panel);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#idPlayArea01 {
  position: relative;
  width: 100%;
  max-width: 1140px;
  height: min(72vh, 640px);
  min-height: 360px;
  margin: 0 auto;
  background: #e8dcc8;
  border-radius: 4px;
  overflow: hidden;
}

.game-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.turn-banner {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-align: center;
  font-size: 0.95rem;
}

.turn-banner--yours {
  background: #d4edda;
  border: 2px solid #3d8b5f;
  color: #1e5631;
}

.turn-banner--wait {
  background: #fff3cd;
  border: 2px solid #d4a017;
  color: #6b5200;
}

.panel {
  background: var(--color-bg-panel);
  border: 1px solid #d8cbb8;
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  box-shadow: 0 2px 8px rgba(42, 32, 53, 0.06);
}

.panel__title {
  margin: 0 0 0.6rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6a5a7a;
}

.stat-list {
  margin: 0;
}

.stat-list__row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid #ebe3d6;
  font-size: 0.9rem;
}

.stat-list__row:last-child {
  border-bottom: none;
}

.stat-list dt {
  margin: 0;
  font-weight: 600;
  color: #5c4d6e;
}

.stat-list dd {
  margin: 0;
  text-align: right;
}

.stat-list__row--room dd.stat-room-value {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.room-code {
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
  font-size: 0.95em;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.btn--copy-room {
  flex-shrink: 0;
  min-width: 3.25rem;
  padding: 0.15rem 0.45rem;
  font-size: 0.75rem;
}

.btn--copy-room.is-copied {
  color: #2d6a3e;
}

.game-log {
  margin: 0;
  font-size: 0.9rem;
  min-height: 4rem;
  color: #3d3048;
}

.panel--log {
  flex: 1;
  min-height: 6rem;
}

.hint-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
}

.hint-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.swatch {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.swatch--maze {
  background: var(--color-maze-border);
}

.swatch--bank {
  background: rgba(107, 77, 138, 0.25);
  border-style: dashed;
}

.swatch--tile {
  background: #5a3d7a;
}

.game-footer {
  padding: 0.5rem 1.25rem 1rem;
}

/* Legacy class aliases for lobby pages */
.centered-form {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.centered-form__box {
  background: var(--color-bg-panel);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-panel);
}

.centered-form__box h1,
.centered-form__box h2 {
  margin-top: 0;
  color: var(--color-border-dark);
}

.btn-start {
  display: block;
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.6rem 1.2rem;
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: inherit;
}

.btn-start:hover {
  background: var(--color-accent-hover);
  color: #fff;
}

.panel__note {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  color: #6a5a7a;
}

.dice-panel {
  text-align: center;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  background: linear-gradient(145deg, #fffaf2 0%, #ebe3f5 100%);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-panel);
}

.dice-panel__who {
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #5c4d6e;
}

.dice-panel__steps-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  margin: 0.5rem 0 0;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  background: rgba(91, 58, 138, 0.08);
  border: 1px solid rgba(91, 58, 138, 0.2);
}

.dice-panel__steps-value {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: #4a2d6e;
  font-variant-numeric: tabular-nums;
}

.dice-panel__steps-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6a5a7a;
}

.dice-panel__hint {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: #6a5a7a;
  min-height: 1.2em;
}

.dice-setup-rolls {
  margin: 0.65rem 0 0;
  padding-top: 0.65rem;
  border-top: 1px dashed rgba(92, 77, 110, 0.35);
}

.dice-setup-rolls__title {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #5c4d6e;
}

.dice-setup-rolls__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.dice-setup-roll {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.35rem 0.55rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(92, 77, 110, 0.25);
  border-radius: 8px;
  font-size: 0.85rem;
}

.dice-setup-roll__name {
  font-weight: 600;
  color: #4a3d58;
  text-align: left;
}

.dice-setup-roll__value {
  min-width: 1.75rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-border-dark);
}

.dice-setup-roll--wait .dice-setup-roll__value {
  font-size: 1rem;
  font-weight: 600;
  color: #9a8aaa;
}

.dice-setup-roll--high {
  border-color: var(--color-accent);
  background: rgba(255, 248, 220, 0.95);
  box-shadow: 0 0 0 1px rgba(196, 92, 62, 0.25);
}

.dice-setup-roll--rolling {
  border-color: #6b8cce;
  animation: dice-row-pulse 0.8s ease-in-out infinite;
}

@keyframes dice-row-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}

.dice-display-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.dice-panel__total {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-border-dark);
  text-align: center;
}

.dice-display {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  background: #fff;
  border: 3px solid var(--color-border);
  border-radius: 12px;
  box-shadow: inset 0 2px 6px rgba(42, 32, 53, 0.12);
}

.dice-display__value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-border-dark);
  line-height: 1;
}

.dice-display--rolling .dice-display__value {
  animation: dice-tick 0.1s ease-in-out infinite;
}

.dice-display--landed .dice-display__value {
  animation: dice-land 0.35s ease-out;
}

@keyframes dice-tick {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes dice-land {
  0% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}

.setup-tile-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
  padding: 0.45rem 0.55rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(92, 77, 110, 0.2);
  border-radius: 8px;
}

.setup-rotation-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4a3d58;
}

.setup-bank-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  max-height: 8rem;
  overflow-y: auto;
}

#idPlayArea01 .clsGameTile.is-setup-picked {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  z-index: 7;
}

.setup-bank-tiles .btn--tile-pick.setup-tile-pick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  border: 1px solid #c4b8a8;
  border-radius: 4px;
  background: #ebe3f5;
  box-shadow: 0 1px 3px rgba(42, 32, 53, 0.2);
  cursor: pointer;
  flex-shrink: 0;
  font-size: 0;
  line-height: 0;
}

.setup-tile-pick__img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 3px;
  isolation: isolate;
}

.setup-bank-tiles .btn--tile-pick:not(.setup-tile-pick) {
  font-size: 0.75rem;
  padding: 0.3rem 0.45rem;
}

.setup-bank-tiles .btn--tile-pick.is-selected {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  background: rgba(107, 77, 138, 0.12);
}

#idPlayArea01 .clsSetupSlot {
  outline: 3px dashed rgba(80, 120, 220, 0.9);
  outline-offset: -3px;
  cursor: pointer;
  background: rgba(80, 120, 220, 0.15);
  pointer-events: auto;
  z-index: 6;
}

#idPlayArea01 .clsPushSlot {
  outline: 3px solid rgba(220, 140, 40, 0.95);
  outline-offset: -3px;
  cursor: pointer;
  background: rgba(255, 200, 80, 0.35);
  pointer-events: auto;
  z-index: 8;
  box-sizing: border-box;
}

#idPlayArea01 .clsPushSlot:hover {
  background: rgba(255, 220, 120, 0.55);
}

.push-options {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-height: 10rem;
  overflow-y: auto;
}

.push-options .btn {
  font-size: 0.8rem;
  padding: 0.35rem 0.5rem;
  text-align: left;
}

#idPlayArea01 .clsReachable {
  outline: 3px solid rgba(80, 180, 80, 0.85);
  outline-offset: -3px;
  cursor: pointer;
}

/* Current goal treasure — only shown on this player's filtered game view */
#idPlayArea01 .clsGoalTile {
  outline: 3px solid rgba(255, 184, 28, 0.98);
  outline-offset: -3px;
  box-shadow:
    0 0 0 2px rgba(255, 220, 100, 0.55),
    0 0 16px rgba(255, 184, 28, 0.65);
  z-index: 7;
  animation: goal-tile-pulse 1.8s ease-in-out infinite;
}

@keyframes goal-tile-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 2px rgba(255, 220, 100, 0.55),
      0 0 12px rgba(255, 184, 28, 0.5);
  }
  50% {
    box-shadow:
      0 0 0 3px rgba(255, 220, 100, 0.75),
      0 0 20px rgba(255, 184, 28, 0.85);
  }
}

/* —— Character-pick modal —— */
.char-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.char-modal[hidden] {
  display: none;
}

.char-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 30, 0.55);
  backdrop-filter: blur(2px);
}

.char-modal__card {
  position: relative;
  z-index: 1;
  width: min(420px, calc(100vw - 2rem));
  background: var(--color-bg-panel);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-panel);
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.char-modal__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.char-modal__title {
  margin: 0;
  font-size: 1.15rem;
  color: var(--color-border-dark);
}

.char-modal__subtitle {
  margin: 0;
  font-size: 0.8rem;
  color: #5c4d6e;
}

.char-modal__viewer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
}

.char-modal__chevron {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-border-dark);
  width: 2rem;
  height: 2.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.char-modal__chevron:hover:not(:disabled) {
  background: rgba(107, 77, 138, 0.1);
}

.char-modal__chevron:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.char-modal__card-body {
  text-align: center;
  padding: 0.5rem 0.25rem 0.25rem;
  min-height: 11rem;
}

.char-modal__portrait {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
  border: 3px solid var(--color-border);
  background: #fff center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.char-modal__initial {
  user-select: none;
  pointer-events: none;
}

.char-modal__portrait--has-image .char-modal__initial {
  display: none;
}

.char-modal__name {
  margin: 0 0 0.15rem;
  font-size: 1.05rem;
  color: var(--color-border-dark);
}

.char-modal__short {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
  color: #2a2035;
  line-height: 1.45;
}

.char-modal__power {
  margin: 0;
  font-size: 0.8rem;
  color: #1f1728;
  line-height: 1.45;
  font-weight: 600;
}

.char-modal__taken {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--color-danger);
  font-weight: 600;
}

.char-modal__dots {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  flex-wrap: wrap;
  padding: 0 0.25rem;
}

.char-modal__dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(107, 77, 138, 0.25);
  border: 1px solid transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.char-modal__dot:hover {
  background: rgba(107, 77, 138, 0.5);
}

.char-modal__dot--active {
  background: var(--color-accent);
}

.char-modal__dot--taken {
  background: rgba(166, 61, 61, 0.55);
}

.char-modal__dot--taken.char-modal__dot--active {
  outline: 2px solid var(--color-danger);
}

/* Tooltip on dot hover: shows the character's name and a one-line summary
   so players can jump directly to a character without flipping through. */
.char-modal__dot[data-tooltip]:hover::after,
.char-modal__dot[data-tooltip]:focus-visible::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  max-width: 240px;
  font-size: 0.72rem;
  font-weight: 500;
  background: #2a2035;
  color: #fff;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}

.char-modal__actions {
  display: flex;
  justify-content: center;
  margin-top: 0.25rem;
}

.char-modal__actions .btn {
  min-width: 9rem;
}

/* Setup announcements (order roll complete, your pick turn) */
.game-message-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.game-message-modal[hidden] {
  display: none;
}

.game-message-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 8, 24, 0.72);
}

.game-message-modal__card {
  position: relative;
  z-index: 1;
  max-width: 26rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  background: linear-gradient(160deg, #2a1f42 0%, #1a1228 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.game-message-modal__title {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  color: #f0e8ff;
}

.game-message-modal__body {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #d8cfe8;
}

.game-message-modal__actions {
  display: flex;
  justify-content: center;
}

.dice-setup-roll__detail {
  display: block;
  font-size: 0.75rem;
  opacity: 0.85;
  margin-top: 0.15rem;
}
