html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}
.container {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: url('./assets/bg.jpg') #060211;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 70px 0;
  box-sizing: border-box;
}
.animation {
  width: 238px;
  height: 238px;
}
.content {
  position: relative;
  width: 100%;
  height: 100%;
}
@keyframes headSpin {
  0%,
  15%,
  85%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
}
@keyframes bang1Spin {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-5deg);
  }
}
@keyframes bang2Spin {
  0%,
  100% {
    transform: rotate(0deg);
  }
  45% {
    transform: rotate(-4deg);
  }
}
@keyframes bang3Spin {
  0%,
  100% {
    transform: rotate(0deg);
  }
  55% {
    transform: rotate(-6deg);
  }
}
@keyframes backHairLeftSpin {
  0%,
  100% {
    transform: rotate(0deg);
  }
  43% {
    transform: rotate(-3.5deg);
  }
}
@keyframes backHairMiddleSpin {
  0%,
  100% {
    transform: rotate(0deg);
  }
  48% {
    transform: rotate(-2.5deg);
  }
}
@keyframes backHairRightSpin {
  0%,
  100% {
    transform: rotate(0deg);
  }
  41% {
    transform: rotate(-3deg);
  }
}
@keyframes elbowLeftSpin {
  0%,
  100% {
    transform: rotate(-4deg);
  }
  41% {
    transform: rotate(4deg);
  }
}
@keyframes elbowRightSpin {
  0%,
  100% {
    transform: rotate(-4deg);
  }
  41% {
    transform: rotate(7deg);
  }
}
@keyframes palmLeftSpin {
  0%,
  100% {
    transform: rotate(3deg);
  }
  41% {
    transform: rotate(-10deg);
  }
}
@keyframes palmRightSpin {
  0%,
  100% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(10deg);
  }
}
@keyframes heartMove {
  0%,
  100% {
    transform: rotate(-45deg);
  }
  40% {
    margin-top: 8px;
    margin-left: 2px;
  }
  60% {
    margin-top: 6px;
    margin-left: -2px;
  }
  50% {
    transform: rotate(15deg);
  }
}
@keyframes earingSpin {
  0%,
  100% {
    transform: rotate(-10deg);
  }
  25% {
    transform: rotate(-30deg);
  }
  50% {
    transform: rotate(-20deg);
  }
  75% {
    transform: rotate(-25deg);
  }
}
@keyframes cheeksPulse {
  0%,
  100% {
    opacity: 0.2;
  }
  33%,
  66% {
    opacity: 1;
  }
}
@keyframes thumbSpin {
  0%,
  100% {
    transform: rotate(-5deg);
  }
  25% {
    transform: rotate(-25deg);
  }
  50% {
    transform: rotate(-15deg);
  }
  75% {
    transform: rotate(-20deg);
  }
}
@keyframes leftHandShake {
  0%,
  100% {
    transform: rotate(0deg) translate(2px, -2px);
  }
  33% {
    transform: rotate(-0.1deg) translate(1px, 3px);
  }
  66% {
    transform: rotate(0.1deg) translate(4px, 1px);
  }
}
@keyframes rightHandShake {
  0%,
  100% {
    transform: rotate(0deg) translate(0px, 0px);
  }
  40%,
  60% {
    transform: rotate(7deg) translate(4px, -1px);
  }
}
@keyframes braSpin {
  0%,
  100% {
    transform: rotate(0deg);
  }
  33% {
    transform: rotate(10deg);
  }
  66% {
    transform: rotate(-15deg);
  }
}
@keyframes braStrapSpin {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(25deg);
  }
  75% {
    transform: rotate(-10deg);
  }
}
@keyframes cloudPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
@keyframes shinePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.85);
  }
}
.item {
  position: absolute;
  top: 0;
  left: 0;
  transition-timing-function: ease-in-out;
}
.mask {
  border-radius: 50%;
  overflow: hidden;
  width: 238px;
  height: 238px;
  max-width: 238px;
  max-height: 238px;
  transform: translateZ(0);
}
.mask * {
  margin: -24px -33px 24px 33px;
}
.head {
  top: -50px;
  left: 65px;
  transform-origin: 50px 97px;
  animation: headSpin 3s ease-in-out 0s infinite;
}
.left-hand {
  top: -50px;
  left: 65px;
  transform-origin: 168px 172px;
  animation: leftHandShake 3s ease-in-out 0s infinite reverse;
}
.elbow-left {
  transform-origin: 168px 172px;
  animation: elbowLeftSpin 3s ease-in-out 0s infinite;
}
.palm-left {
  transform-origin: 124px 164px;
  animation: palmLeftSpin 3s ease-in-out 0s infinite reverse;
}
.right-hand {
  top: -50px;
  left: 65px;
  transform-origin: 12px 138px;
  animation: rightHandShake 3s ease-in-out 0s infinite reverse;
}
.bra-bottom {
  transform-origin: -132px 194px;
  animation: braSpin 3s ease-in-out 0s infinite reverse;
}
.elbow-right {
  transform-origin: -26px 238px;
  animation: elbowRightSpin 3s ease-in-out 0s infinite reverse;
}
.palm-right {
  transform-origin: -49px 144px;
  animation: palmRightSpin 3s ease-in-out 0s infinite reverse;
}
.bg {
  background-image: url('./assets/sprite.webp');
}
.bg-face {
  width: 96px;
  height: 115px;
  background-position: -527px -112px;
}
.bg-eyeball {
  top: 58px;
  left: 34px;
  width: 56px;
  height: 22px;
  background-position: -570px -512px;
}
.bg-pupils {
  top: 58px;
  left: 37px;
  width: 48px;
  height: 22px;
  background-position: -252px -212px;
}
.bg-hair-back-left {
  top: 86px;
  left: -7px;
  transform-origin: 8px 8px;
  width: 183px;
  height: 200px;
  background-position: -169px -4px;
  animation: backHairLeftSpin 3s ease-in-out 0s infinite reverse;
}
.bg-hair-back-middle {
  top: 70px;
  left: -90px;
  transform-origin: 40px 12px;
  width: 157px;
  height: 271px;
  background-position: -4px -4px;
  animation: backHairMiddleSpin 3s ease-in-out 0s infinite reverse;
}
.bg-hair-back-right {
  top: 54px;
  left: -144px;
  transform-origin: 100px 12px;
  width: 115px;
  height: 288px;
  background-position: -4px -283px;
  animation: backHairRightSpin 3s ease-in-out 0s infinite reverse;
}
.bg-glasses {
  top: -19px;
  left: 7px;
  width: 97px;
  height: 77px;
  background-position: -360px -366px;
}
.bg-glasses-bg {
  top: -2px;
  left: 31px;
  width: 67px;
  height: 25px;
  background-position: -495px -512px;
}
.bg-classes-sh {
  top: -4px;
  left: 32px;
  width: 39px;
  height: 26px;
  background-position: -243px -283px;
}
.bg-hand-left-1 {
  top: 154px;
  left: 52px;
  width: 75px;
  height: 55px;
  background-position: -588px -366px;
}
.bg-hand-left-2 {
  top: 156px;
  left: 112px;
  transform-origin: 57px 9px;
  width: 70px;
  height: 33px;
  background-position: -417px -512px;
}
.bg-hand-left-3 {
  left: 40px;
  top: 117px;
  width: 115px;
  height: 61px;
  background-position: -465px -366px;
}
.bg-hand-right-2 {
  top: 134px;
  left: -64px;
  width: 49px;
  height: 101px;
  background-position: -360px -451px;
}
.bg-hand-right-3 {
  top: 120px;
  left: -39px;
  width: 75px;
  height: 114px;
  background-position: -488px -236px;
}
.bg-heart {
  top: 13px;
  left: 225px;
  width: 14px;
  height: 12px;
  background-position: -654px -236px;
  animation: heartMove 3s ease-in-out 0s infinite reverse;
}
.bg-little-finger {
  top: 110px;
  left: -108px;
  width: 50px;
  height: 38px;
  background-position: -611px -451px;
}
.bg-palm {
  top: 105px;
  left: -132px;
  width: 86px;
  height: 42px;
  background-position: -517px -451px;
}
.bg-strap-1 {
  top: 134px;
  left: -96px;
  width: 21px;
  height: 52px;
  background-position: -223px -212px;
  transform-origin: 6px 4px;
  animation: braSpin 3s ease-in-out 0s infinite reverse;
}
.bg-strap-2 {
  top: 237px;
  left: -141px;
  transform-origin: 1px 2px;
  width: 56px;
  height: 67px;
  background-position: -179px -283px;
  animation: braStrapSpin 3s ease-in-out 0s infinite reverse;
}
.bg-thumb {
  top: 157px;
  left: 52px;
  transform-origin: 44px 6px;
  width: 48px;
  height: 11px;
  background-position: -360px -560px;
  animation: thumbSpin 3s ease-in-out 0s infinite reverse;
}
.bg-bang-left {
  top: 12px;
  left: 71px;
  transform-origin: 4px 4px;
  width: 75px;
  height: 107px;
  background-position: -571px -236px;
  animation: bang1Spin 3s ease-in-out 0s infinite reverse;
}
.bg-bang-middle {
  top: 12px;
  left: 50px;
  transform-origin: 8px 4px;
  width: 46px;
  height: 63px;
  background-position: -169px -212px;
  animation: bang2Spin 3s ease-in-out 0s infinite reverse;
}
.bg-bang-right {
  top: 14px;
  left: 16px;
  transform-origin: 16px 4px;
  width: 42px;
  height: 99px;
  background-position: -127px -389px;
  animation: bang3Spin 3s ease-in-out 0s infinite reverse;
}
.bg-body {
  top: 147px;
  left: 10px;
  width: 120px;
  height: 122px;
  background-position: -360px -236px;
}
.bg-bra-bottom {
  top: 191px;
  left: -156px;
  width: 44px;
  height: 98px;
  background-position: -127px -283px;
}
.bg-bra-top {
  top: 129px;
  left: -133px;
  width: 36px;
  height: 76px;
  background-position: -631px -112px;
}
.bg-cheeks-ahegao {
  top: 53px;
  left: 12px;
  width: 92px;
  height: 53px;
  background-position: -417px -451px;
  animation: cheeksPulse 3s ease-in-out 0s infinite reverse;
}
.bg-earring-left {
  top: 87px;
  left: 70px;
  transform-origin: 4px 4px;
  width: 11px;
  height: 24px;
  background-position: -657px -196px;
  animation: earingSpin 3s ease-in-out 0s infinite reverse;
}
.bg-earring-right {
  top: 71px;
  left: 4px;
  transform-origin: 13px 4px;
  width: 18px;
  height: 26px;
  background-position: -631px -196px;
  animation: earingSpin 3s ease-in-out 0s infinite reverse;
}
.bg-shine {
  width: 238px;
  height: 238px;
  max-width: 238px;
  max-height: 238px;
  background: #c86edb;
  animation: shinePulse 3s ease-in-out 0s infinite reverse;
  border-radius: 50%;
  box-shadow: 0 0 100px #c86edb;
}
.bg-boobs {
  top: 88px;
  left: 4px;
  width: 159px;
  height: 116px;
  background-position: -360px -112px;
}
.bg-circle {
  width: 238px;
  height: 238px;
  background: linear-gradient(135deg, #ffcbff, #f0a7f7);
  border-radius: 300px;
}
.bg-cloud {
  top: 178px;
  left: -32px;
  width: 308px;
  height: 100px;
  background-position: -360px -4px;
  animation: cloudPulse 3s ease-in-out 0s infinite reverse;
}
.rocket-queen-logo {
  background: url('./assets/rq_logo.png');
  width: 242px;
  height: 123px;
  background-repeat: no-repeat;
  background-position: center;
  max-width: 238px;
  top: -22px;
  position: relative;
  filter: drop-shadow(0px 0px 6px #fff8);
}
.logo {
  margin-bottom: 50px;
  width: 70px;
}
.middle {
  transform: scale(0.85);
}

@media (max-width: 600px) or (max-height: 600px) {
  .middle {
    transform: scale(0.75);
  }
}
@media (max-width: 450px) or (max-height: 450px) {
  .middle {
    transform: scale(0.66);
  }
}
@media (max-height: 570px) {
  .logo {
    display: none;
  }
  .rocket-queen-logo {
    margin-bottom: -50px;
  }
  .container {
    justify-content: center;
    padding: 30px 0;
  }
}
@media (max-height: 475px) {
  .progress {
    display: none;
  }
  .rocket-queen-logo {
    margin-bottom: -100px;
  }
}
.progress {
  width: 280px;
  max-width: calc(100% - 30px);
  height: 9px;
  border-radius: 9px;
  margin: 0px -30px 0;
  position: relative;
}
.progress__value,
.progress__line {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.progress__value {
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #161024;
  height: 7px !important;
  text-align: center;
  color: white;
  font-family: sans-serif;
  font-size: 16px;
  text-indent: 10px;
  line-height: 50px;
}
.progress,
.progress__line {
  background: linear-gradient(90deg, #f5a7fb, #f283fa);
}
.progress__line {
  width: 0%;
  transition: 8s;
}
.progress[progress='0'] .progress__line {
  width: 33%;
  transition: 5s;
}
.progress[progress='1'] .progress__line {
  width: 66%;
  transition: 3s;
}
.progress[progress='2'] .progress__line {
  width: 99%;
  transition: 1s;
}
.progress[progress='3'] .progress__line {
  width: 100%;
  transition: 0.3s;
}
