/* Support Section Styles */
.support-section {
  padding: 5rem 0;
  position: relative;
}

.support-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 42rem;
}

@media (min-width: 768px) {
  .support-container {
    padding: 0 2rem;
  }
}

.support-card {
  backdrop-filter: blur(12px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3), 0 0 40px rgba(168, 85, 247, 0.1);
}

@media (min-width: 768px) {
  .support-card {
    padding: 3rem;
  }
}

.support-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .support-title {
    font-size: 2.25rem;
  }
}

.support-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

.support-button {
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  background: linear-gradient(to right, oklch(0.65 0.19 290), oklch(0.70 0.18 200));
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3), 0 0 40px rgba(168, 85, 247, 0.1);
  transition: all 0.3s ease;
  margin: 0 auto;
}

.support-button:hover {
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.5), 0 0 60px rgba(168, 85, 247, 0.2);
  transform: translateY(-2px);
}

.support-button-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

