/* Page Content */
.page-content {
  padding: 140px 0 80px;
  min-height: 100vh;
  background: var(--darker);
}

.page-header {
  text-align: center;
  margin-bottom: 64px;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  color: var(--gray);
}

/* Support Page */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.support-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.support-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.support-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.support-card p {
  color: var(--gray);
  margin-bottom: 24px;
}

.premium-tag {
  display: inline-block;
  background: var(--gold);
  color: #1a1a2e;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

/* FAQ */
.faq-section {
  margin-bottom: 80px;
}

.faq-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(255,255,255,0.02);
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 600;
}

.faq-toggle {
  font-size: 24px;
  color: var(--primary);
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 24px;
}

.faq-answer p {
  color: var(--gray);
  line-height: 1.7;
}

/* Contact */
.contact-section {
  text-align: center;
  padding: 48px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.contact-section h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.contact-item {
  color: var(--gray);
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 16px;
  color: #fff;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul {
  color: var(--gray);
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-content strong {
  color: #fff;
}

.last-updated {
  text-align: center;
  color: var(--gray);
  font-size: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 768px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 16px;
  }
  
  .legal-content {
    padding: 24px;
  }
  
  .page-header h1 {
    font-size: 32px;
  }
}
