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

:root {
  --ink: #1e2a4a;
  --sun: #f7c65a;
  --sky: #8ec5fc;
  --lav: #e0c3fc;
  --card: #fffdf6;
}

body.kids-body {
  font-family: 'Fredoka', 'Comic Sans MS', sans-serif;
  background-color: var(--sun);
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.35) 10%, transparent 11%),
    radial-gradient(rgba(255, 255, 255, 0.22) 12%, transparent 13%);
  background-size: 30px 30px, 40px 40px;
  background-position: 0 0, 20px 20px;
  color: var(--ink);
}

a {
  color: var(--ink);
}

.page-shell {
  width: min(1100px, 96%);
  margin: 0 auto;
  padding: 16px 0 48px;
}

.page-intro {
  background: var(--card);
  border: 3px dashed #ff9f67;
  border-radius: 20px;
  padding: 16px 18px;
  margin: 10px auto 24px auto;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  line-height: 1.5;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: #fffaf1;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.back-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
}

.list-bubbles {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.list-bubbles li {
  background: #ffffffee;
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.list-bubbles strong {
  display: block;
  margin-bottom: 6px;
}

.hero-note {
  text-align: center;
  font-size: 1.15rem;
  margin: 12px auto 20px auto;
}

.info-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--sky), var(--lav));
  color: #0e1c38;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
