/* ==========================================
 * Support Page
 * ========================================== */

.support-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-16) var(--space-4);
}

.support-card {
  background: var(--color-bg-primary);
  border: var(--border-width-1) solid var(--color-border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-12) var(--space-16);
  text-align: center;
  max-width: 480px;
  width: 100%;
}

.support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--color-primary-50);
  color: var(--color-primary-500);
  margin-bottom: var(--space-6);
}

.support-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
  line-height: var(--line-height-tight);
}

.support-description {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
}

.support-divider {
  width: 40px;
  height: 2px;
  background: var(--gradient-brand-horizontal);
  border-radius: var(--radius-full);
  margin: var(--space-8) auto;
}

.support-cta-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-4);
}

.support-email-btn {
  font-size: var(--font-size-base);
  padding: var(--space-3) var(--space-8);
}

@media (max-width: 480px) {
  .support-card {
    padding: var(--space-8) var(--space-6);
  }
}
