/* ═══════════════════════════════════════════════════════════════
   BALANCE PREMIUM BUTTON STYLES
   ═══════════════════════════════════════════════════════════════ */

.balance-btn-generate {
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border: none;
  border-radius: 14px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3),
              0 2px 8px rgba(59, 130, 246, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 8px;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}

.balance-btn-generate::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}

.balance-btn-generate:hover::before {
  left: 100%;
}

.balance-btn-generate:active {
  transform: scale(0.97);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25),
              0 1px 4px rgba(59, 130, 246, 0.15);
}

.balance-btn-generate svg {
  flex-shrink: 0;
}

/* Loading state */
.balance-btn-generate:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.balance-btn-generate:disabled::before {
  display: none;
}
