body {
  margin: 0;
  font-family: 'Fredoka', 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
  background: linear-gradient(135deg, #fef6e4 0%, #f582ae 100%);
  color: #001858;
  min-height: 100vh;
  overflow-x: hidden;
}
.fun-header {
  position: relative;
  background: linear-gradient(90deg, #f582ae, #8ecae6, #ffb4a2, #ffd6e0);
  background-size: 400% 400%;
  animation: gradientMove 10s ease-in-out infinite;
  padding: 32px 0 48px 0;
  text-align: center;
  overflow: hidden;
}
@keyframes gradientMove {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}
.site-title {
  font-family: 'Fredoka', cursive, sans-serif;
  font-size: 2.5em;
  color: #fff;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 2px 4px 12px #f582ae88, 0 2px 8px #8ecae6aa;
  z-index: 2;
  position: relative;
}
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 1;
  animation: float 6s ease-in-out infinite alternate;
}
.shape1 {
  width: 80px; height: 80px;
  background: #ffb4a2;
  top: 10px; left: 10vw;
  animation-delay: 0s;
}
.shape2 {
  width: 60px; height: 60px;
  background: #8ecae6;
  top: 40px; right: 15vw;
  animation-delay: 2s;
}
.shape3 {
  width: 40px; height: 40px;
  background: #f582ae;
  bottom: 10px; left: 50vw;
  animation-delay: 1s;
}
@keyframes float {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-30px) scale(1.1); }
}
nav {
  background: #ffb4a2;
  display: flex;
  gap: 12px;
  padding: 16px;
  justify-content: center;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 2px 8px #f582ae44;
}
nav a {
  background: linear-gradient(90deg, #f582ae 60%, #8ecae6 100%);
  border-radius: 16px;
  padding: 12px 22px;
  font-size: 1.15em;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px #f582ae33;
  transition: background 0.3s, color 0.3s, transform 0.1s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
nav a.active, nav a:hover {
  background: linear-gradient(90deg, #8ecae6 60%, #f582ae 100%);
  color: #001858;
  transform: scale(1.12) rotate(-2deg);
  box-shadow: 0 4px 16px #8ecae644;
}
.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 32px;
}
.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px #f582ae55;
  border: 4px solid #8ecae6;
}
.animated-avatar {
  animation: bounceIn 1.5s cubic-bezier(.68,-0.55,.27,1.55) 1;
}
@keyframes bounceIn {
  0% { transform: scale(0.1); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  80% { transform: scale(0.95); }
  100% { transform: scale(1); }
}
.highlight {
  color: #f582ae;
  font-weight: bold;
  font-size: 1.1em;
  text-shadow: 0 2px 8px #ffd6e0aa;
}
.rainbow-text {
  background: linear-gradient(90deg, #f582ae, #ffb4a2, #8ecae6, #ffd6e0);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: 2em;
  font-family: 'Fredoka', cursive, sans-serif;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  animation: rainbow-move 6s linear infinite;
}
@keyframes rainbow-move {
  0% {background-position:0% 50%;}
  100% {background-position:100% 50%;}
}
.bouncy {
  animation: bouncy-text 1.2s ease-in-out;
  font-size: 1.15em;
  line-height: 1.6;
}
@keyframes bouncy-text {
  0% {transform: scale(0.8); opacity: 0.6;}
  60% {transform: scale(1.1); opacity: 1;}
  100% {transform: scale(1);}
}
main {
  flex: 1;
  padding: 32px 16px;
  max-width: 700px;
  margin: 0 auto;
}
.footer-bounce {
  display: inline-block;
  animation: footer-bounce 2s infinite alternate;
  color: #8ecae6;
  font-size: 1.1em;
  font-family: 'Fredoka', cursive, sans-serif;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #ffd6e0aa;
}
@keyframes footer-bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}
footer {
  text-align: center;
  padding: 18px 0 8px 0;
  background: linear-gradient(90deg, #ffd6e0 60%, #8ecae6 100%);
  color: #888;
  font-size: 1em;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -2px 8px #f582ae33;
}
.about-card {
  background: linear-gradient(120deg, #ffd6e0 60%, #8ecae6 100%);
  border-radius: 24px;
  box-shadow: 0 4px 24px #f582ae44;
  padding: 32px 24px 18px 24px;
  margin: 32px auto 24px auto;
  max-width: 500px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-list li {
  font-size: 1.15em;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff6fa;
  border-radius: 12px;
  box-shadow: 0 2px 8px #f582ae22;
  padding: 8px 0;
}
.icon {
  font-size: 1.3em;
}
.label {
  font-weight: bold;
  color: #f582ae;
}
.value {
  color: #001858;
}
.section-title {
  font-family: 'Fredoka', cursive, sans-serif;
  color: #f582ae;
  font-size: 2em;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.story-section {
  background: #fff6fa;
  border-radius: 18px;
  box-shadow: 0 2px 12px #8ecae644;
  margin: 24px auto;
  max-width: 650px;
  padding: 24px 22px 18px 22px;
}
.story-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #8ecae6;
  font-family: 'Fredoka', cursive, sans-serif;
}
.story-title.rainbow-text {
  background: linear-gradient(90deg, #f582ae, #ffb4a2, #8ecae6, #ffd6e0);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: rainbow-move 6s linear infinite;
}
.story-paragraph {
  font-size: 1.1em;
  color: #001858;
  margin-bottom: 0;
}
.adventure-card {
  background: #fef6e4;
  border-radius: 16px;
  box-shadow: 0 2px 8px #f582ae33;
  margin: 18px 0;
  padding: 20px 18px 12px 18px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.adventure-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 6px 24px #8ecae633;
}
.adventure-title {
  color: #f582ae;
  font-size: 1.15em;
  margin-bottom: 8px;
  font-family: 'Fredoka', cursive, sans-serif;
}
.grand-finale {
  background: linear-gradient(120deg, #ffd6e0 60%, #8ecae6 100%);
  border: 2px solid #f582ae;
}
.adventure-question {
  margin-top: 14px;
  font-weight: bold;
  color: #8ecae6;
  font-size: 1.1em;
  text-align: center;
}
@media (max-width: 800px) {
  .fun-header {
    padding: 24px 0 32px 0;
  }
  .site-title {
    font-size: 1.5em;
  }
  nav {
    flex-direction: column;
    gap: 8px;
    border-radius: 0 0 12px 12px;
    padding: 10px;
  }
  main {
    padding: 16px 4px;
  }
  .avatar {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 500px) {
  .site-title {
    font-size: 1.1em;
  }
  .rainbow-text {
    font-size: 1.1em;
  }
}
