.billing-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f4f8fb, #e6f4fb);
  display: flex;
  align-items: center;
  justify-content: center;
}

.billing-container {
  width: 100%;
  max-width: 480px;
  padding: 20px;
}

.branding {
  text-align: center;
  margin-bottom: 20px;
}

.branding h1 {
  font-size: 26px;
  font-weight: 700;
}

.branding p {
  font-size: 14px;
  color: #777;
}

.billing-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  animation: fadeIn 0.4s ease;
}

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

.status-icon {
  font-size: 42px;
  margin-bottom: 15px;
}

.status-icon.success { color: #22c55e; }
.status-icon.error { color: #ef4444; }
.status-icon.loading { color: #f59e0b; }

.billing-card h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.billing-card p {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
}

.info-box {
  background: #f3f4f6;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.info-box span {
  display: block;
  font-size: 12px;
  color: #888;
}

.info-box strong {
  font-size: 14px;
}

.actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.btn-primary {
  background: #1678A8;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: #125f86;
  color: #ffffff; /* 🔥 IMPORTANT FIX */
}

.btn-secondary {
  background: #111;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: #000;
  color: #ffffff; /* 🔥 IMPORTANT FIX */
}

.footer-note {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  color: #888;
}

.auto-redirect {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}