/* ========== AUTH & PRICING STYLES ========== */

/* Pro button flashy style */
.pro-button {
  background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
  font-weight: 700;
  animation: shimmer 3s ease-in-out infinite;
  border: none;
  position: relative;
  overflow: hidden;
}

.pro-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shine 2s infinite;
}

.pro-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.4);
}

.pro-button:active {
  transform: translateY(0);
}

@keyframes shimmer {
  0%, 100% { 
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  }
  50% { 
    box-shadow: 0 4px 25px rgba(236, 72, 153, 0.4);
  }
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Auth Modal */
.auth-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.auth-modal.active {
  display: flex;
}

.auth-modal-content {
  background: linear-gradient(135deg, rgba(30, 20, 50, 0.95) 0%, rgba(20, 12, 35, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 48px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  border: 1px solid rgba(100, 50, 200, 0.2);
}

.auth-tab {
  display: none;
}

.auth-tab.active {
  display: block;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-modal-content h2 {
  margin-top: 0;
  margin-bottom: 28px;
  color: #e8e8f0;
  font-size: 26px;
  font-weight: 700;
}

.auth-modal-content form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.auth-modal-content input {
  padding: 14px 16px;
  border: 1.5px solid rgba(100, 50, 200, 0.2);
  border-radius: 12px;
  background: rgba(10, 10, 20, 0.6);
  color: #e8e8f0;
  font-size: 15px;
  transition: all 0.25s ease;
}

.auth-modal-content input::placeholder {
  color: #707080;
}

.auth-modal-content input:focus {
  outline: none;
  border-color: rgba(100, 50, 200, 0.6);
  background: rgba(10, 10, 20, 1);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.15);
}

.auth-switch {
  text-align: center;
  font-size: 14px;
  color: #a0a0b0;
  margin: 0;
}

.auth-switch a {
  color: #a78bfa;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
}

.auth-switch a:hover {
  color: #c4b5fd;
  text-decoration: underline;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #a0a0b0;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.25s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #e8e8f0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

/* Pricing Modal */
/* ── Pricing Modal ──────────────────────────────────────────────────────── */
/* ── Pricing Modal ──────────────────────────────────────────────────────── */
.pricing-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.pricing-modal.active {
  display: flex;
  animation: fadeIn 0.25s ease;
}

.pricing-modal-content {
  background: linear-gradient(160deg, #1a1030 0%, #120c25 100%);
  border-radius: 20px;
  padding: 28px 28px 24px;
  max-width: 400px;
  width: 92%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 30px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(139,123,255,0.15);
  position: relative;
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
}

/* Header */
.pricing-header {
  text-align: center;
  margin-bottom: 20px;
}

.pricing-icon {
  font-size: 22px;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.pricing-modal-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #eeeef8;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
}

.pricing-subtext {
  font-size: 13px;
  color: #8888a0;
  margin: 0;
  line-height: 1.5;
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
}

/* Card */
.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(139,123,255,0.2);
  border-radius: 14px;
  padding: 20px 20px 18px;
}

/* Badge — sits above price */
.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
}

/* Price row */
.pricing-price-row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 18px;
}

.price {
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
}

.price-period {
  font-size: 14px;
  color: #7070a0;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
}

/* Feature list */
.features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.features li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(139,123,255,0.08);
  font-size: 13px;
  color: #b0b0c8;
  line-height: 1.4;
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
}

.features li:last-child { border-bottom: none; }
.features li svg { flex-shrink: 0; }
.features li strong { color: #ddddef; font-weight: 600; }

/* Free vs Pro compare */
.plan-compare {
  display: flex;
  background: rgba(0,0,0,0.25);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(139,123,255,0.1);
}

.compare-col { flex: 1; }

.compare-divider {
  width: 1px;
  background: rgba(139,123,255,0.15);
  margin: 0 12px;
}

.compare-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #555570;
  margin-bottom: 7px;
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
}

.pro-label {
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.compare-item {
  font-size: 11.5px;
  padding: 2px 0;
  line-height: 1.5;
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
}

.compare-no  { color: #50505c; text-decoration: line-through; }
.compare-yes { color: #a0a0c0; }

/* CTA button */
.checkout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
  background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
  color: #fff;
  border: none;
  border-radius: 11px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 6px 20px rgba(99,102,241,0.35);
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}

.checkout-btn:hover  { opacity: 0.92; transform: translateY(-1px); }
.checkout-btn:active { transform: translateY(0); opacity: 1; }

/* Refund guarantee */
.refund-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(74,222,128,0.06);
  border: 1px solid rgba(74,222,128,0.18);
  border-radius: 9px;
  padding: 10px 12px;
  margin-bottom: 10px;
}

.refund-guarantee svg { flex-shrink: 0; margin-top: 1px; }
.refund-guarantee span {
  font-size: 12px;
  color: #82c882;
  line-height: 1.5;
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
}
.refund-guarantee strong { color: #4ade80; }

/* Cancel policy */
.cancel-policy {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 0 2px;
}

.cancel-policy svg { flex-shrink: 0; margin-top: 2px; }
.cancel-policy span {
  font-size: 11.5px;
  color: #606075;
  line-height: 1.5;
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
}
/* ── Pro Celebration Modal ───────────────────────────────────────────────── */
.celebration-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
}

.celebration-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

#confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10000;
}

.celebration-content {
  position: relative;
  z-index: 10001;
  background: linear-gradient(160deg, #1a1030 0%, #120c25 100%);
  border: 1px solid rgba(139, 123, 255, 0.25);
  border-radius: 22px;
  padding: 40px 36px 32px;
  max-width: 420px;
  width: 92%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(139, 123, 255, 0.15);
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
}

.celebration-icon {
  font-size: 48px;
  margin-bottom: 14px;
  display: block;
}

.celebration-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #eeeef8;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.celebration-subtitle {
  font-size: 13px;
  color: #8888a0;
  margin: 0 0 22px;
  line-height: 1.5;
}

.celebration-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  text-align: left;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #c0c0d8;
}

.perk-item svg {
  flex-shrink: 0;
}

.celebration-message {
  font-size: 13px;
  color: #7070a0;
  margin: 0 0 22px;
  line-height: 1.5;
}

.celebration-btn {
  width: 100%;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
  background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.4);
  letter-spacing: 0.01em;
}

.celebration-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.celebration-btn:active {
  transform: translateY(0);
}

/* ── Billing Section (Profile Tab) ───────────────────────────────────────── */
.billing-card {
  background: rgba(139, 123, 255, 0.06);
  border: 1px solid rgba(139, 123, 255, 0.2);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 16px 0 12px;
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
}

.billing-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.billing-pro-badge {
  background: linear-gradient(135deg, #6366f1, #ec4899);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.billing-price {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.billing-price span {
  font-size: 12px;
  color: #7070a0;
  -webkit-text-fill-color: #7070a0;
}

.billing-desc {
  font-size: 12px;
  color: #8080a0;
  line-height: 1.5;
  margin: 0 0 14px;
}

.billing-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.billing-cancel-btn {
  flex: 1;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  background: transparent;
  color: #c0c0d8;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.billing-cancel-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.billing-refund-btn {
  flex: 1;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.billing-refund-btn:hover {
  background: rgba(239, 68, 68, 0.18);
  border-color: rgba(239, 68, 68, 0.4);
}

.billing-refund-note {
  font-size: 11px;
  color: #555570;
  line-height: 1.5;
  margin: 0;
}

/* ── Billing Tab ─────────────────────────────────────────────────────────── */
.billing-empty {
  text-align: center;
  padding: 20px 0;
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
}

.billing-empty-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.billing-empty p {
  font-size: 14px;
  color: #c0c0d8;
  margin: 0 0 6px;
}

.billing-empty-sub {
  font-size: 12px !important;
  color: #7070a0 !important;
  line-height: 1.5;
}

.billing-plan-card {
  background: rgba(139, 123, 255, 0.06);
  border: 1px solid rgba(139, 123, 255, 0.2);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 14px;
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
}

.billing-plan-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.billing-plan-name {
  font-size: 13px;
  font-weight: 600;
  color: #c0c0d8;
  margin-bottom: 4px;
}

.billing-plan-price {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.billing-plan-price span {
  font-size: 13px;
  color: #7070a0;
  -webkit-text-fill-color: #7070a0;
  font-weight: 500;
}

.billing-status-badge {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.25);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.billing-status-canceled {
  background: rgba(251, 146, 60, 0.12);
  color: #fb923c;
  border-color: rgba(251, 146, 60, 0.25);
}

.billing-plan-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(139, 123, 255, 0.1);
  padding-top: 12px;
}

.billing-plan-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.billing-plan-row span:first-child {
  color: #7070a0;
}

.billing-plan-row span:last-child {
  color: #c0c0d8;
  font-weight: 500;
}

.billing-perks-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.billing-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #a0a0c0;
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
}

.billing-policy-box {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-radius: 9px;
  padding: 10px 12px;
  margin-bottom: 8px;
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
}

.billing-policy-box svg { flex-shrink: 0; margin-top: 1px; }

.billing-policy-green {
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.18);
}

.billing-policy-green span {
  font-size: 12px;
  color: #82c882;
  line-height: 1.5;
}

.billing-policy-green strong { color: #4ade80; }

.billing-policy-gray {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.billing-policy-gray span {
  font-size: 12px;
  color: #7070a0;
  line-height: 1.5;
}

.billing-policy-gray strong { color: #a0a0b8; }

.billing-tab-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

/* ── Custom Confirm Modal ────────────────────────────────────────────────── */
.confirm-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.confirm-modal-overlay.active {
  display: flex;
  animation: fadeIn 0.2s ease;
}

.confirm-modal-box {
  background: linear-gradient(160deg, #1c1230 0%, #140e28 100%);
  border: 1px solid rgba(139, 123, 255, 0.2);
  border-radius: 18px;
  padding: 32px 28px 24px;
  max-width: 360px;
  width: 92%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
}

.confirm-modal-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.confirm-modal-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #eeeef8;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.confirm-modal-box p {
  font-size: 13px;
  color: #8888a8;
  line-height: 1.6;
  margin: 0 0 24px;
}

.confirm-modal-actions {
  display: flex;
  gap: 10px;
}

.confirm-modal-btn-primary,
.confirm-modal-btn-secondary,
.confirm-modal-btn-danger {
  flex: 1;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.confirm-modal-btn-primary {
  background: linear-gradient(135deg, #6366f1, #ec4899);
  color: #fff;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.confirm-modal-btn-secondary {
  background: rgba(255,255,255,0.06);
  color: #c0c0d8;
  border: 1px solid rgba(255,255,255,0.1);
}

.confirm-modal-btn-danger {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.confirm-modal-btn-primary:hover,
.confirm-modal-btn-secondary:hover,
.confirm-modal-btn-danger:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ── Billing UI refresh ──────────────────────────────────────────────────── */
.billing-plan-card {
  background: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(236,72,153,0.05) 100%);
  border: 1px solid rgba(139,123,255,0.22);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 16px;
}

.billing-plan-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}

.billing-plan-name {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #7070a0;
  margin-bottom: 6px;
}

.billing-plan-price {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
}

.billing-plan-price span {
  font-size: 13px;
  color: #6060a0;
  -webkit-text-fill-color: #6060a0;
  font-weight: 500;
  letter-spacing: 0;
}

.billing-plan-rows {
  border-top: 1px solid rgba(139,123,255,0.1);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.billing-plan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
}

.billing-plan-row span:first-child { color: #6060a0; }
.billing-plan-row span:last-child  { color: #c0c0d8; font-weight: 500; }

.billing-tab-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.billing-cancel-btn {
  width: 100%;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
  background: rgba(255,255,255,0.04);
  color: #a0a0c0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.billing-cancel-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: #d0d0e8;
}

.billing-refund-btn {
  width: 100%;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
  background: rgba(239,68,68,0.08);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.billing-refund-btn:hover {
  background: rgba(239,68,68,0.14);
  border-color: rgba(239,68,68,0.35);
}
/* ── Terms scroll-to-agree ── */
.terms-scroll-box {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  height: 130px;
  overflow-y: auto;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.03);
}
.terms-scroll-content {
  padding: 14px 16px;
  font-size: 12px;
  color: rgba(232,224,255,0.6);
  line-height: 1.7;
}
.terms-scroll-content a {
  color: #8b7bff;
  text-decoration: none;
}
.terms-scroll-content strong {
  color: rgba(232,224,255,0.85);
}
.terms-agree-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: rgba(232,224,255,0.7);
  margin-bottom: 12px;
  cursor: pointer;
  line-height: 1.5;
}
.terms-agree-label input[type="checkbox"] {
  margin-top: 2px;
  accent-color: #8b7bff;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  cursor: pointer;
}
.terms-agree-label a { color: #8b7bff; text-decoration: none; }
.terms-agree-disabled {
  opacity: 0.45;
  pointer-events: none;
}
.terms-agree-disabled input { cursor: not-allowed; }