/* ===== Custom hero CTA: BUY $CUKE button (cropped artwork image) ===== */

.header__buy-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 10;
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.header__buy-btn {
  display: inline-block;
  line-height: 0;
  max-width: 100%;
  cursor: pointer;
}

.header__buy-img {
  display: block;
  width: 320px;
  max-width: 100%;
  height: auto;
  /* clean rounded cast shadow (follows the button's alpha) — replaces the
     baked green/square shadow that was removed from the artwork */
  filter: drop-shadow(4px 6px 1px rgba(40, 15, 12, 0.5));
  animation: btnScale 2s infinite linear;
}

@media screen and (max-width: 1200px) {
  .header__buy-img { width: 260px; }
}

@media screen and (max-width: 400px) {
  .header__buy-img { width: 210px; }
}
