.payment-wrapper {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.payment-card {
  width: 100%;
  max-width: 480px;
  padding: 3rem 2.5rem;
  text-align: center;
  border-radius: 1.5rem;
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xl);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

.icon-success {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
  animation: pulseGlowSuccess 2s infinite alternate;
}

.icon-fail {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.2);
}

.icon-cancel {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.payment-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.payment-desc {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.tran-id-box {
  background: rgba(0, 0, 0, 0.03);
  border: 1px dashed var(--border-color);
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-family: monospace;
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

[data-theme='dark'] .tran-id-box {
  background: rgba(255, 255, 255, 0.03);
}

@keyframes pulseGlowSuccess {
  0% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.2); }
  100% { box-shadow: 0 0 40px rgba(16, 185, 129, 0.5); }
}
