:root {
  color-scheme: light;
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-soft: #eef4f0;
  --ink: #19211f;
  --muted: #68736f;
  --line: #d9ded8;
  --primary: #0f6b5f;
  --primary-strong: #0a5149;
  --accent: #d87338;
  --amber: #f0b94d;
  --danger: #b22d42;
  --shadow: 0 22px 70px rgba(25, 33, 31, 0.14);
  --shadow-raised: 0 18px 34px rgba(25, 33, 31, 0.16), 0 3px 0 rgba(255, 255, 255, 0.75) inset;
  --shadow-control: 0 9px 18px rgba(25, 33, 31, 0.14), 0 1px 0 rgba(255, 255, 255, 0.75) inset;
  --shadow-pressed: 0 4px 10px rgba(25, 33, 31, 0.12), 0 1px 0 rgba(255, 255, 255, 0.55) inset;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 15% 12%, rgba(15, 107, 95, 0.13), transparent 32%),
    radial-gradient(circle at 86% 82%, rgba(216, 115, 56, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(246, 244, 239, 0.54)),
    var(--bg);
  color: var(--ink);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  width: min(1440px, calc(100vw - 20px));
  margin: 0 auto;
  padding: 0;
  min-height: 0;
}

.site-header,
.site-footer {
  width: min(1440px, calc(100vw - 20px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 10px 0 6px;
}

.site-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
}

.site-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(25, 33, 31, 0.88);
  padding-left: 4px;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.site-logo {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 55% 45% 52% 48% / 58% 50% 50% 42%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.38), transparent 18%),
    linear-gradient(150deg, #8b5a2b, #4f2f1b 72%);
  box-shadow:
    0 2px 5px rgba(25, 33, 31, 0.16),
    inset 2px 2px 3px rgba(255, 255, 255, 0.16),
    inset -3px -3px 4px rgba(0, 0, 0, 0.18);
  transform: rotate(-24deg);
}

.site-logo::after {
  position: absolute;
  inset: 3px 6px 3px 7px;
  border-left: 2px solid rgba(246, 216, 174, 0.72);
  border-radius: 50%;
  content: "";
  transform: rotate(12deg);
}

.site-title:hover,
.site-title:focus-visible {
  color: var(--primary-strong);
}

.site-title:focus-visible {
  outline: 3px solid rgba(15, 107, 95, 0.18);
  outline-offset: 4px;
}

.site-footer {
  display: flex;
  justify-content: flex-end;
  min-height: 28px;
  padding: 4px 0 10px;
}

.site-footer p {
  margin: 0;
  color: rgba(104, 115, 111, 0.82);
  font-size: 0.76rem;
  font-style: italic;
  font-weight: 800;
}

.entry-view {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 8px 0;
}

.intro h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-copy {
  max-width: 580px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.6;
}

.entry-panel {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 251, 248, 0.9)),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.entry-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

input {
  width: 100%;
  border: 1px solid #cfd7d0;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fbfcfa);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  box-shadow: 0 2px 0 rgba(25, 33, 31, 0.04) inset;
}

input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 107, 95, 0.14);
}

textarea {
  width: 100%;
  min-height: 124px;
  resize: vertical;
  border: 1px solid #cfd7d0;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fbfcfa);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  box-shadow: 0 2px 0 rgba(25, 33, 31, 0.04) inset;
}

textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 107, 95, 0.14);
}

.entry-actions,
.room-action-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.room-actions {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, auto);
  align-items: center;
  justify-content: end;
  gap: 8px 14px;
  min-width: min(680px, 54vw);
}

.room-action-group {
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.session-actions {
  justify-content: end;
}

.play-actions {
  justify-content: start;
}

.room-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1 1 360px;
}

.primary-button,
.secondary-button {
  min-height: 38px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0 14px;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: var(--shadow-control);
  transform: translateY(0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    border-color 150ms ease,
    background 150ms ease;
}

.primary-button {
  border-color: rgba(6, 75, 67, 0.28);
  background: linear-gradient(180deg, #138173, var(--primary));
  color: #fff;
}

.primary-button:hover {
  background: linear-gradient(180deg, #0f7367, var(--primary-strong));
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(15, 107, 95, 0.24), 0 1px 0 rgba(255, 255, 255, 0.28) inset;
}

.primary-button:disabled,
.secondary-button:disabled {
  cursor: not-allowed;
  opacity: 0.64;
  transform: none;
}

.secondary-button {
  border-color: rgba(207, 215, 208, 0.92);
  background: linear-gradient(180deg, #fff, #f7faf7);
  color: var(--ink);
}

.secondary-button:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 13px 24px rgba(25, 33, 31, 0.16), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.danger-button {
  border-color: rgba(178, 45, 66, 0.24);
  color: var(--danger);
}

.danger-button:hover {
  border-color: rgba(178, 45, 66, 0.56);
  box-shadow: 0 13px 24px rgba(178, 45, 66, 0.12), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.danger-confirm {
  border-color: rgba(122, 20, 37, 0.42);
  background: linear-gradient(180deg, #c93a52, var(--danger));
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.button-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.button-label {
  min-width: 0;
}

.icon-only-button {
  width: 38px;
  min-width: 38px;
  padding: 0;
}

.primary-button:active,
.secondary-button:active,
.card-button:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-pressed);
}

.error-message {
  min-height: 20px;
  margin: 0;
  color: var(--danger);
  font-weight: 700;
}

.hidden {
  display: none !important;
}

.room-view {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 10px;
  min-height: calc(100vh - 80px);
  padding-bottom: 8px;
}

.finish-view {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 80px);
  padding: 8px 0;
}

.confirm-dialog {
  width: min(520px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 251, 248, 0.9)),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  padding: 24px;
  text-align: center;
}

.finish-panel {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(1000px, 100%);
  text-align: center;
}

.finish-panel h2,
.confirm-dialog h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.finish-panel p:not(.eyebrow),
.confirm-dialog p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
}

.finish-stats-content {
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) minmax(170px, 0.82fr) minmax(210px, 1fr) minmax(210px, 1fr);
  gap: 10px;
  width: 100%;
  margin: 6px 0 2px;
  text-align: left;
}

.finish-empty {
  width: min(520px, 100%);
  border: 1px solid rgba(207, 215, 208, 0.9);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8faf7);
  padding: 16px;
  text-align: center;
}

.room-header {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 252, 249, 0.84)),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-raised);
  padding: 8px 12px;
  backdrop-filter: blur(14px);
}

.room-header .primary-button,
.room-header .secondary-button {
  min-height: 34px;
  padding: 0 10px;
  font-size: 0.82rem;
}

.confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  background: rgba(25, 33, 31, 0.36);
  padding: 18px;
  backdrop-filter: blur(8px);
}

.chaos-button {
  min-height: 28px;
  border: 2px solid rgba(255, 215, 160, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 103, 55, 0.96), rgba(176, 22, 38, 0.98)),
    var(--danger);
  color: #fff7ec;
  padding: 0 10px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(122, 20, 37, 0.24), 0 0 0 5px rgba(209, 55, 62, 0.1);
  animation: chaos-button-pulse 1600ms ease-in-out infinite;
}

.chaos-button:hover,
.chaos-button:focus-visible {
  transform: translateY(-2px) rotate(-1deg);
  box-shadow: 0 15px 28px rgba(122, 20, 37, 0.32), 0 0 0 7px rgba(209, 55, 62, 0.14);
}

.chaos-warning-overlay {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: grid;
  place-items: center;
  background: rgba(25, 13, 12, 0.58);
  padding: 18px;
  backdrop-filter: blur(9px);
}

.chaos-warning-dialog {
  display: grid;
  width: min(620px, 100%);
  gap: 15px;
  border: 2px solid rgba(255, 187, 113, 0.7);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(255, 236, 210, 0.96)),
    #fff4e2;
  box-shadow: 0 26px 58px rgba(75, 12, 20, 0.42);
  padding: 28px;
  text-align: center;
}

.chaos-warning-dialog h2 {
  margin: 0;
  color: #67101b;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 0.98;
}

.chaos-warning-dialog p:not(.eyebrow) {
  margin: 0;
  color: #8d3f20;
  font-weight: 850;
  line-height: 1.35;
}

.chaos-animation-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: all;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 232, 1) 0 4%, rgba(255, 207, 76, 0.98) 5% 10%, rgba(255, 79, 28, 0.9) 11% 21%, rgba(124, 7, 28, 0.82) 22% 34%, transparent 35%),
    radial-gradient(circle at 50% 78%, rgba(255, 93, 31, 0.42), transparent 28%),
    linear-gradient(180deg, rgba(38, 11, 16, 0.97), rgba(13, 10, 10, 0.94));
  opacity: 0;
}

.chaos-animation-overlay.is-active {
  animation: chaos-overlay-life 10000ms ease forwards;
}

.chaos-animation-overlay::before,
.chaos-animation-overlay::after {
  position: absolute;
  inset: -12%;
  content: "";
}

.chaos-animation-overlay::before {
  background:
    conic-gradient(from 18deg at 50% 50%, transparent 0 8deg, rgba(255, 232, 107, 0.78) 9deg 14deg, transparent 15deg 35deg, rgba(255, 82, 32, 0.66) 36deg 43deg, transparent 44deg 76deg, rgba(255, 246, 202, 0.82) 77deg 83deg, transparent 84deg 120deg, rgba(206, 18, 39, 0.62) 121deg 130deg, transparent 131deg 360deg),
    radial-gradient(circle at 28% 42%, rgba(255, 226, 126, 0.92) 0 3%, rgba(255, 76, 35, 0.64) 4% 13%, transparent 14%),
    radial-gradient(circle at 66% 36%, rgba(255, 247, 186, 0.9) 0 4%, rgba(255, 99, 31, 0.58) 5% 15%, transparent 16%),
    radial-gradient(circle at 52% 58%, rgba(255, 206, 91, 0.76) 0 5%, rgba(191, 24, 38, 0.56) 6% 19%, transparent 20%);
  filter: blur(1px) saturate(1.18);
  transform: scale(0.16) rotate(0deg);
}

.chaos-animation-overlay.is-active::before {
  animation: chaos-blast 2400ms cubic-bezier(0.18, 0.82, 0.24, 1) forwards;
}

.chaos-animation-overlay::after {
  background:
    radial-gradient(circle at 52% 52%, transparent 0 16%, rgba(20, 13, 12, 0.18) 17% 26%, transparent 27%),
    linear-gradient(115deg, transparent 0 22%, rgba(20, 13, 12, 0.48) 23% 27%, transparent 28% 100%),
    linear-gradient(64deg, transparent 0 46%, rgba(255, 103, 55, 0.3) 47% 50%, transparent 51% 100%),
    radial-gradient(circle at 42% 62%, rgba(35, 21, 18, 0.72), transparent 36%);
  mix-blend-mode: screen;
  opacity: 0;
}

.chaos-animation-overlay.is-active::after {
  animation: chaos-smoke 10000ms ease forwards;
}

.chaos-flash {
  position: absolute;
  inset: 0;
  background: #fff8d8;
  opacity: 0;
}

.chaos-animation-overlay.is-active .chaos-flash {
  animation: chaos-flash 1500ms ease-out forwards;
}

.chaos-shockwave {
  position: absolute;
  width: min(42vw, 460px);
  aspect-ratio: 1;
  border: 6px solid rgba(255, 235, 156, 0.86);
  border-radius: 50%;
  box-shadow:
    0 0 34px rgba(255, 220, 100, 0.74),
    0 0 96px rgba(255, 80, 31, 0.52),
    inset 0 0 42px rgba(255, 255, 220, 0.38);
  opacity: 0;
  transform: scale(0.08);
}

.chaos-animation-overlay.is-active .chaos-shockwave {
  animation: chaos-shockwave 2100ms cubic-bezier(0.08, 0.86, 0.18, 1) forwards;
}

.chaos-debris {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.chaos-debris span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(10px, 1.8vw, 22px);
  height: clamp(6px, 1.2vw, 14px);
  border-radius: 3px;
  background: linear-gradient(90deg, #ffe58b, #ff6a2f 54%, #75101f);
  box-shadow: 0 0 18px rgba(255, 92, 31, 0.72);
  opacity: 0;
}

.chaos-debris span:nth-child(1) {
  --debris-x: -42vw;
  --debris-y: -30vh;
  --debris-rotate: -520deg;
}

.chaos-debris span:nth-child(2) {
  --debris-x: 38vw;
  --debris-y: -26vh;
  --debris-rotate: 460deg;
}

.chaos-debris span:nth-child(3) {
  --debris-x: -34vw;
  --debris-y: 28vh;
  --debris-rotate: 390deg;
}

.chaos-debris span:nth-child(4) {
  --debris-x: 44vw;
  --debris-y: 30vh;
  --debris-rotate: -430deg;
}

.chaos-debris span:nth-child(5) {
  --debris-x: -8vw;
  --debris-y: -42vh;
  --debris-rotate: 520deg;
}

.chaos-debris span:nth-child(6) {
  --debris-x: 12vw;
  --debris-y: 42vh;
  --debris-rotate: -560deg;
}

.chaos-debris span:nth-child(7) {
  --debris-x: -50vw;
  --debris-y: 4vh;
  --debris-rotate: -320deg;
}

.chaos-debris span:nth-child(8) {
  --debris-x: 50vw;
  --debris-y: -2vh;
  --debris-rotate: 340deg;
}

.chaos-animation-overlay.is-active .chaos-debris span {
  animation: chaos-debris 1850ms cubic-bezier(0.09, 0.75, 0.2, 1) forwards;
}

.chaos-burn-text {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  width: min(900px, calc(100vw - 28px));
  color: #fff5dc;
  text-align: center;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.72), 0 0 34px rgba(255, 93, 31, 0.86), 0 0 2px #fff2c7;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
}

.chaos-animation-overlay.is-active .chaos-burn-text {
  animation: chaos-text 10000ms ease forwards;
}

.chaos-burn-text strong {
  font-size: clamp(2.6rem, 8vw, 7rem);
  font-weight: 950;
  line-height: 0.92;
}

.chaos-burn-text span {
  color: #ffd78d;
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-weight: 900;
}

@keyframes chaos-button-pulse {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.16);
  }
}

@keyframes chaos-overlay-life {
  0% {
    opacity: 0;
  }

  8%,
  88% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes chaos-flash {
  0% {
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  18% {
    opacity: 0.78;
  }

  100% {
    opacity: 0;
  }
}

@keyframes chaos-blast {
  0% {
    opacity: 0;
    transform: scale(0.16) rotate(0deg);
  }

  14% {
    opacity: 1;
  }

  46% {
    opacity: 0.86;
    transform: scale(1.22) rotate(9deg);
  }

  100% {
    opacity: 0.48;
    transform: scale(1.72) rotate(17deg);
  }
}

@keyframes chaos-shockwave {
  0% {
    opacity: 0;
    transform: scale(0.08);
  }

  8% {
    opacity: 1;
  }

  70% {
    opacity: 0.38;
  }

  100% {
    opacity: 0;
    transform: scale(4.2);
  }
}

@keyframes chaos-debris {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4) rotate(0deg);
  }

  9% {
    opacity: 1;
  }

  82% {
    opacity: 0.82;
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--debris-x)), calc(-50% + var(--debris-y))) scale(0.9) rotate(var(--debris-rotate));
  }
}

@keyframes chaos-smoke {
  0%,
  22% {
    opacity: 0;
    transform: translateY(20px);
  }

  55%,
  100% {
    opacity: 0.78;
    transform: translateY(-18px);
  }
}

@keyframes chaos-text {
  0%,
  20% {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  32%,
  78% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-12px) scale(1.02);
  }
}

.feedback-widget {
  position: relative;
  display: grid;
  justify-items: end;
  gap: 8px;
}

.feedback-toggle-button {
  min-height: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(15, 107, 95, 0.9);
  padding: 0;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: underline;
  text-decoration-color: rgba(15, 107, 95, 0.34);
  text-underline-offset: 4px;
  box-shadow: none;
}

.feedback-toggle-button:hover,
.feedback-toggle-button:focus-visible {
  color: var(--primary-strong);
  text-decoration-color: currentColor;
}

.feedback-toggle-button:focus-visible {
  outline: 3px solid rgba(15, 107, 95, 0.18);
  outline-offset: 4px;
}

.feedback-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  width: min(360px, calc(100vw - 36px));
  max-height: calc(100vh - 74px);
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 248, 0.94)),
    rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  padding: 16px;
  overflow: auto;
  backdrop-filter: blur(14px);
}

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

.feedback-panel h2 {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.feedback-close-button .button-label {
  display: none;
}

.feedback-status {
  min-height: 19px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.feedback-actions {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  flex-wrap: wrap;
}

.confirm-dialog {
  display: grid;
  gap: 14px;
}

.confirm-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.story-input {
  max-width: 620px;
  width: var(--story-input-width, 24ch);
  min-width: 0;
  flex: 0 1 auto;
  border: 0;
  border-bottom: 2px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 2px 0 4px;
  font-size: clamp(1.2rem, 2.25vw, 1.9rem);
  font-weight: 900;
  line-height: 1.05;
}

.share-link-input {
  width: min(280px, 100%);
  min-height: 38px;
  padding: 8px 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.share-status {
  min-width: 86px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
}

h2 {
  margin: 0;
  font-size: 0.9rem;
}

.table-stage {
  min-height: 0;
  position: relative;
  z-index: 1;
}

.table-panel {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(25, 33, 31, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(235, 239, 233, 0.46)),
    rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68), inset 0 -28px 60px rgba(25, 33, 31, 0.06);
  padding: 10px;
}

.poker-table {
  position: relative;
  min-height: 0;
  height: 100%;
  --table-glow-color: rgba(15, 107, 95, 0.16);
  border: 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 51%, rgba(255, 255, 255, 0.98), transparent 52%),
    radial-gradient(ellipse at 50% 58%, rgba(25, 33, 31, 0.07), transparent 36%),
    linear-gradient(180deg, rgba(244, 248, 245, 0.9), rgba(231, 237, 231, 0.52));
  overflow: hidden;
  box-shadow: inset 0 18px 44px rgba(255, 255, 255, 0.58), inset 0 -24px 54px rgba(25, 33, 31, 0.05);
  transition:
    background 220ms ease,
    box-shadow 220ms ease;
}

.poker-table::before {
  position: absolute;
  inset: 13% 16%;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(25, 33, 31, 0.08), transparent 64%);
  content: "";
  filter: blur(16px);
  opacity: 0.42;
}

.room-view.is-revealed .poker-table {
  box-shadow:
    inset 0 18px 44px rgba(255, 255, 255, 0.62),
    inset 0 -24px 54px rgba(25, 33, 31, 0.05),
    0 0 60px color-mix(in srgb, var(--table-glow-color) 34%, transparent);
}

.table-surface {
  position: absolute;
  inset: 27% 31%;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 2px solid rgba(15, 107, 95, 0.14);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72) 46%, transparent 47%),
    radial-gradient(ellipse at 50% 54%, rgba(15, 107, 95, 0.08), transparent 56%),
    rgba(255, 255, 255, 0.34);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    inset 0 0 0 12px rgba(255, 255, 255, 0.34),
    0 20px 44px rgba(25, 33, 31, 0.09);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.room-view.is-revealed .table-surface {
  border-color: color-mix(in srgb, var(--table-glow-color) 42%, rgba(255, 255, 255, 0.52));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    inset 0 0 0 12px rgba(255, 255, 255, 0.38),
    0 0 0 6px color-mix(in srgb, var(--table-glow-color) 14%, transparent),
    0 0 46px color-mix(in srgb, var(--table-glow-color) 38%, transparent),
    0 20px 44px rgba(25, 33, 31, 0.09);
}

.table-center {
  display: grid;
  gap: 5px;
  max-width: min(82%, 360px);
  color: var(--ink);
  text-align: center;
  place-items: center;
  padding: 14px;
}

.table-center strong {
  max-width: 100%;
  font-size: clamp(1rem, 2vw, 1.46rem);
  line-height: 1;
  letter-spacing: 0;
}

.table-kicker,
.table-subline,
.table-callout {
  max-width: 100%;
}

.table-kicker {
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.table-subline {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.2;
}

.table-callout {
  display: grid;
  justify-items: center;
  gap: 5px;
  margin-top: 6px;
  border-top: 1px solid rgba(15, 107, 95, 0.14);
  color: var(--muted);
  padding-top: 8px;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.18;
}

.table-callout-label {
  color: var(--primary);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.table-callout-message {
  max-width: 100%;
  color: var(--ink);
  font-size: 0.72rem;
}

.pending-chip-list {
  display: flex;
  justify-content: center;
  gap: 5px;
  max-width: 100%;
  flex-wrap: wrap;
}

.pending-chip {
  display: inline-flex;
  align-items: center;
  max-width: 132px;
  gap: 5px;
  border: 1px solid rgba(15, 107, 95, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  padding: 2px 7px 2px 2px;
  box-shadow: 0 5px 10px rgba(25, 33, 31, 0.06), 0 1px 0 rgba(255, 255, 255, 0.76) inset;
}

.pending-chip-avatar {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--pending-avatar-bg);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -5px 8px rgba(0, 0, 0, 0.18);
}

.pending-chip-name {
  min-width: 0;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 950;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seat-list {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 0;
  margin: 0;
  list-style: none;
}

.seat {
  position: absolute;
  left: var(--seat-x);
  top: var(--seat-y);
  width: 108px;
  transform: translate(-50%, -50%);
}

.seat-marker {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 2px 4px;
}

.seat-marker.me .avatar {
  outline: 3px solid rgba(15, 107, 95, 0.2);
  outline-offset: 2px;
}

.seat.has-voted .avatar {
  box-shadow:
    0 0 0 3px rgba(240, 185, 77, 0.9),
    0 10px 18px rgba(25, 33, 31, 0.16),
    inset 0 -6px 10px rgba(0, 0, 0, 0.16);
}

.avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--avatar-bg);
  color: #fff;
  font-size: 1.32rem;
  font-weight: 950;
  line-height: 1;
  box-shadow:
    0 15px 26px rgba(25, 33, 31, 0.24),
    inset 0 2px 0 rgba(255, 255, 255, 0.28),
    inset 0 -10px 14px rgba(0, 0, 0, 0.2);
}

button.avatar {
  padding: 0;
}

.avatar-edit-icon {
  position: absolute;
  inset: -5px -5px auto auto;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: linear-gradient(180deg, #fff, #f8faf7);
  color: var(--primary);
  font-size: 0.72rem;
  box-shadow: 0 8px 16px rgba(25, 33, 31, 0.16);
  opacity: 0;
  transform: translateY(2px);
  transition:
    opacity 140ms ease,
    transform 140ms ease;
}

.seat-marker.me:hover .avatar-edit-icon,
.avatar:focus-visible .avatar-edit-icon {
  opacity: 1;
  transform: translateY(0);
}

.seat-name-group {
  display: grid;
  justify-items: center;
  gap: 1px;
  width: 100%;
  min-height: 30px;
}

.seat-name {
  max-width: 100%;
  color: #111817;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95),
    0 8px 18px rgba(25, 33, 31, 0.18);
}

.seat-you {
  color: #59635f;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.95);
}

.avatar-picker {
  position: absolute;
  z-index: 8;
  top: 58px;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(4, 34px);
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 248, 0.94)),
    rgba(255, 255, 255, 0.96);
  padding: 8px;
  box-shadow: 0 22px 44px rgba(25, 33, 31, 0.22), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.avatar-option {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  font-size: 1.24rem;
}

.avatar-option:hover,
.avatar-option:focus-visible {
  border-color: var(--primary);
  background: var(--surface-soft);
}

.vote-bubble {
  position: absolute;
  left: calc(50% + 27px);
  top: -7px;
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, #f8faf7);
  color: var(--ink);
  padding: 4px 9px;
  font-size: 0.72rem;
  font-weight: 950;
  box-shadow: 0 14px 26px rgba(25, 33, 31, 0.18), 0 1px 0 rgba(255, 255, 255, 0.78) inset;
}

.vote-bubble::before {
  position: absolute;
  left: 2px;
  bottom: 2px;
  width: 10px;
  height: 10px;
  background: inherit;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  content: "";
  transform: translate(-40%, 35%) rotate(18deg);
}

.vote-bubble.ready {
  border-color: rgba(240, 185, 77, 0.75);
  background: #fff7de;
  color: #7a4a0c;
}

.vote-bubble.revealed {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  font-size: 0.95rem;
}

.vote-bubble.revealed::before {
  border-color: var(--primary);
}

.bottom-panel {
  position: relative;
  z-index: 3;
  height: 162px;
  min-height: 162px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 252, 249, 0.88)),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-raised);
  padding: 12px;
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.result-section {
  display: none;
  height: 100%;
  min-height: 100%;
}

.room-view.is-revealed .result-section {
  display: grid;
  align-items: center;
}

.room-view.is-revealed .cards-section {
  display: none;
}

.summary-content {
  display: grid;
  grid-template-columns: minmax(132px, 0.75fr) minmax(180px, 1fr) minmax(210px, 1fr) minmax(210px, 1fr);
  gap: 10px;
  margin-top: 0;
  width: 100%;
  color: var(--ink);
  font-size: 0.88rem;
  align-items: stretch;
  min-height: 0;
  overflow: hidden;
}

.summary-content h3 {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.1;
}

.agreement-card {
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(207, 215, 208, 0.9);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8faf7);
  padding: 8px;
  min-width: 0;
  min-height: 0;
  text-align: center;
  box-shadow: 0 10px 20px rgba(25, 33, 31, 0.08), 0 1px 0 rgba(255, 255, 255, 0.76) inset;
}

.agreement-meter {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: conic-gradient(var(--agreement-color) var(--agreement-score), #edf0ec 0);
  animation: robot-float 2600ms ease-in-out infinite;
}

.agreement-meter::after {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.agreement-face {
  position: relative;
  z-index: 1;
  width: 29px;
  height: 23px;
  border: 2px solid #183654;
  border-radius: 10px 10px 8px 8px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.95), transparent 14%),
    linear-gradient(180deg, #bfe5ff, #8fc8f4);
  box-shadow:
    inset 0 -5px 0 rgba(24, 54, 84, 0.12),
    0 3px 0 rgba(24, 54, 84, 0.08);
  animation: robot-bob 1800ms ease-in-out infinite;
}

.agreement-face::before,
.agreement-face::after {
  position: absolute;
  top: 8px;
  width: 3px;
  height: 6px;
  border: 1.5px solid #183654;
  border-radius: 999px;
  background: #183654;
  content: "";
}

.agreement-face::before {
  left: -5px;
}

.agreement-face::after {
  right: -5px;
}

.agreement-face.happy {
  animation-duration: 1300ms;
}

.face-eye {
  position: absolute;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #183654;
  animation: robot-blink 4200ms infinite;
}

.face-eye.left {
  left: 8px;
}

.face-eye.right {
  right: 8px;
}

.face-mouth {
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 11px;
  height: 5px;
  border: 2px solid #183654;
  border-top: 0;
  border-radius: 0 0 999px 999px;
  transform: translateX(-50%);
}

.agreement-face.neutral .face-mouth {
  bottom: 6px;
  height: 2px;
  border: 0;
  border-radius: 999px;
  background: #183654;
}

.agreement-face.sad .face-mouth {
  bottom: 5px;
  border: 2px solid #183654;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.agreement-confetti {
  position: absolute;
  z-index: 1;
  top: 3px;
  right: 6px;
  color: var(--agreement-color);
  font-size: 0.78rem;
  font-weight: 950;
  animation: robot-spark 900ms ease-in-out infinite alternate;
}

@keyframes robot-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

@keyframes robot-bob {
  0%,
  100% {
    transform: rotate(-1deg);
  }

  50% {
    transform: rotate(1deg);
  }
}

@keyframes robot-blink {
  0%,
  88%,
  100% {
    transform: scaleY(1);
  }

  92% {
    transform: scaleY(0.18);
  }
}

@keyframes robot-spark {
  from {
    opacity: 0.55;
    transform: scale(0.9) rotate(-8deg);
  }

  to {
    opacity: 1;
    transform: scale(1.12) rotate(8deg);
  }
}

.agreement-copy {
  display: grid;
  gap: 0;
  justify-items: center;
  min-width: 0;
}

.agreement-copy strong {
  font-size: 1.18rem;
  line-height: 1;
}

.agreement-copy span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.1;
}

.summary-metrics {
  display: grid;
  align-content: stretch;
  gap: 4px;
}

.summary-metric {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 26px;
  border-bottom: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  padding: 3px 0;
}

.summary-metric:last-child {
  border-bottom: 0;
}

.summary-metric-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: rgba(15, 107, 95, 0.11);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 950;
}

.summary-metric-icon.average::before {
  content: "Ø";
}

.summary-metric-icon.count::before {
  content: "#";
}

.summary-metric-icon.rounds::before {
  content: "R";
}

.summary-metric-icon.range::before {
  content: "↔";
}

.summary-number {
  margin-left: auto;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1;
}

.summary-metric-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.summary-block {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 6px;
  min-width: 0;
  min-height: 0;
  border: 1px solid rgba(207, 215, 208, 0.9);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8faf7);
  padding: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(25, 33, 31, 0.08), 0 1px 0 rgba(255, 255, 255, 0.76) inset;
}

.vote-distribution {
  display: grid;
  align-content: center;
  gap: 4px;
  min-height: 0;
}

.vote-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 30px;
  gap: 6px;
  align-items: center;
}

.vote-row-value,
.vote-row-count {
  color: var(--ink);
  font-weight: 900;
}

.vote-row-count {
  color: var(--muted);
  text-align: right;
}

.vote-row-bar {
  position: relative;
  height: 9px;
  border-radius: 999px;
  background: #edf0ec;
  overflow: hidden;
}

.vote-row-bar::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar-width);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #3aa891);
  content: "";
}

.delay-spotlight-content {
  display: grid;
  align-content: center;
  gap: 5px;
  min-height: 0;
}

.delay-spotlight-content strong {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 950;
  line-height: 1.05;
}

.delay-spotlight-content span {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
}

.delay-spotlight-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.discussion-groups {
  display: grid;
  align-content: center;
  gap: 6px;
  min-height: 0;
}

.discussion-group {
  display: grid;
  gap: 4px;
}

.discussion-label,
.discussion-empty {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.discussion-empty {
  margin: 0;
}

.discussion-names {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.discussion-chip {
  border-radius: 999px;
  background: rgba(216, 115, 56, 0.14);
  color: #7a3d18;
  padding: 5px 8px;
  font-size: 0.72rem;
  font-weight: 900;
}

.muted {
  color: var(--muted);
}

.cards-section {
  display: grid;
  align-items: center;
  height: 100%;
  min-height: 100%;
}

.cards {
  display: flex;
  align-items: center;
  justify-content: safe center;
  gap: 9px;
  width: 100%;
  height: 100%;
  margin-top: 0;
  overflow-x: auto;
  padding-bottom: 4px;
}

.card-button {
  width: clamp(58px, 6.8vw, 88px);
  min-width: 58px;
  height: clamp(76px, 8.4vw, 108px);
  border: 2px solid rgba(207, 215, 208, 0.94);
  border-radius: 8px;
  background:
    linear-gradient(156deg, rgba(255, 255, 255, 0.82), transparent 36%),
    linear-gradient(180deg, #fff, #f6faf7);
  color: var(--ink);
  font-size: clamp(1.22rem, 2.8vw, 2rem);
  font-weight: 950;
  box-shadow: 0 14px 26px rgba(25, 33, 31, 0.13), 0 2px 0 rgba(255, 255, 255, 0.88) inset;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.card-button:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 22px 38px rgba(25, 33, 31, 0.18), 0 2px 0 rgba(255, 255, 255, 0.88) inset;
}

.card-button.selected {
  border-color: var(--primary);
  background:
    linear-gradient(156deg, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(180deg, #138173, var(--primary));
  color: #fff;
  box-shadow: 0 22px 38px rgba(15, 107, 95, 0.24), 0 2px 0 rgba(255, 255, 255, 0.24) inset;
}

@media (max-width: 820px) {
  .app-shell,
  .site-header,
  .site-footer {
    width: min(100% - 16px, 620px);
  }

  .site-header {
    min-height: 40px;
    padding-top: 8px;
  }

  .site-header-actions {
    gap: 8px;
  }

  .chaos-button {
    min-height: 26px;
    padding: 0 8px;
    font-size: 0.66rem;
  }

  .site-footer {
    min-height: 26px;
    padding-bottom: 8px;
  }

  .entry-view,
  .table-layout {
    grid-template-columns: 1fr;
  }

  .entry-view {
    gap: 28px;
    align-content: center;
  }

  .room-header {
    align-items: center;
    flex-direction: column;
    padding: 8px 10px;
  }

  .room-title-group {
    width: 100%;
    align-items: center;
  }

  .room-actions {
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
  }

  .room-action-group,
  .entry-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .room-view {
    min-height: calc(100vh - 74px);
  }

  .summary-content {
    grid-template-columns: repeat(4, minmax(170px, 1fr));
    overflow-x: auto;
  }

  .finish-stats-content {
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    overflow-x: auto;
  }

  .summary-metrics {
    grid-template-columns: 1fr;
  }

  .poker-table {
    min-height: 460px;
  }

  .table-surface {
    inset: 39% 27%;
  }

  .seat {
    width: 104px;
  }

  .bottom-panel {
    height: 162px;
    min-height: 162px;
  }
}

@media (max-width: 520px) {
  .site-title,
  .feedback-toggle-button {
    font-size: 0.78rem;
  }

  .site-header {
    align-items: flex-start;
    gap: 10px;
  }

  .site-header-actions {
    flex-wrap: wrap;
  }

  .feedback-panel {
    width: calc(100vw - 20px);
  }

  .feedback-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
