/* Cartoon Styles */
@import url("https://fonts.googleapis.com/css2?family=Bangers&family=Comic+Neue:wght@400;700&display=swap");

/* Base Styles */
.cartoon-title {
  font-family: "Bangers", cursive;
  letter-spacing: 1px;
  text-shadow: 2px 2px 0 #000;
}

.cartoon-text {
  font-family: "Comic Neue", cursive;
  font-weight: 700;
}

.cartoon-button {
  font-family: "Comic Neue", cursive;
  font-weight: 700;
  transform: translateY(0);
  transition: transform 0.2s;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
}

.cartoon-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
}

.cartoon-button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.cartoon-button-3d {
  font-family: "Bangers", cursive;
  letter-spacing: 1px;
  box-shadow: 0 6px 0 #b7791f, 0 8px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.2s;
}

.cartoon-button-3d:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #b7791f, 0 10px 15px rgba(0, 0, 0, 0.3);
}

.cartoon-button-3d:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #b7791f, 0 4px 5px rgba(0, 0, 0, 0.3);
}

.cartoon-button-social {
  font-family: "Comic Neue", cursive;
  font-weight: 700;
  transform: scale(1);
  transition: transform 0.3s;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
}

.cartoon-button-social:hover {
  transform: scale(1.05);
}

.cartoon-card {
  border: 3px solid #2f855a;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  overflow: hidden;
}

.cartoon-card:hover {
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
}

.cartoon-number {
  font-family: "Bangers", cursive;
  text-shadow: 3px 3px 0 #2f855a;
}

.cartoon-shadow {
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
}

.cartoon-bubble {
  position: relative;
  background-color: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
}

.cartoon-bubble:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  border: 10px solid transparent;
  border-right-color: white;
  transform: translateY(-50%);
}

.cartoon-bg-yellow {
  background-color: #fef3c7;
  background-image: radial-gradient(#f6e05e 10%, transparent 11%),
    radial-gradient(#f6e05e 10%, transparent 11%);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  background-repeat: repeat;
}

.cartoon-bg-dark {
  background-color: #2f855a;
  background-image: radial-gradient(#276749 10%, transparent 11%),
    radial-gradient(#276749 10%, transparent 11%);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  background-repeat: repeat;
}

.cartoon-bg-light {
  background-color: #fef3c7;
  background-image: radial-gradient(#fefcbf 10%, transparent 11%),
    radial-gradient(#fefcbf 10%, transparent 11%);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  background-repeat: repeat;
}

.cartoon-tv {
  border: 15px solid #2f855a;
  border-radius: 20px;
  box-shadow: 0 0 0 5px #276749, 10px 10px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.cartoon-video {
  display: block;
  width: 100%;
}

.cartoon-distribution {
  border: 5px solid #276749;
  border-radius: 15px;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes wiggle {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(0);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0);
  }
}

@keyframes bounce-slow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse-slow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-float-slow {
  animation: float 6s ease-in-out infinite;
}

.animate-float-medium {
  animation: float 4s ease-in-out infinite;
}

.animate-wiggle {
  animation: wiggle 2s ease-in-out infinite;
}

.animate-bounce-slow {
  animation: bounce-slow 3s ease-in-out infinite;
}

.animate-pulse-slow {
  animation: pulse-slow 3s ease-in-out infinite;
}

/* Coin Stack */
.coin-stack {
  position: relative;
  height: 60px;
  width: 60px;
  margin: 0 auto;
}

.coin-stack .coin {
  position: absolute;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle at 30% 30%, #ffd700, #f6e05e);
  border-radius: 50%;
  border: 2px solid #d69e2e;
  left: 50%;
  transform: translateX(-50%);
}

.coin-stack .coin:nth-child(1) {
  bottom: 0;
  z-index: 3;
}

.coin-stack .coin:nth-child(2) {
  bottom: 10px;
  z-index: 2;
}

.coin-stack .coin:nth-child(3) {
  bottom: 20px;
  z-index: 1;
}

/* Fire Animation */
.fire-animation {
  position: relative;
  height: 60px;
  width: 60px;
  margin: 0 auto;
}

.fire-base {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 10px;
  background-color: #d69e2e;
  border-radius: 5px;
}

.fire-flames {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 50px;
  background: linear-gradient(to top, #f6ad55, #ed8936, #dd6b20, #c05621);
  border-radius: 20px 20px 5px 5px;
  animation: flame 1s ease-in-out infinite alternate;
}

@keyframes flame {
  0% {
    height: 40px;
    opacity: 0.8;
  }
  100% {
    height: 50px;
    opacity: 1;
  }
}

/* Distribution Pie */
.distribution-pie {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #276749;
  overflow: hidden;
  margin: 0 auto;
}

.pie-segment {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
}

.segment-1 {
  background-color: #f6e05e;
  clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 100%, 50% 100%);
}

.segment-2 {
  background-color: #f6ad55;
  clip-path: polygon(50% 50%, 50% 0%, 0% 0%, 0% 50%);
}

.segment-3 {
  background-color: #ed8936;
  clip-path: polygon(50% 50%, 0% 50%, 0% 100%, 50% 100%);
}

/* Glow Text */
.glow-text {
  text-shadow: 0 0 10px rgba(246, 224, 94, 0.7);
}

/* Coin Rain */
.coin-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

/* Pepe Rocket */
.pepe-rocket {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 100px;
  height: 150px;
  background-image: url("../images/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: rocket 10s linear infinite;
  opacity: 0.5;
  pointer-events: none;
}

@keyframes rocket {
  0% {
    transform: translateY(100%) rotate(0);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-500%) rotate(720deg);
    opacity: 0;
  }
}

/* Wave Animation */
.wave-animation-reverse {
  animation: wave-reverse 10s linear infinite;
}

@keyframes wave-reverse {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
