@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700&display=swap');

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

body {
  font-family: 'Nunito', sans-serif;
  background: #fff;
  color: #1a1a2e;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }

/* ── Nav ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  border-bottom: 1px solid #f0f0f0;
}

.nav-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 26px;
  background: linear-gradient(90deg, #FF6B6B, #FFD93D, #4D96FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  color: #555;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover { color: #FF6B6B; }

/* ── Footer ── */
.footer {
  margin-top: auto;
  padding: 24px 40px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: #888;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 12px;
  color: #bbb;
}

/* ── Content pages (legal, faq, contact) ── */
.page-wrap {
  max-width: 680px;
  margin: 60px auto;
  padding: 0 32px;
  flex: 1;
}

.page-wrap h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 36px;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.page-wrap .page-meta {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 40px;
}

.page-wrap h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 20px;
  color: #1a1a2e;
  margin: 36px 0 10px;
}

.page-wrap p {
  font-size: 15px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 14px;
}

.page-wrap ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.page-wrap ul li {
  font-size: 15px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 6px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 13px 28px;
  font-family: 'Fredoka One', cursive;
  font-size: 15px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary:hover { opacity: 0.88; }

/* ── Responsive ── */
@media (max-width: 600px) {
  .nav { padding: 16px 20px; }
  .nav-links { gap: 16px; }
  .footer { padding: 20px; flex-direction: column; align-items: flex-start; }
  .page-wrap { margin: 36px auto; padding: 0 20px; }
}
