/* ----- LEGAL PAGES SHARED STYLES ----- */
/* Reusable styles for Terms of Service, Privacy Policy, and similar legal pages */

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 2rem;
}

.legal-title {
  font-size: 2rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.5rem;
}

.legal-intro {
  background-color: rgba(12, 18, 35, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.legal-intro p {
  margin-bottom: 0;
  color: #e2e8f0;
  line-height: 1.7;
}

.legal-content {
  text-align: left;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-subsection-title {
  font-size: 1rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 0.75rem;
  margin-top: 1.25rem;
}

.legal-section p {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.legal-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-agreement {
  font-size: 0.9rem;
  color: #64748b;
  font-style: italic;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
}

.legal-table th {
  font-weight: 600;
  color: #e2e8f0;
  background-color: rgba(12, 18, 35, 0.4);
}

.legal-table tr:hover td {
  background-color: rgba(255, 255, 255, 0.02);
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
}

.legal-list li {
  color: #cbd5e1;
  line-height: 1.7;
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(0, 175, 255, 0.6);
}

.legal-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 2rem 0;
}