@font-face {
  font-family: f;
  src: url("/media/games/scream-ball/fonts/JungleAdventurer.ttf");
  font-display: swap;
}
@keyframes panZoom {
  0% {
    transform: translate(0, 0) scale(1);
  }
  12.5% {
    transform: translate(-5%, -2.5%) scale(1.02);
  }
  25% {
    transform: translate(-10%, -5%) scale(1);
  }
  37.5% {
    transform: translate(-15%, -2.5%) scale(1.02);
  }
  50% {
    transform: translate(-20%, 0) scale(1);
  }
  62.5% {
    transform: translate(-15%, 2.5%) scale(1.02);
  }
  75% {
    transform: translate(-10%, 5%) scale(1);
  }
  87.5% {
    transform: translate(-5%, 2.5%) scale(1.02);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes implodeOut {
  to {
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes particleBurst {
  to {
    transform: translate(var(--dx), var(--dy)) scale(0);
    opacity: 0;
  }
}
@keyframes cubeFall {
  0% {
    transform: translateY(-500px) rotateX(-90deg) rotateZ(60deg);
    opacity: 0;
  }
  80% {
    opacity: 1;
    transform: translateY(10px) rotateX(0deg) rotateZ(0deg);
  }
  100% {
    transform: translateY(0) rotateX(0deg) rotateZ(0deg);
  }
}
@keyframes bgAnim {
  0% {
    background: url("/media/games/scream-ball/images/background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  50% {
    background: url("/media/games/scream-ball/images/background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  100% {
    background: url("/media/games/scream-ball/images/background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
}
@keyframes phoneAnim {
  0% {
    transform: translateY(0px) scale(1) rotate(-3deg);
    transform-origin: center center;
  }
  50% {
    transform: translateY(-3px) scale(1) rotate(3deg);
    transform-origin: center left;
  }
  100% {
    transform: translateY(0px) scale(1) rotate(-3deg);
    transform-origin: center center;
  }
}
@keyframes beingBombed {
  0% {
    transform: scale(1) rotate(0);
    opacity: 1;
    filter: grayscale(0);
  }
  50% {
    transform: scale(0.93) rotate(-3deg);
    opacity: 0.5;
    filter: grayscale(1);
  }
  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
    filter: grayscale(0);
  }
}
@keyframes screamAnim {
  0% {
    transform: scale(1) rotate(1deg);
  }
  50% {
    transform: scale(1.03) rotate(-2deg);
  }
  100% {
    transform: scale(1) rotate(1deg);
  }
}
@keyframes playerSelected {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
@keyframes btnAnim {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes logoAnim {
  0% {
    transform: scale(1) rotate(-5deg);
  }
  50% {
    transform: scale(0.96) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(-5deg);
  }
}
@keyframes seqAnim {
  0% {
    transform: scale(1) rotate(-15deg);
    transform-origin: bottom right;
  }
  50% {
    transform: scale(0.96) rotate(-5deg);
    transform-origin: bottom right;
  }
  100% {
    transform: scale(1) rotate(-15deg);
    transform-origin: bottom right;
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes floatStar {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.2);
  }
  50% {
    opacity: 1;
    transform: translate(-10px, -10px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(10px, 10px) scale(0.2);
  }
}
@keyframes bonusFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes explodeEffect {
  0% {
    transform: scale(1);
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    transform: scale(1.4) rotate(20deg);
    opacity: 0.8;
    filter: brightness(1.5);
  }
  100% {
    transform: scale(0.3) rotate(-30deg);
    opacity: 0;
    filter: brightness(0.7);
  }
}
@keyframes tutorialImagePop {
  0% {
    transform: scale(0.94);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(0.94);
  }
}
/*# sourceMappingURL=index.css.map */
/*# sourceMappingURL=style.css.map */
#full-area {
  width: 100%;
  height: 100vh;
  background: #000;
  position: absolute;
  overflow: hidden;
  user-select: none;
  transition: background-color 2s ease;
  font-family: f;
}
#full-area #game-area {
  position: absolute;
  width: 1280px;
  height: 720px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
#full-area #game-area #content {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 20px;
  overflow: hidden;
}
#full-area #game-area #content #home-section {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f27bf6;
  z-index: 999999;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("/media/games/scream-ball/images/Background.png");
  background-repeat: no-repeat;
  background-size: cover;
}
#full-area #game-area #content #home-section #home-right {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#full-area #game-area #content #home-section #logo {
  height: 300px;
  margin: -35px auto 0 -40px;
  display: flex;
  justify-content: center;
  animation: logoAnim 1.3s infinite;
}
#full-area #game-area #content #play-section {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9999;
  left: 0;
  top: 0;
  background-color: #b51616;
  transition: background-color 1s ease;
  perspective: 1000px;
  transform-style: preserve-3d;
}
#full-area #game-area #content #play-section .content {
  position: absolute;
  width: 100%;
  height: 100%;
}
#full-area #game-area #content #play-section .content #animBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: auto;
  transform-origin: center;
  animation: panZoom 40s linear infinite;
}
#full-area #game-area #content #play-section .content #header {
  position: relative;
  z-index: 999999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  color: #fff;
  font-family: f;
  font-size: 40px;
}
#full-area #game-area #content #play-section .content #header #score {
  font-size: 60px;
  padding-left: 40px;
}
#full-area #game-area #content #play-section .content #header #score span {
  font-weight: bold;
}
#full-area #game-area #content #play-section .content #header #timer {
  font-variant-numeric: tabular-nums;
  font-size: 60px;
  letter-spacing: 1px;
  padding-right: 40px;
}
#full-area #game-area #content #play-section .content #header #transcription {
  font-size: 60px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  text-align: center;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
#full-area #game-area #content #play-section .content #header #transcription span {
  display: inline-block;
  font-weight: 900;
  line-height: 1.1;
}
#full-area #game-area #content #play-section .content #loudness-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  z-index: 10;
}
#full-area #game-area #content #play-section .content #loudness-waves .wave-dot {
  width: 45px;
  height: 70px;
  margin-right: 0 !important;
  background: linear-gradient(to top, #0ff, #fff);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
  animation: waveSway 1s ease-in-out infinite;
  transition: height 0.08s linear;
}
#full-area #game-area #content #play-section .content #loudness-waves .wave-dot.explode {
  background: #ff0;
  animation: waveExplode 0.3s ease-out forwards;
}
#full-area #game-area #content #play-section .content .bonus-point {
  position: absolute;
  width: 50px;
  height: 50px;
  pointer-events: none;
  z-index: 5;
  animation: bonusFloat 2s ease-in-out infinite;
}
#full-area #game-area #content #play-section .content .bonus-point .glow-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: hotpink;
  box-shadow: 0 0 15px hotpink, 0 0 50px hotpink;
  position: absolute;
  top: 0;
  left: 0;
}
#full-area #game-area #content #play-section .content .bonus-point .implode-out {
  animation: implodeOut 0.4s ease-out forwards;
  transform-origin: center center;
}
#full-area #game-area #content #play-section .content .bonus-point .stars-container {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 0;
  left: 0;
}
#full-area #game-area #content #play-section .content .bonus-point .stars-container .particle {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  position: absolute;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: particleBurst 0.6s ease-out forwards;
}
#full-area #game-area #content #play-section .content .bonus-point .star {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: hotpink;
  box-shadow: 0 0 8px currentColor;
  opacity: 0;
  animation: floatStar 1.5s infinite ease-in-out;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
#full-area #game-area #content #play-section .content .bonus-point .particles-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
#full-area #game-area #content #play-section .content .bonus-point .particles-container .particle {
  width: 6px;
  height: 6px;
  background: #ff9ae2;
  border-radius: 50%;
  position: absolute;
  animation: particleBurst 0.5s ease-out forwards;
}
#full-area #game-area #content #play-section .content .bonus-point.explode {
  animation: explodeEffect 0.6s ease forwards;
}
#full-area #game-area #content #play-section .content #scene {
  width: 100%;
  height: 88%;
  perspective: 800px;
  position: absolute;
  top: 0;
  z-index: 999;
}
#full-area #game-area #content #play-section .content #scene #ball {
  position: absolute;
  width: 120px !important;
  height: 120px !important;
  max-width: none !important;
  max-height: none !important;
  pointer-events: auto;
  user-select: none;
  will-change: transform;
  border-radius: 50% !important;
}
#full-area #game-area #content #end-section {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999999999;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url("/media/games/scream-ball/images/Background.png");
  background-repeat: no-repeat;
  background-size: cover;
}
#full-area #game-area #content #end-section .content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
  transform: scale(0);
  background: url("/media/games/scream-ball/images/game-over-popup3.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-size: 50%;
}
#full-area #game-area #content #end-section .content #score-header {
  position: relative;
  top: 50px;
  left: 0;
  right: 0;
  gap: 80px;
  display: flex;
  justify-content: space-between;
  padding: 0 100px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}
#full-area #game-area #content #end-section .content #score-header .score-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
#full-area #game-area #content #end-section .content #score-header .score-item span {
  font-size: 54px;
}
#full-area #game-area #content #end-section .content #analysis-container {
  margin-top: 50px;
  color: #ffffff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  max-width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
#full-area #game-area #content #end-section .content #analysis-container #analysis-text {
  font-size: 24px;
  max-width: 70%;
  line-height: 1.5;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
}
#full-area #game-area #content #end-section .content #end-btns {
  gap: 30px;
  top: 0%;
  margin-top: 5px;
  position: relative;
  padding-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#full-area #game-area #content #end-section .content #end-btns img {
  width: 250px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#full-area #game-area #content #end-section .content #end-btns img:hover {
  transform: scale(1.1);
}

#skip-intro-btn {
  position: absolute;
  top: calc(50% - 360px + 24px);
  left: calc(50% + 640px - 24px);
  transform: translateX(-100%);
  z-index: 1000000002;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
  padding: 10px 24px;
  font-size: 16px;
  font-family: f;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
#skip-intro-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-100%, 0);
}
#skip-intro-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}
#skip-intro-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

#tutorial-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 999999999;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
#tutorial-overlay img {
  height: 40%;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  top: 3%;
  left: 1%;
  position: absolute;
  transition: transform 0.32s ease-out, opacity 0.32s ease-out;
}
#tutorial-overlay.is-visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
#tutorial-overlay.is-visible img {
  transform: scale(1);
  opacity: 1;
  animation: tutorialImagePop 2.1s ease-in-out infinite;
  animation-delay: 0.35s;
}

.analysis-btn {
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.65);
  color: #ffffff;
  padding: 8px 22px;
  font-size: 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.analysis-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.analysis-btn:not(:disabled):hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.end {
  animation: end 1s ease-out;
  animation-fill-mode: forwards;
}

#play-section {
  transition: background-color 2s ease, color 2s ease, box-shadow 2s ease;
}

#header {
  transition: background-color 2s ease, color 2s ease, box-shadow 2s ease;
}

#score {
  transition: background-color 2s ease, color 2s ease, box-shadow 2s ease;
}

#timer {
  transition: background-color 2s ease, color 2s ease, box-shadow 2s ease;
}

.wave-dot {
  transition: background-color 2s ease, color 2s ease, box-shadow 2s ease;
}

#cube .face {
  transition: background-color 2s ease, color 2s ease, box-shadow 2s ease;
}

.bonus-point .glow-circle {
  transition: background-color 2s ease, color 2s ease, box-shadow 2s ease;
}

#ball {
  width: 120px !important;
  height: 120px !important;
  max-width: none !important;
  max-height: none !important;
  display: block;
  border-radius: 50% !important;
  position: absolute;
  opacity: 0;
}

@media (max-width: 600px) {
  #cube {
    top: calc(0% - 50px);
  }

  #scene {
    width: 100%;
    height: 93% !important;
    perspective: 800px;
    position: absolute;
    top: 0;
    z-index: 999;
  }

  #end-section .content {
    background: url("/media/games/scream-ball/images/game-over-popup3.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-size: 80% !important;
  }

  #score-header {
    top: 70px;
    padding: 0 30px !important;
    gap: 12px;
    font-size: 28px !important;
    align-items: center;
  }
  #score-header .score-item span {
    font-size: 40px !important;
  }

  #analysis-container {
    max-width: 80% !important;
  }
  #analysis-container #analysis-text {
    font-size: 20px !important;
  }

  .analysis-btn {
    font-size: 16px;
    padding: 10px 24px;
  }

  #skip-intro-btn {
    top: 40px !important;
    left: 40px !important;
    right: auto !important;
    transform: none !important;
    font-size: 45px;
    padding: 8px 18px;
  }
  #skip-intro-btn.is-visible {
    transform: none !important;
  }

  #tutorial-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 999999999;
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  #tutorial-overlay img {
    height: 80%;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    top: 6%;
    position: absolute;
    transition: transform 0.32s ease-out, opacity 0.32s ease-out;
  }
  #tutorial-overlay.is-visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }
  #tutorial-overlay.is-visible img {
    transform: scale(1);
    opacity: 1;
    animation: tutorialImagePop 2.1s ease-in-out infinite;
    animation-delay: 0.35s;
  }

  #tutorial-overlay img {
    margin-top: 280px;
    margin-left: 60px;
    width: 660px;
    height: auto;
  }
}

/*# sourceMappingURL=style.css.map */
