* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #2d0a5a;
}

/* WRAPPER */
.wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* 🔥 IMAGE (NO CROP EVER) */
.bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain; /* КЛУЧНО */
  top: 0;
  left: 0;
}

/* OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* BUTTON - точно под кутијата */
.claim-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  
  
  bottom: 12%; 

  padding: 14px 28px;
  border-radius: 40px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  background: linear-gradient(90deg, #ffcc00, #ff9900);
  color: #4b0082;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}


@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* ===== ТЕКСТ "641 Pi" СОСТАВЕН ===== */
.pi-amount-fixed {
    font-size: 80px;
    font-weight: 950;
    font-family: 'Poppins', 'Montserrat', 'Impact', sans-serif;  /* ← ДОДАЈ ГО ОВА */
    background: linear-gradient(145deg, #FFD966, #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
    text-shadow: 0 2px 15px rgba(247, 179, 48, 0.6);
    display: inline-block;
    animation: bounce 0.8s ease infinite;
}

/* Позиционирање: 30% над центарот → top: 20% */
.bounce-text-wrapper {
    position: absolute;
    top: 35%;          /* 30% над центарот (50% - 30% = 20%) */
    left: 0;
    width: 100%;
    text-align: center;
    pointer-events: none;   /* за да не пречи на кликање на копчето */
    z-index: 5;
}

/* Прилагодување за помали екрани */
@media (max-width: 500px) {
    .pi-amount-fixed {
        font-size: 52px;
    }
}