/* Container do Baú */
.raspa-bau-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}

/* Botão do Baú – vai dentro de .telegram-container, acima do Telegram */
.raspa-bau-btn {
  width: 55px;
  height: 55px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #1ba83f, #0bb83f);
  color: #000;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(27, 168, 63, 0.4);
  transform: translateZ(0);
  animation: raspaBauPulse 1.6s infinite;
  margin-bottom: 8px;
  font-size: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(27, 168, 63, 0.3);
}

.raspa-bau-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(27, 168, 63, 0.6);
}

/* Nome do Baú */
.raspa-bau-name {
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 4px 8px;
  border-radius: 12px;
  margin-bottom: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

/* Timer */
.raspa-bau-timer {
  color: #1ba83f;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  background: rgba(27, 168, 63, 0.1);
  padding: 2px 6px;
  border-radius: 8px;
  border: 1px solid rgba(27, 168, 63, 0.3);
  white-space: nowrap;
  margin-bottom: 4px;
  display: none; /* Oculto por padrão */
}

.raspa-bau-timer.active {
  display: block;
}

@keyframes raspaBauPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(27, 168, 63, 0.4);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 12px 25px rgba(27, 168, 63, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(27, 168, 63, 0.4);
  }
}

/* Tooltipzinho simples opcional */
.raspa-bau-btn[data-tip]:hover::after {
  content: attr(data-tip);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.75);
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}