/* LoyaltyStars link button — shared across roulette, deposit, withdraw */

.btn-loyalty-stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  vertical-align: middle;
}

.btn-loyalty-stars .loyalty-stars-label {
  line-height: 1;
}

.btn-loyalty-stars .loyalty-stars-icon {
  width: 116px;
  height: 22px;
  flex-shrink: 0;
  display: block;
}

/* Match auth-bar action button height (see auth.css .auth-bar .btn) */
.auth-bar .btn {
  box-sizing: border-box;
  height: 38px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.btn.btn-loyalty-stars {
  height: 38px;
  padding: 0 28px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.15s;
  background: linear-gradient(135deg, #1b2148, #154a77);
  color: #fff;
  box-shadow: 0 4px 14px rgba(21, 74, 119, 0.45);
}

.btn.btn-loyalty-stars:hover:not(:disabled) {
  background: linear-gradient(135deg, #232b5a, #1a5f94);
  box-shadow: 0 6px 18px rgba(21, 74, 119, 0.55);
  transform: translateY(-1px);
}

.btn.btn-loyalty-stars:active:not(:disabled) {
  transform: translateY(0);
}

.btn.btn-loyalty-stars:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
