/* Legal pages specific styles */

.legal-page {
  overflow-y: auto;
}

.legal-page .header .logo {
  text-decoration: none;
  color: var(--text);
}

.legal-main {
  display: block;
  padding: 40px 48px 80px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.legal-content h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-content .last-updated {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 48px;
}

.legal-content section {
  margin-bottom: 36px;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

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

.legal-content ul {
  list-style: none;
  margin-bottom: 16px;
}

.legal-content li {
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.legal-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.legal-content li strong {
  color: var(--text);
}

.legal-content a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s;
}

.legal-content a:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-main {
    padding: 24px 24px 60px;
  }

  .legal-content h1 {
    font-size: 32px;
  }

  .legal-content h2 {
    font-size: 18px;
  }
}
