* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #c9a84c;
  --gold-light: #dfc06a;
  --gold-dark: #a6872e;
  --gold-glow: rgba(201, 168, 76, 0.35);
  --gold-subtle: rgba(201, 168, 76, 0.08);
  --gold-border: rgba(201, 168, 76, 0.15);
  --bg-dark: #0a0a0a;
  --bg-card: rgba(14, 14, 14, 0.85);
  --bg-input: rgba(18, 18, 18, 0.9);
  --border: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(201, 168, 76, 0.2);
  --text: #d4d4d4;
  --text-muted: #6b6b6b;
  --text-light: #999;
  --white: #f5f5f5;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ========================================
   ANIMATED BACKGROUND — gold tones
   ======================================== */
.bg-effects {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.1;
  animation: blobFloat 25s infinite ease-in-out;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: var(--gold);
  top: -15%;
  left: -10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 450px;
  height: 450px;
  background: #8b6914;
  bottom: -12%;
  right: -8%;
  animation-delay: -8s;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: var(--gold-dark);
  top: 45%;
  left: 55%;
  transform: translate(-50%, -50%);
  animation-delay: -16s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(25px, -35px) scale(1.08); }
  50% { transform: translate(-15px, 18px) scale(0.96); }
  75% { transform: translate(12px, 30px) scale(1.04); }
}

/* ========================================
   PAGE LAYOUT
   ======================================== */
.page-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
}

.hero-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  border-right: 1px solid var(--border);
}

.hero-content {
  max-width: 460px;
}

.form-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
}

.form-container {
  width: 100%;
  max-width: 420px;
}

/* ========================================
   LOGO IMAGE
   ======================================== */
.logo-showcase {
  text-align: center;
  margin-bottom: 48px;
}

.logo-img {
  max-width: 260px;
  height: auto;
  border-radius: 20px;
  filter: drop-shadow(0 8px 32px rgba(201, 168, 76, 0.2));
  animation: logoGlow 4s infinite ease-in-out;
}

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 8px 32px rgba(201, 168, 76, 0.15)); }
  50% { filter: drop-shadow(0 12px 48px rgba(201, 168, 76, 0.3)); }
}

.mobile-logo {
  display: none;
  text-align: center;
  margin-bottom: 24px;
}

.logo-img-sm {
  max-width: 160px;
  height: auto;
  border-radius: 20px;
  filter: drop-shadow(0 4px 16px rgba(201, 168, 76, 0.2));
}

/* ========================================
   HERO CONTENT
   ======================================== */
.hero-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Features */
.features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  font-size: 15px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  color: var(--gold);
}

.feature-item strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

.feature-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ========================================
   BOT STATUS
   ======================================== */
.bot-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--text-light);
  padding: 10px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  width: fit-content;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.status-dot.online {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
  animation: pulse-green 2s infinite;
}

.status-dot.offline {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 6px rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 14px rgba(34, 197, 94, 0.7); }
}

/* ========================================
   CARD
   ======================================== */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 36px 32px;
  margin-bottom: 16px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.card-header {
  margin-bottom: 28px;
}

.card h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.hidden {
  display: none !important;
}

/* ========================================
   INPUTS
   ======================================== */
.input-group {
  margin-bottom: 24px;
}

.input-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 8px;
}

.phone-input {
  display: flex;
  align-items: center;
  background: var(--bg-input);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.phone-input:focus-within {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.phone-input .prefix {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,0.02);
  border-right: 1px solid rgba(255,255,255,0.05);
  user-select: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-input .prefix i {
  color: var(--gold);
  opacity: 0.6;
  font-size: 13px;
}

.phone-input input {
  flex: 1;
  padding: 14px 16px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  letter-spacing: 0.5px;
}

.phone-input input::placeholder {
  color: #2d2d2d;
}

/* ========================================
   CODE INPUTS
   ======================================== */
.code-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  margin-bottom: 20px;
  color: var(--gold);
}

.code-inputs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.code-digit {
  width: 50px;
  height: 58px;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  font-family: 'Inter', monospace;
  background: var(--bg-input);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.code-digit:focus {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.code-sep {
  font-size: 18px;
  color: #2a2a2a;
  font-weight: 300;
  margin: 0 2px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.btn-primary {
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  box-shadow: 0 4px 24px var(--gold-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 6px 32px rgba(201, 168, 76, 0.45);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px var(--gold-glow);
}

.btn-primary:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-primary i {
  font-size: 14px;
}

.btn-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
  font-size: 16px;
  padding: 16px 24px;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #22c55e, #0d7a6e);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

.btn-whatsapp:active {
  transform: translateY(0);
}

/* ========================================
   ERROR MESSAGE
   ======================================== */
.error-msg {
  font-size: 13px;
  color: #ef4444;
  margin-top: 14px;
  text-align: center;
  min-height: 18px;
  opacity: 0;
  transition: opacity 0.3s;
}

.error-msg.show {
  opacity: 1;
}

/* ========================================
   CARD FOOTER / LINKS
   ======================================== */
.card-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
}

.card-footer .link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  margin-left: 6px;
  transition: color 0.2s;
}

.card-footer .link:hover {
  color: var(--gold-light);
}

.back-link {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 18px;
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.back-link:hover {
  color: var(--gold);
}

/* ========================================
   REGISTER PAGE
   ======================================== */
.register-card .card-header {
  text-align: center;
}

.register-icon-wrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 211, 102, 0.06);
  border: 1px solid rgba(37, 211, 102, 0.12);
  border-radius: 18px;
  margin: 0 auto 20px;
  color: #25D366;
}

.register-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}

.step:hover {
  border-color: var(--gold-border);
}

.step-number {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #0a0a0a;
}

.step-content strong {
  font-size: 14px;
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

.step-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.register-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-light);
}

.register-note i {
  flex-shrink: 0;
  color: var(--gold);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  text-align: center;
  margin-top: 28px;
}

.footer p {
  font-size: 12px;
  color: #222;
}

/* ========================================
   PLANS PAGE
   ======================================== */
.plans-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px 32px;
}

.plans-back-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all 0.25s ease;
  margin-bottom: 16px;
}

.plans-back-btn:hover {
  color: var(--gold);
  border-color: var(--border-gold);
  background: var(--gold-subtle);
  transform: translateX(-4px);
}

.plans-back-btn i {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.plans-back-btn:hover i {
  transform: translateX(-3px);
}

.plans-header {
  text-align: center;
  margin-bottom: 32px;
}

.plans-logo {
  max-width: 120px;
  height: auto;
  border-radius: 20px;
  filter: drop-shadow(0 8px 32px rgba(201, 168, 76, 0.2));
  margin-bottom: 20px;
}

.plans-header h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.plans-subtitle {
  font-size: 15px;
  color: var(--text-muted);
}

/* Period toggle */
.period-toggle {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  margin-bottom: 36px;
}

.period-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.period-btn.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: #0a0a0a;
  box-shadow: 0 4px 16px var(--gold-glow);
}

.period-btn:not(.active):hover {
  color: var(--gold-light);
}

/* Plans grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 940px;
  width: 100%;
}

/* Plan card */
.plan-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.plan-card.recommended {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.12);
}

/* Popular badge */
.plan-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0a0a0a;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* Plan badge icon */
.plan-badge {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 16px;
  font-size: 22px;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  color: var(--gold);
}

.plan-badge.premium {
  background: rgba(168, 85, 247, 0.08);
  border-color: rgba(168, 85, 247, 0.15);
  color: #a855f7;
}

.plan-badge.master {
  background: rgba(234, 179, 8, 0.08);
  border-color: rgba(234, 179, 8, 0.15);
  color: #eab308;
}

.plan-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

/* Price */
.plan-price {
  margin-bottom: 24px;
}

.price-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
}

.price-period {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 2px;
}

/* Features list */
.plan-features {
  list-style: none;
  text-align: left;
  width: 100%;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.plan-features li i {
  width: 18px;
  text-align: center;
  font-size: 13px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Plan button */
.btn-plan {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  cursor: pointer;
  background: transparent;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-plan:hover {
  background: var(--gold-subtle);
  border-color: var(--gold);
}

.btn-plan:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-plan-recommended {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: #0a0a0a;
  border: none;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-plan-recommended:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.45);
  transform: translateY(-2px);
}

.btn-success {
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3) !important;
}

.plan-error {
  margin-top: 20px;
  max-width: 940px;
  width: 100%;
}

.plans-footer {
  margin-top: auto;
  padding-top: 32px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .page-wrapper {
    flex-direction: column;
  }

  .hero-side {
    display: none;
  }

  .mobile-logo {
    display: block;
  }

  .form-side {
    padding: 32px 24px 40px;
  }

  .form-container {
    max-width: 100%;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
}

@media (max-width: 480px) {
  .form-side {
    padding: 20px 16px 32px;
  }

  .card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .code-digit {
    width: 42px;
    height: 50px;
    font-size: 20px;
  }

  .btn-whatsapp {
    font-size: 14px;
    padding: 14px 20px;
  }

  .logo-img-sm {
    max-width: 130px;
  }

  .plans-page {
    padding: 32px 16px 24px;
  }

  .plans-header h1 {
    font-size: 26px;
  }

  .plan-card {
    padding: 28px 20px 24px;
  }

  .price-value {
    font-size: 28px;
  }
}

/* ========================================
   PLAN PAYMENT MODAL
   ======================================== */

.plan-pay-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}

.plan-pay-overlay.hidden {
  display: none !important;
}

.plan-pay-modal {
  background: #12122a;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px;
  padding: 36px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
}

.pay-step.hidden {
  display: none !important;
}

/* Loading */
.pay-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(201, 168, 76, 0.15);
  border-top-color: #c9a84c;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.pay-loading-text {
  color: #aaa;
  font-size: 14px;
}

/* Header */
.pay-header {
  margin-bottom: 20px;
}

.pay-plan-badge {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 12px;
  background: rgba(201, 168, 76, 0.1);
  color: #c9a84c;
}

.pay-plan-badge.classic { background: rgba(168,162,158,0.1); color: #a8a29e; }
.pay-plan-badge.premium { background: rgba(201,168,76,0.1); color: #c9a84c; }
.pay-plan-badge.master  { background: rgba(234,179,8,0.15); color: #eab308; }

.pay-header h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 4px;
}

.pay-plan-detail {
  font-size: 13px;
  color: #888;
}

/* Valor */
.pay-valor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 20px;
}

.pay-valor-label {
  font-size: 12px;
  color: #888;
}

.pay-valor-amount {
  font-size: 28px;
  font-weight: 800;
  color: #c9a84c;
}

/* QR Code */
.pay-qr-box {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  display: inline-block;
  margin-bottom: 12px;
}

.pay-qr-instruction {
  font-size: 13px;
  color: #888;
  margin-bottom: 14px;
}

/* Copia e Cola */
.pay-copiacola {
  margin-bottom: 14px;
}

.pay-copiacola-box {
  display: flex;
  gap: 8px;
}

.pay-copiacola-box input {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: #aaa;
  padding: 10px 12px;
  font-size: 11px;
  font-family: 'Courier New', monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pay-copy-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #c9a84c, #d4a017);
  border: none;
  border-radius: 8px;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.pay-copy-btn:hover {
  transform: scale(1.02);
}

.pay-copy-btn.copied {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
}

/* Timer */
.pay-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: rgba(234, 179, 8, 0.06);
  border: 1px solid rgba(234, 179, 8, 0.12);
  border-radius: 10px;
  color: #eab308;
  font-size: 13px;
  margin-bottom: 16px;
}

/* Actions */
.pay-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pay-btn-check {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #c9a84c, #d4a017);
  border: none;
  border-radius: 12px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.pay-btn-check:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.pay-btn-cancel {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: #888;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: color 0.2s;
}

.pay-btn-cancel:hover {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.2);
}

/* Success */
.pay-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #22c55e;
  margin: 0 auto 16px;
}

.pay-success-title {
  font-size: 22px;
  color: #22c55e;
  margin-bottom: 8px;
}

.pay-success-text {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.pay-btn-go {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pay-btn-go:hover {
  transform: translateY(-1px);
}

/* Fail */
.pay-fail-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ef4444;
  margin: 0 auto 16px;
}

.pay-fail-title {
  font-size: 22px;
  color: #ef4444;
  margin-bottom: 8px;
}

.pay-fail-text {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 24px;
}

.pay-btn-retry {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  color: #c9a84c;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pay-btn-retry:hover {
  background: rgba(201, 168, 76, 0.05);
}
