#setup {
  --s: 12px; /* control the size*/
  --c1: #9d2100;
  --c2: #333;
  --g: conic-gradient(at 90% 40%, #0000 75%, var(--c1) 0);
  background: var(--g), var(--g) var(--s) var(--s) var(--c2);
  background-size: calc(2 * var(--s)) calc(2 * var(--s));
  box-shadow: -0.25rem 0 0.25rem #000;
  color: #fff;
  display: flex;
  flex: 0 0 10rem;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
  padding: 0 2rem;
  transition: all var(--moveTime) ease-in-out;
  z-index: 1;

  &.hidden {
    flex: 0 0 0;
    overflow: hidden;
    padding: 0;
  }

  h2 {
    font-size: 2rem;
    font-weight: normal;
  }

  label {
    align-items: center;
    display: flex;
    text-align: center;
  }

  .player-list {
    background-color: #333;
    border: solid 2px #ccc;
    border-radius: 0.25rem;
    box-sizing: border-box;
    color: #ccc;
    field-sizing: content;
    font-family: monospace;
    font-size: 0.833333333333333rem;
    inline-size: 100%;
    margin-block-start: 0.5rem;
    min-block-size: 4rem;
    overflow: hidden;
    padding: 0.5rem;
    resize: none;

    div {
      transition: all 0.5s ease-in;
      &.strike {
        color: #c00;
        text-decoration: line-through;
      }
    }
  }

  button {
    background-color: #209cee;
    border: none;
    border-radius: 1rem;
    color: #fff;
    filter: drop-shadow(0 0.25rem 0.25rem #000);
    font-size: 1.5rem;
    inline-size: 100%;
    padding: 0.25rem 0.5rem;
    position: relative;
    transition: all 0.2s ease-in-out;

    &:active {
      inset-block-start: 2px;
    }

    &:hover {
      background-color: #fff;
      color: #209cee;
    }
  }

  .cookies {
    text-align: center;
    button {
      background-color: transparent;
      border: solid 1px #fff;
      border-radius: 1rem;
      color: #fff;
      font-size: 0.75rem;
      inline-size: auto;
      padding: 0.25rem 0.5rem;
    }
  }

  .credit {
    font-size: 0.75rem;
    text-align: center;
    a {
      color: #70ecff;
      text-decoration: none;
      &:hover {
        text-decoration: underline;
      }
    }
  }
}
