/* ===== TOKEN DETAILS SECTION ===== */
.comic-token-details {
  padding: 100px 0;
  background-image: url("/images/token-bg.png");
  background-position: center;
    background-size: cover;
   background-attachment: fixed;
   border-top:8px solid #242539;
}

@media (max-width: 768px) {
  .comic-token-details {
    background-image: url("/images/token-mb.png");
  background-position: center;
    background-size: cover;
    background-attachment: fixed;
  }
}

/* TITLE */
.token-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #000;
  display: inline-block;
  padding: 15px 35px;
  background: #ffeb3b;
  border: 4px solid #000;
  border-radius: 22px;
  box-shadow: 6px 6px 0 #000;
}

/* CARD */
.token-card {
  position: relative;
  background: #ffffff;
  border: 4px solid #000;
  border-radius: 25px;
  padding: 40px 20px;
  text-align: center;
  height: 100%;
  box-shadow: 6px 6px 0 #000;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

/* GRAFFITI SPLASH EFFECT */
.token-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: #8840A5;
  opacity: 0.15;
  border-radius: 50% 40% 60% 45%;
  transform: rotate(25deg);
}

/* SPRAY DOTS */
.token-card::after {
  content: "";
  position: absolute;
  bottom: 25px;
  left: 20px;
  width: 10px;
  height: 10px;
  background: #8840A5;
  border-radius: 50%;
  box-shadow:
    18px -12px 0 #8840A5,
    36px 4px 0 #8840A5,
    55px -8px 0 #8840A5;
  opacity: 0.4;
}

/* HOVER LIFT */
.token-card:hover {
  transform: translateY(-15px) rotate(-1deg);
  box-shadow: 10px 10px 0 #000;
}


/* CARD TEXT */
.token-card h4 {
    color: #8840A5;
  font-size: 1.98rem;
  font-weight: 900;
  margin-bottom: 15px;
}

.token-card p {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 767px) {
  .token-title {
    font-size: 2.2rem;
  }

  .token-card {
    padding: 30px 15px;
  }
}

