.attention-wrapper {
  display: flex;
  justify-content: center;
}

.attention-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #6fcf97;
  color: #0d1f33;
  padding: 18px 40px;
  margin-top: 8px;
  margin-bottom: 38px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.attention-button:hover {
  transform: scale(1.1);
}

.pulse-dot {
  width: 16px;
  height: 16px;
  background: #f2994a;
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,111,60,0.5);
  animation: pulse 0.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
