body {
  background-color: #111111;
}

.root {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  min-height: 100%;
  overflow-y: scroll;

  background-color: #111111;

  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 12px;
  font-weight: 100;

  color: #eeeeee;

  user-select: none;
  -webkit-user-select: none;

  cursor: default;
}

/* Content */

.content {
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
}

.title {
  position: relative;
  color: #000000;
  margin: 4px 0;
}

.title-background {
  position: absolute;
  top: -4px;
  left: -8px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  background: #ffffff;
  border-radius: 1px 1px 1px 0;
  z-index: -1;
}

.games-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
}

.games-list::after {
  position: absolute;
  top: -2px;
  left: -8px;
  width: 2px;
  height: calc(100% + 4px);
  min-height: 400px;
  background: #ffffff;
  content: '';
}

.game {
  position: relative;
  padding: 8px;
  min-height: 128px;
  background: #000000aa;
}

.game .game-background {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 100px;
  height: 56px;
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  z-index: 1;
}

.game .game-title {
  display: inline-block;
  background: linear-gradient(90deg, #eeeeee 0%, #888888 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  overflow: hidden;
}

.game .game-links {
  display: flex;
  flex-direction: row;
  gap: 4px;
  padding: 4px 0;
  margin-top: 8px;
  margin-bottom: 16px;
}

.game .game-link {
  display: inline-block;
  appearance: none;
  color: #ffffff;
  font-style: normal;
  text-decoration: none;
  background: #ffffff33;
  padding: 4px;
  border: solid 1px #ffffff66;
  border-radius: 1px;
  cursor: default;
}

.game .game-link:hover {
  background: #660066;
  border-color: #ff00ff;
  color: #ffffff;
}

.game .game-description p:nth-child(even) {
  color: #888888;
}

.game .game-description p:nth-child(odd) {
  color: #ffffff;
}

.game .game-privacy {
  background: #11aaee44;
  border: solid 1px #11aaee88;
  padding: 10px;
}

.game .game-privacy-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.copy {
  display: block;
  text-align: center;
  padding: 24px;
}

/* Backdrop */

.backdrop-container {
  position: absolute;
  top: 0;
  left: calc(50% - 500px);
  width: 1px;
  height: 1px;
}

.backdrop-1 {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: #ff00ff44;
  filter: blur(64px);
}

.backdrop-2 {
  position: absolute;
  top: 0;
  left: 32px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: #00ffff44;
  filter: blur(92px);
}

.backdrop-3 {
  position: absolute;
  top: 0;
  left: 128px;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #ffff0044;
  filter: blur(64px);
}

/* Support */

.support {
  position: fixed;
  top: 12px;
  right: 12px;
  display: inline-block;

  text-align: right;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 12px;
  font-weight: 100;

  color: #aaaaaa;

  user-select: none;
  -webkit-user-select: none;

  cursor: default;
}

.support-title {
  color: #ffffff;
}
