main #game > article#searchArea, main #gameInfo > article#searchArea {
  position: sticky;
  top: 70px;
  z-index: 10000;
}
main #game > article#searchArea > form > section, main #gameInfo > article#searchArea > form > section {
  position: relative;
}
main #game > article#searchArea > form > section > input, main #gameInfo > article#searchArea > form > section > input {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-800);
  background: var(--gray-100);
  padding: var(--padding-search);
  line-height: var(--font-line-height);
}
main #game > article#searchArea > form > section > input::placeholder, main #gameInfo > article#searchArea > form > section > input::placeholder {
  color: var(--gray-500);
}
main #game > article#searchArea > form > section > button, main #gameInfo > article#searchArea > form > section > button {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translate(0px, -50%);
}
main #game > article#gamelist > .item, main #gameInfo > article#gamelist > .item {
  text-decoration: none;
}
main #game > article#gamelist > .item figure, main #gameInfo > article#gamelist > .item figure {
  display: flex;
  align-items: center;
}
main #game > article#gamelist > .item figure img, main #gameInfo > article#gamelist > .item figure img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-right: 8px;
}
main #game > article#gamelist > .item figure.title, main #gameInfo > article#gamelist > .item figure.title {
  display: inline-block;
  color: var(--gray-800);
  font-size: 0.875rem;
  font-weight: 500;
  width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
main #game > article#gamelist > .item figure.status, main #gameInfo > article#gamelist > .item figure.status {
  width: 52px;
  height: 52px;
  line-height: 3.8;
  text-align: center;
}
main #game > article#gamelist > .item figure.status figcaption, main #gameInfo > article#gamelist > .item figure.status figcaption {
  border-radius: 0.75rem;
  padding: 0 7px;
}
main #game > article#gamelist > .item figure.status .paused, main #gameInfo > article#gamelist > .item figure.status .paused {
  background: var(--gray-100);
  color: var(--gray-500);
}
main #game > article#gamelist > .item figure.status .proceed, main #gameInfo > article#gamelist > .item figure.status .proceed {
  background: var(--green-100);
  color: var(--green-500);
}
main #game > article#gamelist > .item figure:first-child, main #gameInfo > article#gamelist > .item figure:first-child {
  flex: 1;
}
main #game > article#gamelist > .item:last-child, main #gameInfo > article#gamelist > .item:last-child {
  margin-bottom: 0px !important;
}
main #game > article#gamelist > .empty-result, main #gameInfo > article#gamelist > .empty-result {
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main #game > article#gamelist > .empty-result > p, main #gameInfo > article#gamelist > .empty-result > p {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ccd1de;
}
main #game > article#gameView, main #gameInfo > article#gameView {
  padding-bottom: 2rem;
}
main #game > article#gameView > section, main #gameInfo > article#gameView > section {
  position: relative;
  margin-bottom: var(--section-space);
}
main #game > article#gameView > section:nth-child(1), main #gameInfo > article#gameView > section:nth-child(1) {
  border-radius: var(--radius-outset);
  overflow: hidden;
}
main #game > article#gameView > section:nth-child(1) > img, main #gameInfo > article#gameView > section:nth-child(1) > img {
  width: 100%;
}
main #game > article#gameView > section:nth-child(1) figure, main #gameInfo > article#gameView > section:nth-child(1) figure {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: linear-gradient(0deg, black, transparent);
}
main #game > article#gameView > section:nth-child(1) figure h5, main #game > article#gameView > section:nth-child(1) figure figcaption, main #gameInfo > article#gameView > section:nth-child(1) figure h5, main #gameInfo > article#gameView > section:nth-child(1) figure figcaption {
  color: white;
}
main #game > article#gameView > section:nth-child(1) figure > h5, main #gameInfo > article#gameView > section:nth-child(1) figure > h5 {
  font-size: 1.125rem;
  font-weight: 700;
}
main #game > article#gameView > section:nth-child(1) figure > figcaption, main #gameInfo > article#gameView > section:nth-child(1) figure > figcaption {
  opacity: 0.5;
  font-weight: 500;
}
main #game > article#gameView > section:nth-child(2) figure h5, main #gameInfo > article#gameView > section:nth-child(2) figure h5 {
  color: var(--gray-800);
  font-size: 1.125rem;
  font-weight: 700;
}
main #game > article#gameView > section:nth-child(2) figure figcaption, main #gameInfo > article#gameView > section:nth-child(2) figure figcaption {
  background: var(--gray-100);
  border-radius: var(--radius-outset);
  color: var(--gray-500);
  line-height: var(--letter-line-height);
}
main #game > article#state, main #gameInfo > article#state {
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0px);
  width: 100%;
  height: calc(var(--footer-height) + 2.2rem);
  padding-top: 0.5rem;
  border-radius: 20px 20px 0px 0px;
  backdrop-filter: blur(20px);
  text-align: center;
  max-width: 768px;
}
main #game > article#state.paused, main #gameInfo > article#state.paused {
  background: var(--gray-800);
}
main #game > article#state.proceed, main #gameInfo > article#state.proceed {
  background: var(--green-500);
}
main #game > article#state > p, main #gameInfo > article#state > p {
  font-weight: 500;
  font-size: 0.875rem;
  color: #FFFFFF;
}