@charset "UTF-8";
@font-face {
  font-family: "Minecraft";
  src: url("../font/minecraft-seven_v2.otf") format("truetype");
}
@font-face {
  font-family: "Minecraft Ten";
  src: url("../font/minecraft-ten.ttf") format("truetype");
}
*::before,
*::after {
  box-sizing: border-box;
}

* {
  box-sizing: inherit;
  font-family: inherit;
  margin: 0;
  padding: 0;
  transition: all ease 0.3s;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
}

html, body {
  touch-action: manipulation;
}

body {
  box-sizing: border-box;
  display: flex;
  height: 100vh;
  line-height: 1.2;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-font-smoothing: antialiased;
}
@media only screen and (max-width: 639px) {
  body {
    font-size: 90%;
  }
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; /* Evita la selección */
  -webkit-user-drag: none; /* Evita el arrastre en Safari */
  -webkit-tap-highlight-color: transparent; /* Elimina el resaltado en iOS */
  touch-action: manipulation;
}

img:focus {
  outline: none;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

h1, h2, h3, h4, h5, h6, p, b, strong, i, em, mark, small, del, ins, sub, sup, code, pre, a, li, div {
  font-family: "Minecraft", sans-serif;
  letter-spacing: 0.04rem;
}

b, strong {
  font-weight: 600;
}

i, em {
  font-style: italic;
}

ul, ol {
  list-style-type: none;
}

/* LAYOUT ---------------------------------------------------- */
.game_container {
  align-items: center;
  display: flex;
  justify-content: center;
  background-color: #808080;
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  background-image: url(../assets/game_background_layer.png), url(../assets/game_background_desk.png);
  background-size: auto 90%, contain;
  background-position: center;
  background-repeat: no-repeat, repeat;
  gap: 1.5rem;
  max-height: 550px;
  height: 100%;
  width: 100%;
  overflow: hidden;
  padding: 0.6rem;
  position: relative;
}
@media only screen and (min-width: 640px) and (max-width: 992px) {
  .game_container {
    flex-direction: column;
  }
}
@media only screen and (max-width: 639px) {
  .game_container {
    background-image: url(../assets/game_background_layer.png), url(../assets/game_background_mobile.png);
    background-size: 90% auto, cover;
    flex-direction: column;
    padding-top: 2rem;
  }
}
.game_container .game_clicker {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 300px;
  position: relative;
}
.game_container .game_clicker--start {
  animation: startGame 1s 1 ease;
  animation-fill-mode: none;
  position: absolute;
  left: 0;
  right: 0;
  font-size: 2rem;
  letter-spacing: -0.01em;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  -webkit-text-stroke: 0.1rem #131e29;
  font-family: "Minecraft Ten", sans-serif;
  text-align: center;
  z-index: 4;
}
@keyframes startGame {
  0%, 100% {
    transform: translateX(0%);
    transform-origin: 50% 50%;
  }
  15% {
    transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    transform: translateX(15px) rotate(6deg);
  }
  45% {
    transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    transform: translateX(-6px) rotate(-1.2deg);
  }
}
.game_container .game_clicker--scoreboard {
  background-color: #808080;
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: row;
  background-color: transparent;
  background-image: url(../assets/game_scoreboard.png);
  background-size: 100% 100%;
  font-size: 1rem;
  padding: 0.2rem 0.3rem 0.25rem;
  min-width: 150px;
  max-width: 200px;
  height: 36px;
  width: auto;
  text-align: center;
  z-index: 3;
}
.game_container .game_clicker--scoreboard-text {
  color: #090909;
  margin-right: 0.5rem;
}
.game_container .game_clicker--scoreboard-counter {
  color: #090909;
}
.game_container .game_clicker--treasure {
  cursor: url("../assets/game_pickaxe.png") 20 20, auto;
  transition: all linear 0.03s;
  z-index: 3;
  max-width: 200px;
}
@media only screen and (max-width: 639px) {
  .game_container .game_clicker--treasure {
    max-width: 180px;
  }
}
.game_container .game_clicker--treasure:hover {
  filter: brightness(110%);
  -webkit-filter: brightness(110%);
  -moz-filter: brightness(110%);
}
.game_container .game_clicker--treasure:active {
  transform: scale(1.05);
  filter: brightness(130%);
  -webkit-filter: brightness(130%);
  -moz-filter: brightness(130%);
}
.game_container .game_clicker--treasure-clicker {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  filter: drop-shadow(0.3rem 0.3rem 0.6rem rgba(9, 9, 9, 0.9333333333));
  transform: translate(3rem, 3rem);
  height: auto;
  width: 66px;
  z-index: 4;
}
.game_container .game_clicker--progress {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: 1rem;
  gap: 0.6rem;
  width: 200px;
  z-index: 3;
}
.game_container .game_clicker--progress-bar {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  background-color: rgba(9, 9, 9, 0.9333333333);
  border-radius: 16px;
  border: 2px solid #ff7dff;
  padding: 2px;
  position: relative;
  height: 12px;
  width: 100%;
  max-width: 100%;
}
.game_container .game_clicker--progress-bar span:nth-child(1) {
  box-shadow: inset 0 -1px 2px 0px rgba(0, 0, 0, 0.8);
  display: inline-block;
  height: 100%;
  width: 0%;
  transition: all linear 0.1s;
}
.game_container .game_clicker--progress-bar span:nth-child(2) {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  animation: heartBeat 1s infinite ease;
  animation-fill-mode: none;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  -webkit-text-stroke: 0.08rem #131e29;
  display: block;
  font-family: "Minecraft Ten", sans-serif;
  font-size: 1.5rem;
  text-align: center;
  top: -0.9rem;
  transition: all linear 0.1s;
}
@keyframes heartBeat {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.game_container .game_clicker--progress-timer {
  font-size: 2rem;
  letter-spacing: -0.01em;
  font-family: "Minecraft Ten", sans-serif;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  -webkit-text-stroke: 0.15rem #131e29;
}
.game_container .game_skills {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 3;
  max-width: 300px;
  width: auto;
  height: 62px;
  position: relative;
  padding-top: 1rem;
}
.game_container .game_skills--enhancer {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: row;
  animation: btnFloating 2s infinite ease;
  animation-fill-mode: none;
  animation-play-state: initial;
  animation-timing-function: ease-out;
  opacity: 0;
  background-color: rgba(9, 9, 9, 0.9333333333);
  border: 2px solid #ff7dff;
  border-radius: 16px;
  box-shadow: inset 0 0 3px 0px rgba(0, 255, 213, 0), inset 0 2px 10px 0px rgba(0, 255, 213, 0);
  color: #ffffff;
  cursor: pointer;
  justify-content: space-between;
  gap: 0.6rem;
  left: 0;
  padding: 0.2rem;
  position: absolute;
  width: 280px;
  transition: all linear 0.1s;
}
@keyframes btnFloating {
  0% {
    top: 0;
    opacity: 0;
  }
  30% {
    top: -0.8rem;
    opacity: 1;
  }
  100% {
    top: -0.8rem;
    opacity: 1;
  }
}
@media only screen and (min-width: 640px) and (max-width: 992px) {
  .game_container .game_skills--enhancer {
    left: unset;
  }
}
@media only screen and (max-width: 639px) {
  .game_container .game_skills--enhancer {
    left: unset;
  }
}
.game_container .game_skills--enhancer:hover {
  box-shadow: inset 1px 1px 6px 0px #ff7dff, inset -2px -2px 8px 0px #5c2fa4;
}
.game_container .game_skills--enhancer-image {
  display: inline-block;
  background-color: rgba(9, 9, 9, 0.9333333333);
  border: 2px solid #bcf40f;
  border-radius: 12px;
  padding: 0.3rem;
  height: auto;
  max-width: 46px;
  width: auto;
}
.game_container .game_skills--enhancer-cost {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: inherit;
  gap: 0.3rem;
  position: relative;
}
.game_container .game_skills--enhancer-cost > span {
  color: inherit;
}
.game_container .game_skills--enhancer-cost-multiplier {
  font-size: 1.2rem;
  animation: skillMultiplier 1s infinite ease;
  animation-fill-mode: none;
  display: inline-block;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  -webkit-text-stroke: 0.08rem #090909;
  font-family: "Minecraft Ten", sans-serif;
  text-align: center;
  position: relative;
  transform: translateY(0.56rem);
}
@keyframes skillMultiplier {
  0% {
    top: 0;
    opacity: 0;
  }
  30% {
    top: -0.8rem;
    opacity: 1;
  }
  100% {
    top: -0.8rem;
    opacity: 1;
  }
}
.game_container .game_skills--enhancer-cost > div {
  align-items: center;
  display: flex;
  justify-content: center;
  color: #131e29;
  font-size: 0.75rem;
  color: inherit;
  gap: 0.3rem;
  text-transform: uppercase;
}
.game_container .game_skills--enhancer-cost > div > img {
  width: 12px;
}
.game_container .game_skills--enhancer-btn {
  box-sizing: border-box;
  color: inherit;
  padding: 0.3rem;
  margin-right: 0.3rem;
  width: 85px;
  text-align: center;
}
.game_container .game_skills--enhancer:hover .game_container .game_skills--enhancer-btn {
  color: #ef8903;
}
.game_container .game_sparkle {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  animation: sparkleRotation1 40s infinite linear;
  animation-fill-mode: none;
  opacity: 1;
  top: 0;
  transition: all ease 0.3s;
  height: 100%;
  width: 100%;
  z-index: 2;
}
@keyframes sparkleRotation1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.game_container .game_sparkle--element {
  animation: bounceSparkle 1.5s infinite linear;
  animation-fill-mode: none;
  display: inline-block;
}
@keyframes bounceSparkle {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.game_container .game_sparkle#game-sparkle--1 {
  animation: sparkleRotation2 15s infinite linear;
  animation-fill-mode: none;
  left: -250%;
  width: 600%;
  z-index: 1;
}
@keyframes sparkleRotation2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.game_container .game_sparkle#game-sparkle--1--element {
  animation-play-state: paused;
}
@media only screen and (min-width: 640px) and (max-width: 992px) {
  .game_container .game_sparkle#game-sparkle--1 {
    left: -150%;
    width: 400%;
  }
}
@media only screen and (max-width: 639px) {
  .game_container .game_sparkle#game-sparkle--1 {
    left: -100%;
    width: 300%;
  }
}
.game_container .game_modal--start {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: rgba(9, 9, 9, 0.9333333333);
  border-radius: 16px;
  box-sizing: border-box;
  min-height: 340px;
  height: auto;
  max-width: 512px;
  width: calc(100% - 1.2rem);
  left: 50%;
  transform: translate(calc(-50% - 0.6rem));
  margin: 0.6rem;
  padding: 1rem;
  text-align: center;
  z-index: 10;
  box-shadow: 1px 2px 18px 0 rgba(13, 22, 33, 0.35);
}
.game_container .game_modal--start-logo {
  display: inline-block;
  width: 100%;
  max-width: 250px;
  margin-bottom: 0.2rem;
}
.game_container .game_modal--start-title {
  animation: startTitle 2s infinite ease;
  animation-fill-mode: none;
  color: #ffffff;
}
@keyframes startTitle {
  0% {
    color: #bcf40f;
  }
  50% {
    color: #5c2fa4;
  }
  100% {
    color: #bcf40f;
  }
}
.game_container .game_modal--start-description {
  color: #ffffff;
  margin: 0.6rem 0;
}
.game_container .game_modal {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: rgba(9, 9, 9, 0.9333333333);
  border-radius: 16px;
  box-sizing: border-box;
  min-height: 340px;
  height: auto;
  max-width: 512px;
  width: calc(100% - 1.2rem);
  left: 50%;
  transform: translate(calc(-50% - 0.6rem));
  margin: 0.6rem;
  padding: 1rem;
  text-align: center;
  z-index: 10;
}
.game_container .game_modal--message {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.game_container .game_modal--message-score > p, .game_container .game_modal--message-score > p span {
  animation: scoreColor 2s infinite ease;
  animation-fill-mode: none;
}
@keyframes scoreColor {
  0% {
    color: #bcf40f;
  }
  50% {
    color: #5c2fa4;
  }
  100% {
    color: #bcf40f;
  }
}
.game_container .game_modal--message-image {
  aspect-ratio: 346/187;
  border: 2px solid #bcf40f;
  box-shadow: 1px 2px 12px 0 rgba(13, 22, 33, 0.2);
  display: inline-block;
  max-width: 350px;
  width: auto;
  height: auto;
}
.game_container .game_modal--message-title {
  font-size: 0.9rem;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0.6rem 0.6rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 639px) {
  .game_container .game_modal--message-title {
    padding: 0rem;
  }
}
.game_container .game_modal--message-title > span {
  background-color: #ffffff;
  border-radius: 12px;
  color: #131e29;
  padding: 0.8rem;
}
@media only screen and (max-width: 639px) {
  .game_container .game_modal--message-title > span {
    padding: 0.4rem;
  }
}
.game_container .game_modal--message-description {
  font-size: 1rem;
  color: #ffffff;
  padding: 1rem;
}
.game_container .game_modal--board {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: auto;
  min-height: 150px;
  padding: 0.6rem;
  position: relative;
  text-align: center;
  width: 100%;
}
.game_container .game_modal--board-redime {
  color: #131e29;
  font-size: 0.75rem;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  animation: redimeAnimation 1s infinite ease;
  animation-fill-mode: none;
  background-color: #5c2fa4;
  border-radius: 3px;
  box-shadow: 1px 2px 12px 0 rgba(13, 22, 33, 0.2);
  color: #ffffff;
  font-size: 0.75rem;
  padding: 0.13rem 0.5rem 0.13rem;
  top: 0.4rem;
  width: -moz-fit-content;
  width: fit-content;
}
@keyframes redimeAnimation {
  0% {
    background-color: #bcf40f;
  }
  50% {
    background-color: #5c2fa4;
  }
  100% {
    background-color: #bcf40f;
  }
}
.game_container .game_modal--board-coupon {
  align-items: center;
  display: flex;
  justify-content: center;
  animation: color-animation 2s infinite ease;
  animation-fill-mode: none;
  background-color: #ffffff;
  border-radius: 12px;
  border: solid 3px;
  cursor: pointer;
  gap: 0.8rem;
  padding: 0.5rem 1rem 0.3rem;
  height: 60px;
  max-width: 306px;
  width: 100%;
}
@keyframes color-animation {
  0% {
    border-color: #bcf40f;
  }
  50% {
    border-color: #5c2fa4;
  }
  100% {
    border-color: #bcf40f;
  }
}
@media only screen and (max-width: 639px) {
  .game_container .game_modal--board-coupon {
    max-width: 250px;
    padding: 0.5rem 0.3rem;
  }
}
.game_container .game_modal--board-coupon-code {
  font-size: 2rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-transform: uppercase;
  transition: all ease 0.3s;
}
.game_container .game_modal--board-coupon-code:hover {
  color: #5c2fa4;
}
.game_container .game_modal--board-coupon-pophover {
  position: relative;
  height: 20px;
  width: 18px;
}
.game_container .game_modal--board-coupon-pophover > span {
  content: "";
  display: block;
  position: absolute;
  color: #131e29;
  font-size: 0.75rem;
  animation: copyCode 2s infinite ease;
  animation-fill-mode: none;
  animation-play-state: initial;
  background-color: #5c2fa4;
  border-radius: 3px;
  border: 2px solid #bcf40f;
  box-shadow: 1px 2px 12px 0 rgba(13, 22, 33, 0.2);
  color: #ffffff;
  opacity: 0;
  padding: 0.27rem 0.45rem;
  min-height: 30px;
  width: 70px;
  top: -60px;
  right: 50%;
  transform: translateX(50%);
}
@keyframes copyCode {
  0% {
    top: -53px;
    opacity: 0;
  }
  30% {
    top: -60px;
    opacity: 1;
  }
  100% {
    top: -60px;
    opacity: 1;
  }
}
.game_container .game_modal--board-coupon-pophover > span::before {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-style: solid;
  border-width: 7px 5px 0 5px;
  border-color: #bcf40f transparent transparent transparent;
  width: 0;
  height: 0;
  bottom: -6px;
}
.game_container .game_modal--btn {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
}
.game_container .game_modal--btn-copy {
  background-color: #5c2fa4;
  border-radius: 12px;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.95rem;
  max-width: 194px;
  min-width: 160px;
  width: auto;
  height: 44px;
  padding: 0.68rem 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all ease 0.3s;
  outline: 2px solid transparent;
  outline-offset: 3px;
  white-space: nowrap;
  min-width: 145px;
  padding: 0 0.7rem;
}
.game_container .game_modal--btn-copy:hover {
  outline: 2px solid #bcf40f;
  outline-offset: 3px;
}
@media only screen and (max-width: 639px) {
  .game_container .game_modal--btn-copy {
    min-width: 100px;
  }
}
.game_container .game_modal--btn-start {
  background-color: #5c2fa4;
  border-radius: 12px;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.95rem;
  max-width: 194px;
  min-width: 160px;
  width: auto;
  height: 44px;
  padding: 0.68rem 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all ease 0.3s;
  outline: 2px solid transparent;
  outline-offset: 3px;
  white-space: nowrap;
  min-width: 145px;
  padding: 0 0.7rem;
  background-color: #bcf40f;
  color: #21211f;
  font-weight: 600;
}
.game_container .game_modal--btn-start:hover {
  outline: 2px solid #bcf40f;
  outline-offset: 3px;
}
@media only screen and (max-width: 639px) {
  .game_container .game_modal--btn-start {
    min-width: 100px;
  }
}
.game_container .game_modal--btn-start:hover {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

/* EVENTS ---------------------------------------------------- */
.hidden {
  display: none !important;
}

.active {
  color: #bcf40f !important;
}

.disabled {
  color: #808080 !important;
}

.opacity {
  opacity: 0 !important;
}

.btnActive {
  outline: 3px solid #bcf40f;
  outline-offset: 0px;
  cursor: not-allowed !important;
}
.btnActive:hover {
  box-shadow: unset !important;
}

.progress-bar-high {
  background-color: #bcf40f;
}

.progress-bar-medium {
  background-color: #ef8903;
}

.progress-bar-low {
  background-color: #5c2fa4;
}

.floating-number {
  animation: floatUp 1.1s infinite ease;
  animation-fill-mode: none;
  color: #ffffff;
  font-size: 3rem;
  font-family: "Minecraft Ten", sans-serif;
  font-size: 3.3rem;
  font-weight: bold;
  pointer-events: none;
  position: absolute;
  text-align: center;
  -webkit-text-fill-color: #ffffff;
  -webkit-text-stroke: 0.1rem #131e29;
  z-index: 4;
}
@keyframes floatUp {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-10rem) scale(0.2);
  }
}

.falling-coins {
  transition: transform 0.3s ease;
  will-change: transform;
  position: fixed;
  width: 45px;
  pointer-events: none;
  top: -50px;
  z-index: 100;
}

.fragment {
  background-color: #808080;
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  background-color: transparent;
  background-image: url(../assets/game_pickaxe_fragment.png);
  width: 18px;
  height: 18px;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  z-index: 3;
}/*# sourceMappingURL=main.css.map */