button {
  background-color: #f1efee;
  background-image: linear-gradient(#f5f4f3, #edebe9);
  box-shadow: inset 0px 1px white;
  border-radius: 4px;
  border-width: 1px;
  border-style: solid;
  border-color: #cdc7c2;
  border-bottom-color: #bfb8b1;
  color: #2e3436;
  min-height: 30px;
  min-width: 80px;
  box-sizing: border-box;
  padding: 3px;
}

button:disabled {
  background-image: none;
  background-color: #faf9f8;
  color: #959a9e;
  border-bottom-color: #cdc7c2;
}

button:not(:disabled):hover {
  background-color: #f8f8f7;
  background-image: linear-gradient(#f8f8f7, #f7f6f5);
}

#modal-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(64, 64, 64, 0.6);
  cursor: default;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: modal-bg-in 0.42s;
  z-index: 42;
  backdrop-filter: blur(2px);
  overflow: hidden;
  overscroll-behavior: none;
}
@keyframes modal-bg-in {
  0% {
    background-color: transparent;
    backdrop-filter: blur(0px);
  }
  100% {
    background-color: rgba(64, 64, 64, 0.6);
    backdrop-filter: blur(2px);
  }
}
#modal-background #modal-box {
  background-color: white;
  box-shadow: 0px 0px 25px rgba(32, 32, 32, 0.125);
  min-height: 320px;
  max-height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  animation: modal-box-in 0.5s;
}
@media (max-height: 350px) {
  #modal-background #modal-box {
    min-height: 90vh;
  }
  #modal-background #modal-box #modal-title {
    margin-top: 0;
  }
}
@keyframes modal-box-in {
  0% {
    opacity: 0;
    transform: scale(1, 0.75);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
#modal-background #modal-box #modal-container {
  box-sizing: border-box;
  min-width: 450px;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  padding: 10px;
}
@media (max-width: 450px) {
  #modal-background #modal-box #modal-container {
    min-width: 100vw;
  }
}
#modal-background #modal-box #modal-container #modal-content {
  flex-grow: 1;
  flex-shrink: 1;
  margin-bottom: 10px;
  overflow: auto;
}
#modal-background #modal-box #modal-container #modal-buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  flex-shrink: 0;
}
#modal-background #modal-box #modal-container #modal-buttons button:not(:first-child) {
  margin-left: 10px;
}

table {
  border-collapse: collapse;
  overflow: hidden;
}
table caption {
  margin-bottom: 10px;
}
table td {
  padding-top: 2px;
  padding-bottom: 2px;
}
table th:first-child, table td:first-child {
  padding-left: 8px;
}
table th:last-child, table td:last-child {
  padding-right: 8px;
}
table tbody tr:nth-child(odd) {
  background-color: rgba(64, 64, 64, 0.1);
}
table tr {
  animation: table-row-in 0.42s;
  animation-fill-mode: backwards;
  animation-timing-function: ease-out;
  animation-delay: 0.75s;
}
table tr:nth-child(1) {
  animation-delay: 0s;
}
table tr:nth-child(2) {
  animation-delay: 0.15s;
}
table tr:nth-child(3) {
  animation-delay: 0.3s;
}
table tr:nth-child(4) {
  animation-delay: 0.45s;
}
table tr:nth-child(5) {
  animation-delay: 0.6s;
}
@keyframes table-row-in {
  0% {
    opacity: 0;
    transform: scale(0.9, 0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}

table:not(:last-child) {
  margin-bottom: 20px;
}

#modal-content table {
  min-width: 100%;
  max-width: calc(100vw - 20px);
}

:root {
  --tile-size: 42px;
  --tile-default-color: rgb(220,220,220);
  --ruin-color: rgba(255,255,255,0.8);
  --tick-size: 14px;
  --tile-coin-size: 20px;
}

.tile {
  position: relative;
  width: var(--tile-size);
  height: var(--tile-size);
  background-color: var(--tile-default-color);
  background-image: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 2px;
  box-sizing: border-box;
  user-select: none;
  overflow: hidden;
}
.tile[data-type=forest] {
  background-color: green;
}
.tile[data-type=village] {
  background-color: #b92800;
}
.tile[data-type=water] {
  background-color: #1450ff;
}
.tile[data-type=mountain] {
  background-color: #5a5050;
}
.tile[data-type=monster] {
  background-color: #6d003c;
}
.tile[data-type=farmland] {
  background-color: #fcba03;
  --ruin-color: rgba(32,32,32,0.75);
}
.tile[data-type=barren] {
  background-color: #323232;
}
.tile.danger[data-type=empty] {
  box-shadow: inset 0px 0px 8px rgba(109, 0, 60, 0.5);
}

.tile:not(.custom-image)[data-type=forest] {
  background-image: url("images/tiles/forest.svg");
}
.tile:not(.custom-image)[data-type=village] {
  background-image: url("images/tiles/village.svg");
}
.tile:not(.custom-image)[data-type=water] {
  background-image: url("images/tiles/water.svg");
}
.tile:not(.custom-image)[data-type=mountain] {
  background-image: url("images/tiles/mountain.svg");
}
.tile:not(.custom-image)[data-type=monster] {
  background-image: url("images/tiles/monster.svg");
}
.tile:not(.custom-image)[data-type=farmland] {
  background-image: url("images/tiles/farm.svg");
}
.tile:not(.custom-image)[data-type=barren] {
  box-shadow: inset 0px 0px 4px rgba(255, 255, 255, 0.9);
}

.tile.ruin {
  border: 2px dotted var(--ruin-color);
}
.tile.ruin[data-type=empty] {
  background-image: url("images/tiles/ruins.svg");
  --ruin-color: rgba(32,32,32,0.75);
}
.tile.ruin:before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  height: var(--tick-size);
  width: var(--tile-size);
  font-size: 0;
  background-color: #202020;
  transform-origin: bottom right;
  transform: rotate(45deg);
  border-bottom: 1px solid white;
  opacity: 0.75;
}

.tile.has-coin {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 4px;
}
.tile.has-coin .coin {
  width: var(--tile-coin-size);
  height: var(--tile-coin-size);
  background-image: url("images/coin.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border-radius: 50%;
  box-shadow: 0px 0px 3px rgba(9, 8, 7, 0.42);
  transform: rotateY(360deg);
  transition: transform 1s;
}
.tile.has-coin:hover .coin {
  transform: rotateY(0deg);
  transition: transform 1.25s;
}

@media (max-height: 685px), (max-width: 900px) {
  :root {
    --tile-size: 36px;
    --tick-size: 12px;
  }
}
@media (min-height: 1024px) {
  :root {
    --tile-size: 54px;
  }

  .tile.has-coin {
    padding: 5px;
  }
}
#menu {
  background-color: rgba(64, 64, 64, 0.85);
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  animation: main-menu-in 0.42s;
  backdrop-filter: blur(2px);
}
#menu button {
  width: 250px;
  max-width: calc(100vw - 50px);
  min-width: 140px;
  height: 50px;
  font-size: 1rem;
  font-weight: bold;
  background-color: #f0f0f0;
  background-image: none;
  border-radius: 5px;
  border: 1px solid white;
  transition: 0.25s;
}
#menu button:disabled {
  opacity: 0.8;
}
#menu button:not(:disabled):hover {
  background-color: white;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.42);
}

@keyframes main-menu-in {
  0% {
    opacity: 0;
    transform: scale(1.2, 1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
#app-version {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 0.75rem;
  color: #646464;
}

@media (max-height: 485px) and (orientation: landscape) {
  #menu {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px;
    margin: 10px;
    margin-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }
  #menu button {
    min-width: 180px;
    height: 42px;
    margin-bottom: 10px;
    margin-right: 10px;
    flex-grow: 1;
    max-width: none;
  }
}
#help-sections {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 20px;
}

#help-sections > div {
  background-color: white;
  box-shadow: 0px 0px 20px rgba(16, 16, 16, 0.1);
  border-radius: 6px;
}
#help-sections > div div.section-title {
  font-size: 1.2em;
  padding: 10px;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: rgba(16, 16, 16, 0.2);
  user-select: none;
}

#tile-help {
  display: flex;
  flex-direction: column;
  min-width: 300px;
  max-width: 100vw;
  overflow: hidden;
  overflow-y: auto;
  --tile-size: 42px;
}
#tile-help .tile-info {
  display: flex;
  align-items: center;
  padding: 10px 20px;
}
#tile-help .tile-info .tile {
  border-radius: 4px;
}
#tile-help .tile-info .tile[data-type=empty] {
  background-color: whitesmoke;
}
#tile-help .tile-info .description {
  flex-grow: 1;
  padding: 0px 10px;
  text-align: center;
}
#tile-help .tile-info:nth-child(even) {
  background-color: rgba(32, 32, 32, 0.1);
}

@media (max-height: 750px) {
  #tile-help {
    box-shadow: 0px 0px 20px rgba(16, 16, 16, 0.1), inset 0px -2px 3px rgba(16, 16, 16, 0.05);
  }
  #tile-help .tile-info {
    padding: 5px 10px;
  }
  #tile-help .tile-info .tile {
    --tile-size: 35px;
  }
}
#goal-card-viewer {
  display: flex;
  flex-direction: column;
  max-width: 240px;
}
#goal-card-viewer #card-selection {
  padding: 5px 10px;
  display: flex;
  flex-wrap: wrap;
  align-content: stretch;
  gap: 10px;
}
#goal-card-viewer #card-selection select {
  flex-grow: 1;
}
#goal-card-viewer #card-selection button {
  flex-grow: 1;
  margin-bottom: 0px;
  max-width: calc(50% - 5px);
}
#goal-card-viewer #card-container {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
}
#goal-card-viewer #card-container .goal-card-container {
  --goal-card-peek: 0px;
  top: 0;
  height: var(--goal-card-height);
  overflow: visible;
  box-shadow: none;
  margin: 0;
}
#goal-card-viewer #card-container .goal-card-container .card {
  cursor: default;
  animation: none;
}
#goal-card-viewer #card-container .goal-card-container .card .index {
  display: none;
}

#lobby-screen {
  justify-content: flex-start;
}
#lobby-screen #lobby-info {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
  gap: 20px;
  align-items: center;
}
#lobby-screen #lobby-info #lobby-code {
  padding: 7px 12px;
  background-color: #c8c8c8;
  border-radius: 4px;
  user-select: none;
}
#lobby-screen #lobby-info #lobby-code span {
  font-weight: bold;
  font-size: 1.2em;
  user-select: text;
}
#lobby-screen #lobby-player-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background-color: white;
  border: 2px solid rgba(64, 64, 64, 0.38);
  min-width: 33vw;
  border-radius: 4px;
  margin-bottom: 20px;
}
#lobby-screen #lobby-player-list .player {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  padding: 10px;
  box-sizing: border-box;
}
#lobby-screen #lobby-player-list .player .leader {
  font-size: 0.8em;
  color: #525252;
  margin-left: 10px;
  user-select: none;
}
#lobby-screen #lobby-player-list .player:nth-child(even) {
  background-color: rgba(64, 64, 64, 0.1);
}
#lobby-screen #lobby-player-list .player.ready {
  border-left: 8px solid #00bd00;
}
#lobby-screen #lobby-player-list .player:not(.ready) {
  border-left: 8px solid #ff4800;
}
#lobby-screen #lobby-buttons {
  display: flex;
  flex-direction: column;
}

#invite-section {
  display: flex;
  flex-direction: column;
}
#invite-section label {
  opacity: 0.75;
  margin-bottom: 5px;
}
#invite-section input {
  margin-bottom: 10px;
}

.info-text {
  font-size: 0.875em;
  color: #646464;
  background-color: white;
  padding: 3px 5px;
  border: 1px solid #b6b6b6;
  border-radius: 2px;
}

.lobby-section {
  background-color: white;
  border: 1px solid rgba(128, 128, 128, 0.5);
  border-radius: 4px;
  margin-bottom: 10px;
  padding: 10px;
  box-sizing: border-box;
}
.lobby-section .title {
  position: relative;
  text-align: center;
  margin-top: -2px;
  margin-bottom: 15px;
  font-size: 0.9em;
  color: #404040;
  user-select: none;
}
.lobby-section .title:after {
  content: " ";
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  height: 2px;
  background-color: rgba(128, 128, 128, 0.5);
  bottom: -7px;
  border-radius: 2px;
}
.lobby-section button[type=submit] {
  width: 100%;
}

#public-lobby-list .lobby {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  padding: 4px 6px;
  font-size: 16px;
}
#public-lobby-list .lobby:nth-child(odd) {
  background-color: rgba(128, 128, 128, 0.15);
}
#public-lobby-list .lobby .leader {
  flex-grow: 1;
}
#public-lobby-list .lobby .players {
  font-weight: bold;
  user-select: none;
  color: #404040;
}
#public-lobby-list .lobby .players::after {
  content: " ";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("images/user.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  top: 2px;
  margin-left: 2px;
}

:root {
  --width: 11;
  --height: 11;
  --tile-gap: 3px;
}

.board {
  position: relative;
  --tile-offset: calc(var(--tile-size) + var(--tile-gap));
  width: calc(var(--width) * var(--tile-offset) - var(--tile-gap));
  height: calc(var(--height) * var(--tile-offset) - var(--tile-gap));
  background-color: white;
  box-shadow: 0px 0px 0px var(--tile-gap) white;
  border-radius: 2px;
  overflow: hidden;
}

#interactive-board {
  position: relative;
  width: calc(var(--width) * var(--tile-offset) - var(--tile-gap));
  height: calc(var(--height) * var(--tile-offset) - var(--tile-gap));
  --tile-offset: calc(var(--tile-size) + var(--tile-gap));
}
#interactive-board .board {
  position: absolute;
  top: 0px;
  left: 0px;
}

.board.small {
  --tile-size: 10px;
  --tile-gap: 1px;
  border-radius: 2px;
}
@media (max-height: 666px) {
  .board.small {
    --tile-size: 8px;
  }
}

.board > .tile {
  position: absolute;
  --x: 0;
  --y: 0;
  left: calc(var(--x) * var(--tile-offset));
  top: calc(var(--y) * var(--tile-offset));
  --tile-default-color: rgb(220,220,220);
  overflow: hidden;
}

.board.small .tile {
  border-radius: 0;
  background-image: none !important;
  --tick-size: 7px;
}
@media (max-height: 666px) {
  .board.small .tile {
    --tick-size: 5px;
  }
}
.board.small .tile.ruin {
  border: none;
}
.board.small .tile.has-coin .coin {
  display: none;
}
.board.small .tile[data-type=empty] {
  pointer-events: none;
}
.board.small .tile[data-type=barren] {
  box-shadow: none;
}

.board.overlay {
  background-color: transparent;
  overflow: visible;
  box-shadow: none;
  animation: overlay-fade-in 0.42s;
}
.board.overlay .tile:not([data-type=empty]) {
  box-shadow: 0px 0px 0px var(--tile-gap) limegreen;
  border-radius: 0;
  cursor: grab;
  transition: opacity 0.25s;
}
.board.overlay:not(:hover) .tile:not([data-type=empty]) {
  animation: tile-overlay-pulse 1.75s;
  animation-iteration-count: infinite;
}
@keyframes tile-overlay-pulse {
  0% {
    opacity: 0.75;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.75;
  }
}
.board.overlay .tile[data-type=empty] {
  background-color: rgba(220, 220, 220, 0.5);
}
.board.overlay .tile.ruin[data-type=empty] {
  background-image: none;
  border: none;
}
.board.overlay .tile.ruin[data-type=empty]:before {
  display: none;
}

.board.overlay.drag .tile:not([data-type=empty]) {
  cursor: move;
}

#interactive-board.invalid .board.overlay .tile:not([data-type=empty]) {
  box-shadow: 0px 0px 0px var(--tile-gap) red;
}

@keyframes overlay-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
:root {
  --goal-card-height: 284px;
  --goal-card-peek: 50px;
  --goal-card-active-color: rgb(220,220,220);
}

.goal-card-container {
  position: relative;
  top: 0px;
  height: var(--goal-card-peek);
  transition: 0.42s;
  overflow: hidden;
  margin: 0px 5px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  flex-shrink: 0;
}

.goal-card-container:not(.expanded):hover {
  top: -7px;
  height: calc(var(--goal-card-peek) + 7px);
  transition: 0.25s;
}

.goal-card-container.expanded {
  top: calc(var(--goal-card-peek) - var(--goal-card-height));
  height: var(--goal-card-height);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  transition: 0.2s;
}

.goal-card-container .card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  padding-top: 8px;
  width: 205px;
  height: var(--goal-card-height);
  background-color: #383736;
  border: 1px solid #2e2d2c;
  border-radius: 8px;
  transition: 0.42s;
  overflow: hidden;
  cursor: pointer;
  animation: goal-card-in 1s;
}
@keyframes goal-card-in {
  0% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
.goal-card-container .card .title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-size: 16px;
  font-weight: bold;
  user-select: none;
  padding-left: 27px;
  padding-right: 27px;
  min-height: 38px;
}
.goal-card-container .card .index {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: gray;
  color: #1a1918;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  user-select: none;
}
.goal-card-container .card .separator {
  margin: 8px;
  width: 105px;
  height: 2px;
  background-color: rgba(255, 250, 230, 0.42);
  flex-shrink: 0;
}
.goal-card-container .card .description {
  font-size: 14px;
  color: #bfbebd;
  flex-shrink: 1;
  flex-grow: 1;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  overscroll-behavior: contain;
}
.goal-card-container .card .description.multipart {
  line-height: 1;
}
.goal-card-container .card .description .part:not(:last-child) {
  margin-bottom: 15px;
}
.goal-card-container .card .description .part .tiles {
  margin-bottom: 7px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  --tile-size: 26px;
  --tile-default-color: rgb(145,145,145);
  gap: 3px;
}
.goal-card-container .card .description .part .tiles .tile {
  box-shadow: inset 0px 0px 0px 1px rgba(255, 255, 255, 0.125);
}
.goal-card-container .card .description .part .tiles .tile[data-type=empty]:not(.ruin) {
  box-shadow: inset 0px 0px 0px 2px rgba(255, 255, 255, 0.3);
  background-color: transparent;
}
.goal-card-container .card .description .part .tiles .tile[data-type=any] {
  box-shadow: inset 0px 0px 0px 1px rgba(255, 255, 255, 0.2);
}
.goal-card-container .card .description .part .tiles .tile.negative::after {
  position: absolute;
  bottom: 0;
  content: " ";
  font-size: 0;
  background-color: #f20505;
  width: calc(1.415 * var(--tile-size));
  height: 4px;
  transform-origin: top left;
  transform: translate(-1px, 2px) rotate(-45deg);
  box-shadow: 0px 0px 0px 1px rgba(16, 16, 16, 0.42);
}
.goal-card-container .card .description .part .forest {
  color: #01b501;
}
.goal-card-container .card .description .part .village {
  color: #e63200;
}
.goal-card-container .card .description .part .farmland {
  color: #ffbc03;
}
.goal-card-container .card .description .part .water {
  color: #0573ff;
}
.goal-card-container .card .description .part .mountain {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: rgba(191, 190, 189, 0.64);
}
.goal-card-container .card.active {
  border: 3px solid var(--goal-card-active-color);
  padding: 7px;
}
.goal-card-container .card.active .separator, .goal-card-container .card.active .index {
  background-color: var(--goal-card-active-color);
}

.goal-card-container.expanded:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

@media (max-height: 720px), (max-width: 900px) {
  :root {
    --goal-card-height: 252px;
    --goal-card-peek: 42px;
  }

  .goal-card-container {
    margin: 0px 4px;
  }
  .goal-card-container .card {
    width: 182px;
    padding: 7px;
  }
  .goal-card-container .card .title {
    font-size: 14px;
    padding-left: 25px;
    padding-right: 25px;
    min-height: 34px;
  }
  .goal-card-container .card .index {
    font-size: 14px;
    width: 18px;
    height: 18px;
  }
  .goal-card-container .card .separator {
    margin-top: 5px;
  }
  .goal-card-container .card .description {
    font-size: 13px;
  }
  .goal-card-container .card .description .tiles.long {
    --tile-size: 25px;
    gap: 2px;
  }
  .goal-card-container .card.active {
    padding: 6px;
  }

  .goal-card-container:not(.expanded):hover {
    top: -5px;
    height: calc(var(--goal-card-peek) + 5px);
  }
}
@media (min-height: 1200px) {
  .goal-card-container .card {
    cursor: default;
  }
}
#player-coins {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  background-color: #c8c8c8;
  margin-top: 20px;
  padding: 5px;
  border-radius: 2px;
  box-shadow: inset 0px 0px 0px 1px rgba(16, 16, 16, 0.1);
  overflow: hidden;
}
#player-coins .coin-slot {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #bebebe;
  box-shadow: inset 0px 0px 2px rgba(16, 16, 16, 0.25);
  text-align: center;
  line-height: 14px;
  font-size: 14px;
  transition: 0.5s;
}
@media (min-height: 1200px) {
  #player-coins .coin-slot {
    width: 26px;
    height: 26px;
  }
}
#player-coins .coin-slot.active {
  background-color: #b6b6b6;
  box-shadow: 0px 1px 1px rgba(16, 16, 16, 0.1);
}
#player-coins .coin-slot.active:after {
  content: " ";
  display: block;
  width: inherit;
  height: inherit;
  background-image: url("images/coin.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  animation: coin-slot-becomes-active 1.5s;
}
#player-coins .coin-slot.active.expected:after {
  opacity: 0.6;
  animation: none;
}
@keyframes coin-slot-becomes-active {
  0% {
    opacity: 0;
    transform: scale(0.8, 0.8) perspective(250px) rotateY(-90deg);
  }
  10% {
    opacity: 1;
  }
  80% {
    transform: scale(1.25, 1.25) perspective(250px) rotateY(10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1) perspective(250px) rotateY(0deg);
  }
}

@keyframes coin-spin {
  0% {
    transform: perspective(250px) rotateY(0deg);
  }
  100% {
    transform: perspective(250px) rotateY(-360deg);
  }
}
#placement-buttons {
  position: absolute;
  right: -70px;
  top: 10px;
  display: flex;
  flex-direction: column;
  animation: placement-buttons-in 0.5s;
}
#placement-buttons button {
  min-width: auto;
  min-height: auto;
  width: 50px;
  height: 50px;
  overflow: hidden;
  background-color: #e6e6e6;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  margin-bottom: 10px;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0px 0px 0px transparent;
  transition: box-shadow 0.15s;
}
#placement-buttons button:hover {
  box-shadow: 0px 0px 7px rgba(16, 16, 16, 0.25);
}
#placement-buttons button:active {
  box-shadow: inset 0px 0px 5px rgba(16, 16, 16, 0.25);
}
#placement-buttons button.translation {
  background-image: url("images/buttons/translation.svg");
}
#placement-buttons button.rotation {
  background-image: url("images/buttons/rotation.svg");
}
#placement-buttons button.mirror {
  background-image: url("images/buttons/mirror.svg");
}
#placement-buttons button.up {
  transform: rotate(-90deg);
}
#placement-buttons button.down {
  transform: rotate(90deg);
}
#placement-buttons button.left {
  transform: rotate(180deg);
}
#placement-buttons button.clockwise {
  transform: scale(-1, 1);
}
#placement-buttons button.vertical {
  transform: rotate(90deg);
}

@keyframes placement-buttons-in {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@media (max-height: 685px) {
  #placement-buttons {
    top: 1px;
  }
  #placement-buttons button {
    width: 46px;
    height: 46px;
    margin-bottom: 8px;
  }
}
#piece-selector {
  position: absolute;
  left: -280px;
  top: 0px;
  bottom: 0px;
  background-color: #585858;
  border-radius: 6px;
  width: 230px;
  user-select: none;
  --separator-color: rgba(255,255,255,0.42);
  --inner-border-radius: 4px;
  animation: piece-selector-in 0.5s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 10px;
  padding-top: 0px;
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.2), 0px 0px 0px 2px rgba(255, 255, 255, 0.5);
}
#piece-selector #name {
  position: relative;
  height: 42px;
  line-height: 42px;
  color: white;
  font-weight: bold;
  text-align: center;
  user-select: none;
}
#piece-selector #name.long {
  text-align: left;
}
#piece-selector #weeks {
  position: absolute;
  top: 8px;
  right: 9px;
  color: white;
  border: 2px solid var(--separator-color);
  background-color: inherit;
  border-radius: 50%;
  font-size: 14px;
  line-height: 21px;
  width: 20px;
  height: 20px;
  text-align: center;
}
#piece-selector #ruin-info {
  min-height: 30px;
  line-height: 30px;
  text-align: center;
  color: #202020;
  background-color: var(--separator-color);
  border-radius: var(--inner-border-radius);
  margin-bottom: 10px;
  animation: ruin-alert 2.5s;
}
@keyframes ruin-alert {
  0% {
    background-color: var(--separator-color);
    box-shadow: inset 0px 0px 10px transparent;
  }
  20% {
    background-color: #ff1400;
    box-shadow: inset 0px 0px 10px red;
    text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.5);
  }
  40% {
    background-color: var(--separator-color);
    box-shadow: inset 0px 0px 10px rgba(255, 0, 0, 0.5);
  }
  60% {
    background-color: #ff1400;
    box-shadow: inset 0px 0px 10px transparent;
  }
  64% {
    background-color: #ff1400;
    box-shadow: inset 0px 0px 10px red;
    text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.5);
  }
  80% {
    box-shadow: inset 0px 0px 10px rgba(255, 0, 0, 0.64);
  }
  100% {
    background-color: var(--separator-color);
    box-shadow: inset 0px 0px 10px transparent;
    text-shadow: 0px 0px 2px transparent;
  }
}
#piece-selector #pieces {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  margin-bottom: 10px;
}
#piece-selector #pieces .piece {
  position: relative;
  display: flex;
  flex-direction: rows;
  justify-content: center;
  border-bottom: 2px solid var(--separator-color);
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.2s;
}
#piece-selector #pieces .piece .board {
  position: relative;
  background-color: transparent;
  box-shadow: 0px 0px 0px 2px var(--separator-color);
  --tile-size: 26px;
  --tile-gap: 2px;
}
#piece-selector #pieces .piece .board .tile {
  box-shadow: 0px 0px 0px 1px var(--separator-color);
  border-radius: 0;
  --tile-default-color: transparent;
}
#piece-selector #pieces .piece:first-child {
  border-top-left-radius: var(--inner-border-radius);
  border-top-right-radius: var(--inner-border-radius);
}
#piece-selector #pieces .piece:last-child {
  border-bottom-left-radius: var(--inner-border-radius);
  border-bottom-right-radius: var(--inner-border-radius);
}
#piece-selector #pieces .piece:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
}
#piece-selector #pieces .piece:hover, #piece-selector #pieces .piece.selected {
  background-color: rgba(255, 255, 255, 0.2);
}
#piece-selector #pieces .piece:active {
  background-color: rgba(255, 255, 255, 0.3);
}
#piece-selector #pieces .coin {
  position: absolute;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-image: url("images/coin.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border-radius: 50%;
  opacity: 0.75;
  transition: 0.25s;
  transform: rotateY(0);
}
#piece-selector #pieces .piece:hover .coin, #piece-selector #pieces .piece.selected .coin {
  opacity: 1;
  box-shadow: 0px 1px 1px rgba(16, 16, 16, 0.1);
}
#piece-selector #pieces .piece:hover .coin {
  animation: coin-spin 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
#piece-selector button {
  width: 100%;
  height: 30px;
  min-height: 25px;
  margin-bottom: 10px;
  border-radius: var(--inner-border-radius);
  background-image: none;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: bold;
  color: white;
  text-shadow: 0px 0px 2px rgba(16, 16, 16, 0.4);
  cursor: pointer;
  transition: box-shadow 0.25s;
}
@media (max-height: 1023px) {
  #piece-selector button {
    height: 25px;
  }
}
#piece-selector button:last-child {
  margin-bottom: 0;
}
#piece-selector button:disabled {
  background-color: lightgrey !important;
  cursor: not-allowed;
}
#piece-selector button:not(:disabled):hover {
  box-shadow: 0 0 6px rgba(16, 16, 16, 0.25);
  text-shadow: 0px 0px 2px rgba(16, 16, 16, 0.5);
}
#piece-selector #submit {
  background-color: #27c627;
}
#piece-selector #draw-monster-button {
  background-color: #6d003c;
}

#piece-selector:not(.ruin) #ruin-info {
  display: none;
}
#piece-selector:not(.ruin) #pieces .piece:first-child {
  border-top: 2px solid var(--separator-color);
  border-radius: 0;
}

@keyframes piece-selector-in {
  0% {
    opacity: 0;
    transform: scale(0.92, 0.92) translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@media (max-width: 1100px) {
  #piece-selector {
    left: -265px;
    width: 215px;
  }
  #piece-selector #name {
    text-align: left;
  }
  #piece-selector #weeks {
    font-size: 12px;
    line-height: 18px;
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 1000px) {
  #piece-selector {
    left: -250px;
    width: 200px;
  }
}
@media (min-height: 1200px) {
  #piece-selector #pieces .piece .board {
    --tile-size: 38px;
    --tile-gap: 2px;
  }
}
@media (min-height: 1200px) and (min-width: 1500px) {
  #piece-selector {
    width: 270px;
    left: -320px;
  }
  #piece-selector button {
    height: 32px;
  }
}
#season-info {
  position: relative;
  margin-right: 5px;
  display: flex;
  flex-direction: row;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0px 0px 5px 4px rgba(255, 255, 255, 0.75);
  border-radius: 4px;
  --progress-bar-height: 3px;
  --progress: 0 // total progress this season so far (not including current card);
  --current: 0 // progress of current card;
  z-index: 1;
  animation: season-info-in 0.75s;
}
@keyframes season-info-in {
  0% {
    opacity: 0;
    transform: translateX(10px);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
#season-info #season-name {
  margin-right: 8px;
  user-select: none;
}
#season-info #season-progress {
  flex-grow: 1;
  text-align: right;
  user-select: none;
}
#season-info #season-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--progress-bar-height);
  background-color: #8c8c8c;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0px 1px 0px rgba(32, 32, 32, 0.42);
}
#season-info #season-progress-bar:before {
  content: " ";
  font-size: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: calc(var(--progress) + var(--current));
  max-width: calc(100% - 1px);
  background-color: transparent;
  transition: width 0.5s, background-color 1s;
}
#season-info #season-progress-bar:after {
  content: " ";
  font-size: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--progress);
  width: var(--current);
  min-width: 1px;
  background-color: rgba(255, 255, 255, 0.75);
  transition: width 0.5s, left 0.5s;
  animation: current-progress-pulse 1.5s;
  animation-iteration-count: infinite;
}
@keyframes current-progress-pulse {
  0% {
    background-color: rgba(255, 255, 255, 0.32);
  }
  50% {
    background-color: rgba(255, 255, 255, 0.75);
  }
  100% {
    background-color: rgba(255, 255, 255, 0.32);
  }
}
#season-info.spring #season-progress-bar:before {
  background-color: #00c71b;
}
#season-info.summer #season-progress-bar:before {
  background-color: #da262c;
}
#season-info.autumn #season-progress-bar:before {
  background-color: #f18a15;
}
#season-info.winter #season-progress-bar:before {
  background-color: #1cbaf3;
}

#player-list-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#player-list-container #player-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  box-sizing: border-box;
  padding: 0px 5px;
  padding-bottom: 5px;
  max-width: 100vw;
  z-index: 2;
  background-color: #585858;
  color: white;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-top: none;
  box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5);
  overflow-y: hidden;
  overflow-x: auto;
  animation: player-list-expand 1s;
}
@keyframes player-list-expand {
  0% {
    transform: translateY(-75px) perspective(250px) rotateX(90deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(0px) perspective(500px) rotateX(0deg);
  }
}
#player-list-container #player-list-hide {
  z-index: 2;
  background-color: #6e6e6e;
  background-image: url("images/buttons/collapse.svg");
  background-repeat: no-repeat;
  background-position: top center;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 64px;
  height: 25px;
  min-height: 25px;
  min-width: 64px;
  position: absolute;
  bottom: 1px;
  left: 50%;
  margin-left: -32px;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.25s;
  animation: fade-in 0.5s;
  animation-delay: 0.6s;
  animation-fill-mode: backwards;
  animation-timing-function: ease-in;
}
#player-list-container #player-list-hide:hover {
  background-color: #858585;
}
@media (min-height: 801px) {
  #player-list-container #player-list-hide {
    display: none;
  }
}
@media (max-height: 800px) {
  #player-list-container #player-list {
    padding-bottom: 30px;
    box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.15), 0px 0px 15px 1px rgba(16, 16, 16, 0.5);
    transition: box-shadow 0.25s;
  }
}

@media (max-height: 800px) {
  #player-list-container.collapsed #player-list {
    display: none;
  }
}
#player-list-container.collapsed {
  top: 10px;
}

.player-overview {
  padding: 10px;
  padding-bottom: 5px;
  cursor: pointer;
  border-radius: 3px;
  transition: box-shadow 0.25s;
  order: 1;
}
.player-overview .player-info {
  --bg-color: rgb(88,88,88);
}
.player-overview .board {
  border-radius: 1px;
  box-shadow: 0px 0px 0px 1px white, 0px 0px 3px 1px rgba(0, 0, 0, 0.5);
  background-color: #fcfcfc;
}
.player-overview.disconnected .board, .player-overview.disconnected .player-info {
  opacity: 0.75;
}
.player-overview:not(.disconnected):hover {
  background-color: #646464;
}
.player-overview:not(.disconnected):hover .player-info {
  --bg-color: rgb(100,100,100);
}
.player-overview.me {
  order: 0;
}
.player-overview.me .player-info .name {
  font-weight: bold;
}
.player-overview.waiting-for .player-info .name:before {
  content: " ";
  font-size: 0;
  display: inline-block;
  box-sizing: border-box;
  width: 8px;
  height: 8px;
  border-radius: 5px;
  background-color: #ffa000;
  margin-right: 3px;
}

#season-score-table, #results-score-table, #goal-info-table, #more-info-table {
  min-width: 100%;
  max-width: calc(100vw - 20px);
}
@media (min-width: 700px) {
  #season-score-table, #results-score-table, #goal-info-table, #more-info-table {
    min-width: 500px;
  }
}
#season-score-table th, #season-score-table td, #results-score-table th, #results-score-table td, #goal-info-table th, #goal-info-table td, #more-info-table th, #more-info-table td {
  text-align: right;
}
#season-score-table th:first-child, #season-score-table td:first-child, #results-score-table th:first-child, #results-score-table td:first-child, #goal-info-table th:first-child, #goal-info-table td:first-child, #more-info-table th:first-child, #more-info-table td:first-child {
  text-align: left;
}

#goal-info-table th:nth-child(4) {
  min-width: 2.5em;
}

#season-score-table tr.total td:last-child {
  font-weight: bold;
}
#season-score-table tr.total td:not(:first-child):not(:last-child) {
  color: #a4a4a4;
}

#results-score-table th:nth-child(2), #results-score-table td:nth-child(2), #goal-info-table th:nth-child(2), #goal-info-table td:nth-child(2), #more-info-table th:nth-child(2), #more-info-table td:nth-child(2) {
  text-align: center;
  width: 100%;
}
#results-score-table th:last-child, #results-score-table td:last-child, #goal-info-table th:last-child, #goal-info-table td:last-child, #more-info-table th:last-child, #more-info-table td:last-child {
  text-align: right;
}

#ingame-ui {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding-top: 140px;
  padding-bottom: var(--goal-card-peek);
}
@media (max-height: 850px) {
  #ingame-ui {
    padding-top: 150px;
  }
}
@media (max-height: 805px) {
  #ingame-ui {
    padding-top: 50px;
  }
}
@media (min-height: 1200px) {
  #ingame-ui {
    padding-top: 160px;
    padding-bottom: var(--goal-card-height);
  }
}

.player-info {
  position: relative;
  width: 100%;
  height: 20px;
  box-sizing: border-box;
  margin-top: 5px;
  --bg-color: white;
  background-color: var(--bg-color);
  overflow: hidden;
  border-radius: 2px;
  font-size: 16px;
  user-select: none;
}
.player-info .name, .player-info .score {
  position: absolute;
  top: 0;
  line-height: 20px;
  background-color: var(--bg-color);
}
.player-info .name {
  left: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.player-info.disconnected .name {
  text-decoration: line-through;
}
.player-info .score {
  right: 0;
  box-shadow: -1px 0px 12px 12px var(--bg-color);
}
.player-info .score.clickable {
  cursor: pointer;
}

#detailed-view {
  margin: 0;
  transition: margin 0.64s 0.25s;
}
@media (max-width: 1279px) {
  #detailed-view.can-place {
    margin-left: 270px;
    margin-right: 70px;
  }
}
#detailed-view .player-info {
  font-size: 1.2rem;
  margin-bottom: 10px;
  margin-top: 0px;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 0px 5px 5px rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  --bg-color: transparent;
  overflow: visible;
}
@media (max-height: 666px) {
  #detailed-view .player-info {
    font-size: 1rem;
    margin-bottom: 5px;
    height: 18px;
  }
}
#detailed-view .player-info .score {
  box-shadow: none;
  border-radius: 2px;
  transition: 0.2s;
}
#detailed-view .player-info .score.clickable:hover {
  background-color: rgba(32, 32, 32, 0.15);
  box-shadow: 0px 0px 5px 2px rgba(32, 32, 32, 0.15);
  text-shadow: 1px 0px white;
  font-weight: bold;
}
@media (max-height: 980px) {
  #detailed-view {
    margin-top: 50px;
  }
}
@media (max-height: 940px) {
  #detailed-view {
    margin-top: 0px;
  }
}
@media (max-height: 700px) {
  #detailed-view {
    margin-top: -20px;
  }
}

#goal-cards {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--goal-card-peek);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}
#goal-cards.spring .card {
  --goal-card-active-color: rgb(46, 216, 69);
}
#goal-cards.summer .card {
  --goal-card-active-color: rgb(253, 63, 70);
}
#goal-cards.autumn .card {
  --goal-card-active-color: rgb(255, 145, 20);
}
#goal-cards.winter .card {
  --goal-card-active-color: rgb(79, 208, 255);
}

.top-panel {
  position: absolute;
  top: 5px;
  z-index: 1;
}

#top-left-panel {
  left: 5px;
}

#top-right-panel {
  right: 5px;
}

#falling-tiles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  user-select: none;
  overflow: hidden;
}
#falling-tiles .tile {
  position: absolute;
  border: none;
  border-radius: 3px;
  top: -50px;
  backface-visibility: hidden;
}

#tile-sketcher {
  display: flex;
  flex-direction: row;
  padding-bottom: 10px;
  gap: 10px;
}
#tile-sketcher .controls {
  flex-grow: 1;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
}
#tile-sketcher .controls button {
  max-width: 125px;
  margin-bottom: 10px;
}
#tile-sketcher .controls .size-selector {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 5px;
}
#tile-sketcher .controls .size-selector button {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid #a0a0a0;
  border-radius: 5px;
  background-color: #f6f5f4;
  box-sizing: border-box;
  cursor: pointer;
}
#tile-sketcher .controls .size-selector button.selected {
  box-shadow: inset 0px 0px 2px 1px rgba(16, 16, 16, 0.25);
}
#tile-sketcher .controls .size-selector button svg {
  width: 100%;
  height: 100%;
}
#tile-sketcher .drawing-area {
  flex-shrink: 0;
  position: relative;
  padding: 0;
}
#tile-sketcher .drawing-area div {
  width: inherit;
  height: inherit;
}
#tile-sketcher .drawing-area .event-catcher {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

:root {
  font-family: sans-serif;
}

html, body, #root {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  overscroll-behavior: none;
}

body {
  background-image: url("images/background-paper.png");
  background-repeat: repeat;
  background-size: 580px;
  background-attachment: fixed;
}

.app-screen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
}
.app-screen h1 {
  margin-bottom: 42px;
}
.app-screen button {
  box-shadow: inset 0px 1px rgba(255, 255, 255, 0.33);
  padding: 0;
}
.app-screen button:not(:last-of-type) {
  margin-bottom: 10px;
}
.app-screen button:not(:disabled) {
  cursor: pointer;
}
.app-screen form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.app-screen form input:not([type=checkbox]), .app-screen form button, .app-screen form label {
  height: 42px;
  line-height: 42px;
  box-sizing: border-box;
}
.app-screen form input[type=text] {
  border-radius: 4px;
  background-color: white;
  border: 1px solid #b6b6b6;
  font-size: 1em;
  color: #202020;
  padding: 0px 10px;
  min-width: 150px;
  max-width: 220px;
}
.app-screen form input[type=checkbox] {
  width: 20px;
  height: 20px;
}
.app-screen form button {
  border: 1px solid #a4a4a4;
  background-color: #cecaca;
  color: #404040;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
}
.app-screen form button:hover {
  color: #2a2a2a;
  background-color: #d4d4d4;
}
.app-screen form button[type=submit] {
  color: #2a2a2a;
}
.app-screen form button[type=submit]:hover {
  color: #202020;
}
.app-screen form .inputs {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
}
.app-screen form .inputs input[type=text] {
  text-align: center;
}
.app-screen form .inputs input[type=checkbox] {
  justify-self: center;
}
.app-screen div.sections {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
.app-screen div.sections div.section:not(:last-child) {
  margin-right: 20px;
}
.app-screen .flex-hfill {
  flex-grow: 1;
  flex-shrink: 1;
}

@media (max-height: 720px) {
  .app-screen h1 {
    margin-bottom: 20px;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*# sourceMappingURL=game.css.map */
