/* Base badge style */
.status-badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  min-width: 110px;
  text-align: center;
}

/* Variants */
.status-undetected {
  background: linear-gradient(90deg,#07bfa7,#00d7b4);
  color:#041014;
}

.status-updating {
  background: linear-gradient(90deg,#ffb052,#f07b3f);
  color:#111;
}

.status-detected {
  background: linear-gradient(90deg,#ff5464,#d92b4b);
  color:#111;
}

.status-risk {
  background: linear-gradient(90deg,#ffa3a3,#ff6b6b);
  color:#111;
}

.status-testing {
  background: linear-gradient(90deg,#aa8cff,#6b5cff);
  color:#041014;
}

/* Buy button */
.buy {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(90deg,#0ec5b6,#6b5cff);
  color: #fff !important;
  transition: transform 0.15s ease;
}

.buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}
