@import url("common.css");

body {
  background-image: url("../assets/index/background.png");
}

.panel {
  background-image: url("../assets/index/panel.png");
  background-size: 100% 100%;
  width: 378px;
  height: 43px;
  margin-top: 65px;
  margin-bottom: 49px;
  align-self: flex-end;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  font-family: IBM Plex Mono;
  color: #FFB8AB;
  text-shadow: 0px 0px 7.29px #FF4013, 0px 0px 14.58px #FF4013, 0px 0px 51.03px #FF4013, 0px 0px 102.06px #FF4013, 0px 0px 174.96px #FF4013, 0px 0px 306.18px #FF4013;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.panel-purple {
  color: #FFF;
  text-shadow: 0px 0px 5.67px #E8006B, 0px 0px 11.34px #E8006B, 0px 0px 39.69px #E8006B, 0px 0px 50px #E8006B, 0px 0px 136.08px #E8006B, 0px 0px 238.14px #E8006B;
}

.games {
  color: #FFF;
  font-family: Roboto;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  gap: 12px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.games>a {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 3px solid transparent;
}

.games>a:active {
  transform: none;
}

.games>a>img {
  width: 171px;
  height: 110px;
  border-radius: 13px;
  border: 3px solid #0000;
  transition: 0.25s;
}

.games>a:active>img {
  border-color: #ADECFF;
  transition: 0.25s;
}

.filler {
  flex: 1;
}

.arrow {
  z-index: 1;
  margin-bottom: -12px;
  height: 33px;
}

.fortune {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wheel {
  width: 232px;
  transition-timing-function: ease-out;
}

.splash {
  margin-top: 28px;
  margin-bottom: 48px;
  color: #F2E127;
  text-shadow: 0px 0px 30.24px #FF6251, 0px 0px 60.48px #FF6251, 0px 0px 211.68px #FF6251, 0px 0px 423.36px #FF6251, 0px 0px 725.76px #FF6251, 0px 0px 1270.08px #FF6251;
  font-family: IBM Plex Mono;
  font-size: 28px;
  font-weight: 600;
  animation: 0.5s infinite alternate splash;
}

@keyframes splash {
  from {
    transform: scale(75%);
  }

  to {
    transform: scale(100%);
  }
}
