body {
  padding: 0;
  margin: 0;
}

#full-area {
  width: 100%;
  height: 100vh;
  background: #0d0d12;
  position: absolute;
  overflow: hidden;
  user-select: none;
}
#full-area #game-area {
  position: absolute;
  width: 1280px;
  height: 720px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1) !important;
}
#full-area #game-area #gameContainer {
  position: absolute;
  width: 1280px;
  height: 720px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  background: #000;
}
#full-area #game-area #gameContainer #fr-ui-under,
#full-area #game-area #gameContainer #fr-ui-over,
#full-area #game-area #gameContainer #fr-canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 1280px;
  height: 720px;
}
#full-area #game-area #gameContainer #fr-ui-under {
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
#full-area #game-area #gameContainer #fr-canvas {
  z-index: 2;
  display: block;
  outline: none;
  touch-action: none;
  pointer-events: none;
}
#full-area #game-area #gameContainer #fr-ui-over {
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
#full-area #game-area #gameContainer .fru-canvas {
  position: absolute;
  pointer-events: none;
}
#full-area #game-area #gameContainer .fru-el {
  position: absolute;
  box-sizing: border-box;
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
}
#full-area #game-area #gameContainer .fru-gfx {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}
#full-area #game-area #gameContainer .fru-video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}
#full-area #game-area #gameContainer .fru-canvas > .fru-gfx > .fru-video {
  transform-origin: 50% 50%;
  transform: translateY(-60px) scale(1.112);
}
#full-area #game-area #gameContainer .fru-textbox {
  position: absolute;
  display: flex;
  pointer-events: none;
}
#full-area #game-area #gameContainer .fru-text {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-kerning: none;
  -webkit-font-smoothing: antialiased;
}
#full-area #game-area #gameContainer [data-name=howToSkip] .fru-textbox {
  overflow: visible;
}
#full-area #game-area #gameContainer [data-name=howToSkip] .fru-text {
  width: auto;
  white-space: nowrap;
  padding: 13px 40px 9px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  background: linear-gradient(180deg, rgba(38, 30, 22, 0.86) 0%, rgba(17, 13, 10, 0.92) 100%);
  border: 4px solid rgba(255, 210, 63, 0.9);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.45), 0 0 26px rgba(255, 180, 40, 0.35), inset 0 0 22px rgba(255, 190, 60, 0.16);
  -webkit-text-stroke: 0.055em #35230a;
  paint-order: stroke fill;
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.5);
}
#full-area #game-area #gameContainer .fru-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  text-align: center;
  font-family: "FRSoupOfJustice", sans-serif;
  color: #000;
  outline: none;
  pointer-events: auto;
}
#full-area #game-area #gameContainer #fr-warning {
  display: none;
  position: absolute;
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  z-index: 60;
  width: 70%;
  text-align: center;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-family: "Fredoka One", "Arial Black", sans-serif;
  background: #ff5a52;
  color: #fff;
}
