/* Legal Pages CSS - Simplified Clean Version */
:root {
  --bg: #000000;
  --bg-soft: #111111;
  --fg: #ffffff;
  --fg-soft: #e5e5e5;
  --fg-alt: #999999;
  --accent: #ffffff;
  --border: #333333;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Remove particles entirely */
.floating-particles {
  display: none;
}

.page-container {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
}

.content-wrapper {
  width: 100%;
  max-width: 800px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.header-section {
  padding: 2.5rem 2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

/* Simplified icon - no animations */
.icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.subtitle {
  font-size: 0.9rem;
  color: var(--fg-alt);
  font-weight: 400;
  line-height: 1.5;
}

.legal-container {
  padding: 2.5rem 2rem;
}

.effective-date {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  text-align: center;
}

.section {
  margin-bottom: 2.5rem;
}

.section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.section p {
  margin-bottom: 1rem;
  color: var(--fg-soft);
  line-height: 1.7;
}

.section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.section li {
  margin-bottom: 0.5rem;
  color: var(--fg-soft);
}

.section ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin: 1.5rem 0 0.75rem;
}

.highlight-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
  font-size: 0.9rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Simplified social credit */
.kanji-credit {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  color: var(--fg-alt);
  opacity: 0.5;
  font-family: 'Noto Sans JP', sans-serif;
  user-select: none;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .page-container {
    padding: 1rem 0.75rem;
  }

  .header-section {
    padding: 2rem 1.5rem 1.25rem;
  }

  .legal-container {
    padding: 2rem 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  .section h2 {
    font-size: 1.15rem;
  }

  .kanji-credit {
    bottom: 0.5rem;
    right: 0.5rem;
    font-size: 0.65rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: high) {
  .section h2 {
    border-bottom-width: 2px;
  }
  
  .effective-date,
  .highlight-box {
    border-width: 2px;
  }
  
  a {
    text-decoration: underline;
  }
}
