body {
  font-family: "Rubik", sans-serif;
  /* background-color: #FFF200; */
  background-color: #fff8e1;
  color: #000;
  overflow-x: hidden;
}
.gold-float {
  pointer-events: none;
  z-index: 1;
}
@keyframes float-up-down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
.animate-float-up-down {
  animation: float-up-down 3s ease-in-out infinite;
}
.bungee {
  font-family: "Bungee", cursive;
}
.marquee {
  animation: scroll 20s linear infinite;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
#gold-waterfall {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* behind all content */
  pointer-events: none; /* so clicks pass through */
}
.gold-drop {
  position: absolute;
  top: -50px; /* start above viewport */
  animation: drop linear infinite;
  pointer-events: none;
  z-index: 0; /* behind content */
}
@keyframes drop {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}
.contract-copied {
  animation: bounce 0.5s;
}
@keyframes bounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.hover-glow:hover {
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
}

.bungee {
  font-family: "Bungee", cursive;
}
.center-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  position: relative;
}
.chart-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 32px 16px 16px 16px;
  position: relative;
}
.chart-label {
  font-family: "Bungee", cursive;
  font-size: 1.2rem;
  color: #ffd700;
  margin-bottom: 8px;
  text-align: center;
}
.chart-value {
  font-family: "Rubik", monospace;
  font-size: 2rem;
  color: #222;
  text-align: center;
  margin-bottom: 16px;
}
canvas {
  display: block;
  margin: 0 auto;
  background: #fff8e1;
  border-radius: 8px;
}
.up-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}
.up-btn img {
  cursor: pointer;
  transition: transform 0.2s;
}
.up-btn img:active {
  transform: scale(1.1);
}

.fly-img {
  position: fixed;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.3s;
}

.bg-green{
    --tw-bg-opacity: 1;
    background-color: rgb(0 143 82);
}

 @keyframes upBtnPulse {
    0%   { transform: scale(1); }
    20%  { transform: scale(1.5); }
    50%  { transform: scale(0.7); }
    80%  { transform: scale(1.5); }
    100% { transform: scale(1); }
}


@keyframes upBtnPulse {
    0%   { transform: scale(1); }
    25%  { transform: scale(1.2); }
    50%  { transform: scale(0.9); }
    75%  { transform: scale(1.2); }
    100% { transform: scale(1); }
}


.mine_cursor:hover {
  cursor: url("img/mine.webp") 16 16, auto; 
}

.gold_cursor:hover {
  cursor: url("img/mine.webp") 16 16, auto; 
}


.z-index-9999 {
  z-index: 9999;
  position: relative;
}

.z-index-2{
  z-index: 2;
}