* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  font-weight: 400;
  color: #ffffff;
  background-color: #0a0a0a;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background-color: #0a0a0a;
  color: #ffffff;
}

.legal-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.legal-header img {
  height: 35px;
  width: auto;
  border-radius: 4px;
}

.legal-logo {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.legal-logo:hover {
  color: rgba(255, 255, 255, 0.7);
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 140px 32px 80px;
}

.legal-hero {
  text-align: center;
  margin-bottom: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.legal-updated {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.legal-content {
  color: rgba(255, 255, 255, 0.75);
}

.legal-intro {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 60px;
  color: rgba(255, 255, 255, 0.8);
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.legal-section {
  margin-bottom: 60px;
}

.legal-section-title {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #ffffff;
}

.legal-section-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.9;
  font-size: 0.95rem;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 24px;
  padding-left: 32px;
}

.legal-content li {
  margin-bottom: 12px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.legal-content strong {
  color: #ffffff;
  font-weight: 500;
}

.legal-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 60px 0;
  border: none;
}

.legal-contact {
  margin-top: 80px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.legal-contact h3 {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.legal-contact p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.legal-contact a {
  color: #ffffff;
  text-decoration: underline;
  transition: 0.3s;
}

.legal-contact a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.legal-footer {
  background-color: #050505;
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.legal-footer .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

.legal-footer p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.legal-footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.legal-footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: 0.3s;
}

.legal-footer-links a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .legal-container {
    padding: 120px 24px 60px;
  }

  .legal-hero {
    margin-bottom: 60px;
  }

  .legal-title {
    font-size: 1.8rem;
    letter-spacing: 4px;
  }

  .legal-intro {
    padding: 24px;
    font-size: 1rem;
  }

  .legal-section {
    margin-bottom: 40px;
  }

  .legal-section-title {
    font-size: 1.2rem;
  }

  .legal-contact {
    padding: 32px 24px;
  }

  .legal-footer-links {
    flex-direction: column;
    gap: 16px;
  }
}
