/* Original tabletop presentation. All piece colors depend on public seat order. */
:root {
  --piece-ink: #29463f;
  --table-rim: #b88655;
  --felt: #d6e4b7;
}
body {
  background:
    radial-gradient(ellipse at 10% 0%, #ffe7ad80, transparent 40%),
    repeating-linear-gradient(0deg, transparent 0 39px, #c7ad7730 40px 41px),
    #faf1da;
}
button {
  border: 2px solid var(--piece-ink);
  border-radius: 15px;
  box-shadow: 0 4px 0 var(--piece-ink);
}
button:hover:not(:disabled) {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 7px 0 var(--piece-ink);
}
button:active:not(:disabled) {
  transform: translateY(3px);
  box-shadow: 0 1px 0 var(--piece-ink);
}
button:disabled {
  box-shadow: none;
}
button.secondary {
  border: 2px solid var(--piece-ink);
  background: #fff9e9;
}
button.link,
.tool-button {
  box-shadow: none;
}
button.link {
  border: 0;
}
.tool-button {
  border: 1px solid #bcc5aa;
}
.panel,
.entry {
  border: 2px solid var(--piece-ink);
  box-shadow: 5px 6px 0 #29463f18;
}
.hero h1 {
  text-shadow: 2px 3px 0 #f5d27d;
}
.hero h1 em {
  color: #367563;
}
.hero-eyebrow {
  background: #f8d678;
  padding: 7px 13px;
  border: 1px solid var(--piece-ink);
  border-radius: 8px;
  width: fit-content;
  transform: rotate(-1deg);
}
.friends-preview {
  display: flex;
  position: absolute;
  inset: 10px 0 25px;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
}
.friends-preview .pawn-art {
  width: 90px;
  height: 110px;
  filter: drop-shadow(3px 5px 0 #29463f1f);
}
.friends-preview .pawn-art:first-child {
  transform: rotate(-14deg);
}
.friends-preview .pawn-art:nth-child(2) {
  width: 112px;
  height: 135px;
  transform: translateY(-5px);
}
.friends-preview .pawn-art:last-child {
  transform: rotate(14deg);
}
.signal-orbit {
  border: 2px solid #79926a;
  background: radial-gradient(ellipse, #e5f0bc, #c7d9a6);
  border-radius: 34% 46% 30% 39%;
  height: 192px;
}
.signal-orbit:before,
.signal-orbit:after {
  display: none;
}
.orbit-label {
  bottom: 17px;
  background: #fff5d2;
  padding: 3px 9px;
  border-radius: 5px;
  color: #29463f;
  letter-spacing: 1px;
}
.role-chip {
  box-shadow: 0 3px 0 var(--piece-ink);
  border: 2px solid var(--piece-ink);
}
.role-chip.chosen {
  outline: 3px solid #fff7de;
  outline-offset: 2px;
}
.how-card {
  border: 2px solid var(--piece-ink);
  box-shadow: 3px 4px 0 #29463f18;
}
.how-card:nth-child(2) {
  transform: rotate(-1deg);
}
.entry-symbol {
  border: 2px solid var(--piece-ink);
  box-shadow: 2px 3px 0 #29463f25;
}
.pawn-art {
  display: block;
  width: 68px;
  height: 79px;
  overflow: visible;
}
.pawn-color-0 {
  color: #f5c95c;
}
.pawn-color-1 {
  color: #8ec9eb;
}
.pawn-color-2 {
  color: #f49b83;
}
.pawn-color-3 {
  color: #93c79b;
}
.pawn-color-4 {
  color: #baa5d4;
}
.pawn-color-5 {
  color: #eeafcb;
}
.pawn-color-6 {
  color: #d0cd7f;
}
.pawn-color-7 {
  color: #79c7bb;
}
.pawn-color-8 {
  color: #eba469;
}
.pawn-color-9 {
  color: #c1b5a4;
}
.play-layout {
  grid-template-columns: minmax(0, 1fr) 255px;
  gap: 24px;
}
.play-layout > .board-column {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.play-layout > .right-column {
  grid-column: 2;
  grid-row: 1;
  display: block;
}
.play-layout > .players-panel {
  grid-column: 2;
  grid-row: 2;
}
.play-layout .players-panel .players {
  margin-top: 10px;
}
.play-layout .players-panel li {
  padding: 8px 0;
}
.play-layout .players-panel {
  box-shadow: none;
  background: #fff7e7;
  padding: 18px;
}
.play-layout .right-column > .help {
  padding: 4px 10px;
  font-size: 10px;
}
body:not([data-screen="landing"]):not([data-screen="lobby"]) .room-heading {
  margin-bottom: 19px;
}
body:not([data-screen="landing"]):not([data-screen="lobby"]) .room-heading h1 {
  font-size: 36px;
}
.phase-ribbon {
  margin-bottom: 16px;
  padding: 0 8px;
}
.phase-ribbon span {
  border-bottom: 0;
  justify-content: center;
  font-size: 10px;
  padding: 7px;
}
.phase-ribbon .active {
  background: #ffe5a3;
  border: 1px solid #9a824e;
  border-radius: 20px;
}
.tabletop {
  border: 3px solid var(--piece-ink);
  border-radius: 38px;
  background: repeating-linear-gradient(
    2deg,
    #d3a06e 0 4px,
    #d9aa78 5px 24px,
    #e1b481 25px 29px
  );
  box-shadow:
    0 9px 0 #997148,
    0 12px 0 #29463f,
    0 23px 32px #53391920;
  padding: 10px 26px 19px;
  position: relative;
}
.table-edge-label {
  text-align: center;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #674b32;
}
.table-seats {
  display: flex;
  justify-content: space-around;
  gap: 12px;
  position: relative;
  padding: 3px 0 7px;
}
.south-seats {
  flex-direction: row-reverse;
  padding: 12px 0 3px;
}
.table-seat {
  background: none !important;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 120px;
  min-width: 0;
  padding: 0 3px;
  color: var(--piece-ink);
  font-weight: 800;
  transition: transform 0.16s;
}
.table-seat:disabled {
  opacity: 1;
  cursor: default;
}
.table-seat:hover:not(:disabled) {
  transform: translateY(-5px);
}
.table-seat:focus-visible {
  outline: 3px solid #173f39;
  outline-offset: 3px;
}
.piece-stage {
  display: block;
  position: relative;
  width: 72px;
  height: 78px;
}
.piece-stage .pawn-art {
  width: 64px;
  height: 74px;
  margin: auto;
  transition: transform 0.2s;
}
.piece-selected .pawn-art {
  transform: translateY(-5px) rotate(-5deg);
  filter: drop-shadow(0 0 4px #fff6b0);
}
.piece-selected .piece-name {
  background: #ffe585;
  border: 1px solid #574824;
}
.piece-check {
  position: absolute;
  bottom: 3px;
  right: 0;
  width: 23px;
  height: 23px;
  border-radius: 50%;
}
.piece-selected .piece-check {
  background: #fff2a1;
  border: 2px solid var(--piece-ink);
  display: grid;
  place-items: center;
}
.piece-check .icon {
  width: 15px;
  height: 15px;
  stroke-width: 3;
}
.leader-pin {
  position: absolute;
  top: -4px;
  right: 0;
  z-index: 1;
  background: #ffdf78;
  border: 2px solid var(--piece-ink);
  border-radius: 8px;
  transform: rotate(12deg);
  width: 27px;
  height: 25px;
  display: grid;
  place-items: center;
  box-shadow: 1px 2px 0 #29463f40;
}
.leader-pin .icon {
  width: 18px;
  height: 18px;
}
.piece-name {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-align: center;
  background: #fff8e8;
  border: 1px solid #a1855d;
  border-radius: 7px;
  padding: 2px 9px;
  line-height: 1.35;
  font-size: 11px;
}
.piece-caption {
  font-size: 7px;
  letter-spacing: 0.8px;
  margin-top: 3px;
  color: #523b27;
  line-height: 1.3;
  min-height: 10px;
}
.piece-offline .pawn-art {
  filter: grayscale(0.7);
  opacity: 0.65;
}
.kingdom-map {
  border: 3px solid #426744;
  background: #d8e4b8;
  border-radius: 24px;
  box-shadow:
    0 4px 0 #85735180,
    inset 0 0 0 4px #eff1ce;
  overflow: hidden;
  position: relative;
}
.map-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 22px 5px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 1.2px;
  color: #305a43;
}
.map-title > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-title .icon {
  width: 19px;
  height: 19px;
}
.map-round {
  font-size: 8px;
  letter-spacing: 1px;
  background: #ffffe060;
  border-radius: 20px;
  padding: 5px 9px;
}
.map-landscape {
  height: 242px;
  position: relative;
  background: url("/kingdom-map.svg") center / 100% 100% no-repeat;
}
.expedition-path {
  position: absolute;
  inset: 0;
}
.trail-stop {
  position: absolute;
  width: 19%;
  max-width: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translate(-50%, -50%);
  color: #314d38;
}
.trail-stop:nth-child(1) {
  left: 10%;
  top: 62%;
}
.trail-stop:nth-child(2) {
  left: 30%;
  top: 37%;
}
.trail-stop:nth-child(3) {
  left: 50%;
  top: 57%;
}
.trail-stop:nth-child(4) {
  left: 70%;
  top: 33%;
}
.trail-stop:nth-child(5) {
  left: 90%;
  top: 53%;
}
.trail-token {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 2px solid #617c4e;
  border-radius: 50%;
  background: #f8edc3;
  box-shadow:
    0 5px 0 #91a271,
    inset 0 0 0 4px #fffbdf;
  margin: 1px 0 10px;
}
.trail-token .icon {
  width: 27px;
  height: 27px;
  stroke-width: 2;
}
.trail-number {
  font-size: 9px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.trail-stop strong {
  font-family: Fraunces, serif;
  font-size: 13px;
  line-height: 1.2;
}
.trail-capacity {
  font-size: 8px;
  line-height: 1.4;
  margin-top: 4px;
  white-space: nowrap;
  background: #f3f1cead;
  border-radius: 8px;
  padding: 2px 5px;
}
.trail-result {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.7px;
  min-height: 13px;
  margin-top: 4px;
}
.trail-current .trail-token {
  background: #ffcf56;
  border-color: #735b28;
  box-shadow:
    0 5px 0 #a88237,
    inset 0 0 0 4px #ffe999,
    0 0 0 6px #fff7cc80;
  transform: rotate(-9deg);
}
.trail-success .trail-token {
  background: #70b194;
  color: #173d33;
  border-color: #295846;
  box-shadow:
    0 5px 0 #47735a,
    inset 0 0 0 4px #b0dac2;
}
.trail-failure .trail-token {
  background: #ed9e85;
  color: #6b3029;
  border-color: #83493a;
  box-shadow:
    0 5px 0 #a3634a,
    inset 0 0 0 4px #fbc7a9;
}
.map-note {
  position: absolute;
  right: 23%;
  bottom: 8px;
  font-family: Fraunces, serif;
  font-size: 11px;
  line-height: 1.3;
  font-style: italic;
  transform: rotate(-6deg);
  color: #4e6c4a;
}
.board-score {
  background: #f7f1cd;
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  padding: 9px 14px;
  border-top: 1px solid #aab98a;
  font-size: 10px;
  flex-wrap: wrap;
}
.board-score > span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.board-score .icon {
  width: 16px;
  height: 16px;
}
.score-conspiracy {
  color: #934733;
}
.score-loyal {
  color: #305e40;
}
.board-score small {
  width: 100%;
  text-align: center;
  font-size: 8px;
  color: #596a48;
  margin-top: -13px;
}
.rejection-rail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 8px auto 0;
  padding: 10px 16px 0;
  border-top: 1px solid #9b74484d;
}
.rejection-rail strong {
  font-size: 8px;
  letter-spacing: 1.2px;
  display: block;
}
.rejection-rail small {
  font-size: 9px;
  display: block;
  margin-top: 2px;
}
.rail-warning {
  font-size: 8px;
  line-height: 1.4;
  color: #634b32;
}
.rejection-pieces {
  display: flex;
  gap: 7px;
}
.rejection-pieces span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ead0a5;
  border: 1px solid #765e40;
  font-size: 11px;
  box-shadow: 0 3px 0 #a37c53;
  color: #705637;
  font-weight: 800;
}
.rejection-pieces .spent {
  background: #ce7158;
  color: #fff7db;
  border-color: #803f32;
  transform: rotate(-10deg);
  box-shadow: 0 3px 0 #974b3a;
  font-size: 19px;
}
.table-panel.action-tray {
  display: flex;
  align-items: center;
  gap: 17px;
  background: #fff9e8;
  border: 2px solid var(--piece-ink);
  color: var(--ink);
  box-shadow: 0 5px 0 #29463f1f;
  border-radius: 20px;
  padding: 20px 23px;
  margin-top: 26px;
  overflow: visible;
}
.action-tray .eyebrow {
  color: #4b6f53;
  font-size: 8px;
}
.action-tray h2 {
  font-size: 25px;
  margin: 5px 0 9px;
  letter-spacing: -0.6px;
}
.action-tray .table-description {
  color: #536456;
  font-size: 11px;
}
.turn-instructions {
  flex: 1;
  min-width: 0;
}
.turn-stamp {
  width: 43px;
  height: 43px;
  background: #f5d880;
  border: 2px solid var(--piece-ink);
  border-radius: 14px;
  display: grid;
  place-items: center;
  transform: rotate(-8deg);
  flex-shrink: 0;
}
.action-tray .table-actions {
  margin: 0;
  max-width: 260px;
  flex-shrink: 0;
}
.action-tray .table-actions p {
  color: #4f6453;
  font-size: 10px;
  max-width: 180px;
}
.action-tray .table-actions button {
  font-size: 11px;
  padding: 10px 14px;
  border: 2px solid var(--piece-ink);
}
.action-tray .table-actions .row {
  flex-wrap: nowrap;
  gap: 9px;
}
.play-layout .history {
  margin: 24px 6px 0;
  background: #fff7e5;
  border: 1px dashed #9b9b74;
  border-radius: 15px;
  padding: 12px 18px;
}
.play-layout .private-card {
  border-radius: 18px 18px 25px 25px;
  border: 2px solid var(--piece-ink);
  background: repeating-linear-gradient(
    45deg,
    #fff7d9 0 10px,
    #f5eccc 11px 12px
  );
  box-shadow: 4px 5px 0 #29463f22;
  transform: rotate(1deg);
  padding: 23px 18px;
}
.play-layout .private-card.side-loyal {
  background: #e2eed1;
}
.play-layout .private-card.side-conspiracy {
  background: #f9d4bf;
}
.play-layout .private-card h3 {
  font-size: 29px;
}
.play-layout .private-card button {
  font-size: 10px;
}
.play-layout .private-card .small-label {
  letter-spacing: 0.8px;
  font-size: 7px;
}
.play-layout .private-card .card-back-art {
  height: 90px;
}
.private-card.concealed .card-back-art > .icon:first-child {
  background: #e5cf82;
  border: 2px solid #29463f;
  border-radius: 50%;
  padding: 9px;
  width: 65px;
  height: 65px;
  transform: rotate(-12deg);
}
#chat {
  border: 2px solid var(--piece-ink);
  box-shadow: 4px 5px 0 #29463f15;
  background: #fff9ec;
}
.finale {
  border: 2px solid var(--piece-ink);
  box-shadow: 5px 6px 0 #29463f20;
}
.role-reveals > div {
  border: 1px solid #708568;
  box-shadow: 0 3px 0 #29463f20;
}
.finale .victory-emblem {
  transform: rotate(-8deg);
}
html[data-motion="on"] .piece-selected .pawn-art {
  animation: piece-place 0.28s ease-out;
}
@keyframes piece-place {
  from {
    transform: translateY(-14px) rotate(-10deg);
  }
  to {
    transform: translateY(-5px) rotate(-5deg);
  }
}
@media (max-width: 1150px) {
  .play-layout {
    grid-template-columns: minmax(0, 1fr) 225px;
    gap: 18px;
  }
  .tabletop {
    padding: 10px 15px 16px;
  }
  .map-landscape {
    height: 220px;
  }
  .trail-token {
    width: 48px;
    height: 48px;
  }
  .trail-stop strong {
    font-size: 11px;
  }
  .trail-capacity {
    font-size: 7px;
  }
  .action-tray .turn-stamp {
    display: none;
  }
  .table-panel.action-tray {
    padding: 18px;
  }
  .action-tray .table-actions {
    max-width: 175px;
  }
  .action-tray .table-actions .row {
    flex-wrap: wrap;
  }
  .rejection-rail {
    gap: 12px;
  }
  .rail-warning {
    display: none;
  }
}
@media (max-width: 950px) {
  .play-layout {
    grid-template-columns: 1fr;
  }
  .play-layout > .board-column {
    grid-column: 1;
    grid-row: 1;
  }
  .play-layout > .right-column {
    grid-column: 1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .play-layout > .players-panel {
    grid-column: 1;
    grid-row: 3;
  }
  .play-layout .players-panel .players {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 20px;
  }
  .action-tray .table-actions {
    max-width: 250px;
  }
  .action-tray .table-actions .row {
    flex-wrap: nowrap;
  }
  .map-landscape {
    height: 230px;
  }
  .map-note {
    bottom: 5px;
  }
}
@media (max-width: 600px) {
  body {
    background-size: auto, auto, auto;
  }
  .masthead {
    padding: 16px;
  }
  main {
    padding: 18px 12px 28px;
  }
  .hero {
    padding: 0 8px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero-eyebrow {
    font-size: 7px;
  }
  .hero-facts {
    gap: 10px;
  }
  .entry {
    padding: 28px 22px;
  }
  .entry h2 {
    font-size: 37px;
  }
  .how-it-plays {
    margin-left: 8px;
    margin-right: 8px;
  }
  .room-heading {
    padding: 0 6px;
  }
  .room-heading h1,
  body:not([data-screen="landing"]):not([data-screen="lobby"])
    .room-heading
    h1 {
    font-size: 32px;
  }
  .phase-ribbon {
    gap: 2px;
    padding: 0;
  }
  .phase-ribbon span {
    padding: 7px 4px;
    align-items: center;
  }
  .phase-ribbon small {
    font-size: 7px;
  }
  .tabletop {
    border-radius: 27px;
    padding: 9px 8px 13px;
    box-shadow:
      0 6px 0 #997148,
      0 9px 0 #29463f,
      0 14px 20px #53391920;
  }
  .table-edge-label {
    font-size: 5px;
    letter-spacing: 1.1px;
  }
  .table-seats {
    gap: 2px;
    padding-top: 7px;
  }
  .table-seat {
    width: 20%;
    padding: 0;
  }
  .piece-stage {
    width: 47px;
    height: 57px;
  }
  .piece-stage .pawn-art {
    width: 46px;
    height: 53px;
  }
  .leader-pin {
    top: -5px;
    right: -2px;
    width: 20px;
    height: 19px;
    border-width: 1.5px;
  }
  .leader-pin .icon {
    width: 14px;
    height: 14px;
  }
  .piece-name {
    font-size: 8px;
    padding: 3px 5px;
    max-width: 65px;
  }
  .piece-caption {
    font-size: 5px;
    letter-spacing: 0.25px;
  }
  .piece-check {
    width: 17px;
    height: 17px;
    bottom: 2px;
    right: -2px;
  }
  .piece-check .icon {
    width: 11px;
    height: 11px;
  }
  .kingdom-map {
    border-radius: 17px;
    border-width: 2px;
  }
  .map-title {
    padding: 10px 10px 2px;
    font-size: 7px;
    letter-spacing: 0.5px;
  }
  .map-title .icon {
    width: 14px;
    height: 14px;
  }
  .map-round {
    font-size: 6px;
    padding: 3px 5px;
    letter-spacing: 0.3px;
  }
  .map-landscape {
    height: 194px;
  }
  .trail-stop {
    width: 20%;
  }
  .trail-token {
    width: 37px;
    height: 37px;
    box-shadow:
      0 4px 0 #91a271,
      inset 0 0 0 3px #fffbdf;
    margin-bottom: 8px;
  }
  .trail-token .icon {
    width: 19px;
    height: 19px;
  }
  .trail-stop strong {
    font-family: Manrope, sans-serif;
    font-size: 7px;
    letter-spacing: -0.2px;
    line-height: 1.3;
  }
  .trail-number {
    font-size: 7px;
    margin-bottom: 4px;
  }
  .trail-capacity {
    font-size: 6px;
    white-space: normal;
    max-width: 63px;
    padding: 2px 3px;
  }
  .trail-result {
    font-size: 5px;
    letter-spacing: 0;
    min-height: 9px;
  }
  .trail-current .trail-token {
    box-shadow:
      0 4px 0 #a88237,
      inset 0 0 0 3px #ffe999,
      0 0 0 4px #fff7cc80;
  }
  .map-note {
    font-size: 8px;
    bottom: 9px;
    right: 27%;
  }
  .board-score {
    padding: 8px 7px;
    gap: 14px;
    font-size: 8px;
  }
  .board-score .icon {
    width: 13px;
    height: 13px;
  }
  .board-score small {
    font-size: 6px;
    margin-top: -10px;
  }
  .south-seats {
    padding-top: 13px;
    padding-bottom: 2px;
  }
  .rejection-rail {
    gap: 10px;
    padding: 10px 3px 0;
    margin-top: 4px;
  }
  .rejection-rail strong {
    font-size: 6px;
    letter-spacing: 0.6px;
  }
  .rejection-rail small {
    font-size: 7px;
  }
  .rejection-pieces {
    gap: 5px;
  }
  .rejection-pieces span {
    width: 21px;
    height: 21px;
    font-size: 9px;
  }
  .rejection-pieces .spent {
    font-size: 17px;
  }
  .table-panel.action-tray {
    margin-top: 22px;
    padding: 17px 15px;
    display: block;
  }
  .action-tray h2 {
    font-size: 26px;
  }
  .action-tray .table-description {
    font-size: 11px;
  }
  .action-tray .table-actions {
    max-width: none;
    margin-top: 16px;
  }
  .action-tray .table-actions p {
    max-width: none;
  }
  .action-tray .table-actions button {
    flex: 1;
  }
  .action-tray .table-actions > .row {
    display: flex;
  }
  .play-layout > .right-column {
    display: block;
    margin: 0 6px;
  }
  .play-layout > .players-panel {
    margin: 0 6px;
  }
  .play-layout .players-panel .players {
    grid-template-columns: 1fr 1fr;
    gap: 0 15px;
  }
  .play-layout .private-card {
    transform: none;
  }
  .play-layout .right-column > .help {
    margin: 15px 0 0;
  }
  .play-layout .history {
    margin: 22px 3px 0;
    padding: 10px 13px;
  }
  .history-item {
    font-size: 10px;
  }
  body[data-screen="role_reveal"] .play-layout > .right-column {
    grid-row: 1;
  }
  body[data-screen="role_reveal"] .play-layout > .board-column {
    grid-row: 2;
  }
  body[data-screen="role_reveal"] .right-column > .help {
    display: none;
  }
  #chat {
    margin: 0 18px 25px;
    padding: 19px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .table-seat,
  .pawn-art {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 600px) {
  .trail-stop strong {
    font-size: 8px;
  }
  .trail-capacity {
    font-size: 8px;
  }
  .trail-result {
    font-size: 6px;
  }
  .map-title {
    font-size: 8px;
  }
  .board-score small {
    font-size: 7px;
  }
  .action-tray .table-description {
    font-size: 12px;
  }
}
