/* ══════════════════════════════════════════════════════════
   LEGAL & ABOUT PAGES STYLING
   Ultra-premium, text-friendly styling for policies and content.
══════════════════════════════════════════════════════════ */

.page-section {
  position: relative;
  min-height: 100vh;
  padding: 160px 24px 80px;
  background: var(--hero-bg);
  overflow: hidden;
  color: var(--white);
  font-family: var(--f);
}

/* Background Atmosphere */
.page-bg-orb {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.page-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.page-header {
  text-align: center;
  margin-bottom: 50px;
}
.page-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  background: linear-gradient(to right, #ffffff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-subtitle {
  font-size: 1.1rem;
  color: var(--white-70);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content Box (Glassmorphism) */
.page-content-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 50px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Typography inside the box */
.page-content-box h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.page-content-box h2:first-child {
  margin-top: 0;
}
.page-content-box h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #c4b5fd;
}
.page-content-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--white-70);
  margin-bottom: 20px;
}
.page-content-box ul, .page-content-box ol {
  margin-bottom: 24px;
  padding-left: 20px;
  color: var(--white-70);
}
.page-content-box li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.page-content-box a {
  color: #a78bfa;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.page-content-box a:hover {
  color: #c4b5fd;
}

/* Highlight boxes for critical disclaimers */
.legal-warning {
  background: rgba(239, 68, 68, 0.08);
  border-left: 4px solid #ef4444;
  padding: 16px 20px;
  border-radius: 4px;
  margin: 30px 0;
}
.legal-warning p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Responsiveness */
@media (max-width: 768px) {
  .page-section { padding: 130px 16px 60px; }
  .page-content-box { padding: 30px 20px; border-radius: 14px; }
  .page-content-box h2 { font-size: 1.5rem; }
  .page-content-box p, .page-content-box li { font-size: 1rem; }
}
