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

body {
  background-color: #e8e8e0;
  color: #1a1a2e;
  font-family: "Silkscreen", cursive;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 2.5rem;
}

.title {
  font-family: "Press Start 2P", cursive;
  font-size: 3.5rem;
  letter-spacing: 8px;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
}

.tagline-box {
  max-width: 520px;
}

.tagline {
  font-family: "Silkscreen", cursive;
  font-size: 1.125rem;
  line-height: 2.2;
  color: #333;
}

.features {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.feature {
  font-family: "Press Start 2P", cursive;
  font-size: 0.625rem;
  letter-spacing: 1px;
  color: #666;
}

.dot {
  color: #999;
}

/* Footer */

.footer {
  margin-top: 1rem;
}

.footer-link {
  font-family: "Silkscreen", cursive;
  font-size: 0.75rem;
  color: #999;
  text-decoration: none;
}

.footer-link:hover {
  color: #666;
  text-decoration: underline;
}

/* Privacy Policy page */

.policy-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
}

.back-link {
  color: #666;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.back-link:hover {
  color: #1a1a2e;
}

.policy-title {
  margin-bottom: 0.5rem;
}

.policy-date {
  color: #999;
  margin-bottom: 2rem;
}

.policy-content {
  text-align: left;
  font-family: "Jersey 25", sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
}

.policy-content section {
  margin-bottom: 2rem;
}

.policy-content h2 {
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
}

.policy-content h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.policy-content h2,
.policy-content h3,
.policy-content a,
.policy-content strong,
.policy-content p,
.policy-content ul,
.policy-content li {
  font-family: "Jersey 25", sans-serif;
  word-spacing: 0em;
}

.policy-content p {
  margin-bottom: 0.75rem;
}

.policy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content li {
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.policy-content a {
  color: #2a6e3f;
}

.policy-page .snes-button {
  display: inline-block;
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .title {
    font-size: 2rem;
    letter-spacing: 4px;
  }

  .tagline {
    font-size: 1rem;
  }

  .feature {
    font-size: 0.5rem;
  }
}
