/* ===== TOKENOMICS SECTION ===== */
.comic-tokenomics {
  padding-bottom: 120px;
  background: #f3e5f5;
  position: relative;
  overflow: hidden;
  background-image: url("/images/token-bg.png");
  background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

@media (max-width: 768px) {
  .comic-tokenomics {
    background-image: url("/images/token-mb.png");
  background-position: center;
    background-size: cover;
    background-attachment: fixed;
  }
}

/* TITLE */
.tokenomics-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #000;
  display: inline-block;
  padding: 15px 40px;
  background: #ffeb3b;
  border: 4px solid #000;
  border-radius: 22px;
  box-shadow: 6px 6px 0 #000;
}

/* FLOATING IMAGES */
.tokenomics-float {
  position: absolute;
  width: 120px;
  animation: bounce 3s ease-in-out infinite;
  z-index: 1;
}

/* TOP RIGHT */
.top-right {
  top: 60px;
  right: 40px;
}

/* BOTTOM RIGHT */
.bottom-left {
  left: 40px;
  animation-delay: 1.5s;
}

/* CENTER IMAGE */
.tokenomics-center-img {
  max-width: 100%;
}

/* BOUNCE ANIMATION */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

  .tokenomics-title {
    font-size: 2.2rem;
  }

  .tokenomics-float {
    width: 80px;
  }

  .top-right {
    top: 20px;
    right: 0px;
  }

  .bottom-left {
    bottom: -90px;
    right: 15px;
  }
}
