body {
  font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
  background: linear-gradient(135deg, #fbeee6 0%, #f8b195 100%);
  margin: 0;
  min-height: 100vh;
  color: #4b2e05;
}
header {
  background: #f67280;
  color: white;
  padding: 1em 0;
  text-align: center;
}
.swirl-font {
  font-family: 'Comic Neue', cursive;
  letter-spacing: 2px;
}
nav {
  margin-top: 0.5em;
}
nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 1em;
  font-weight: bold;
  transition: color 0.3s, background 0.3s;
  padding: 0.2em 0.7em;
  border-radius: 20px;
}
nav a:hover, .back-home:hover {
  background: #c06c84;
  color: #fbeee6;
}
main {
  max-width: 700px;
  margin: 2em auto;
  background: rgba(255,255,255,0.7);
  padding: 2em;
  border-radius: 18px;
  box-shadow: 0px 2px 12px #c06c843c;
  text-align: center;
}
.feature-img {
  width: 260px;
  border-radius: 18px;
  margin-bottom: 1em;
  border: 3px solid #355c7d;
  box-shadow: 0 0 16px #f672809c;
  transition: transform 0.3s;
}
.feature-img:hover {
  transform: rotate(-3deg) scale(1.03);
  box-shadow: 0 0 32px #c06c84cc;
}
.bold {
  font-weight: bold;
}
.highlight {
  color: #6c3483;
  font-size: 1.15em;
}
.flavor-list {
  display: flex;
  justify-content: space-around;
  margin: 2em 0;
}
.flavor-card {
  background: #f8b195;
  border-radius: 14px;
  padding: 1em;
  width: 32%;
  box-shadow: 0 0 8px #355c7d44;
  transition: transform 0.3s, background 0.3s;
  cursor: pointer;
}
.flavor-card:hover {
  background: #355c7d;
  color: #fff;
  transform: scale(1.07) rotate(-2deg);
}
.mini-img {
  width: 70px;
  display: block;
  margin: 0 auto 0.5em;
  border-radius: 50%;
  border: 2px solid #f67280;
}
.fun-facts {
  text-align: left;
  max-width: 400px;
  margin: 1.5em auto;
}
footer {
  background: #355c7d;
  color: #fff;
  text-align: center;
  padding: 1em 0;
  margin-top: 2em;
  border-radius: 0 0 18px 18px;
  font-size: 1em;
  letter-spacing: 1px;
  position: relative;
  bottom: 0;
  width: 100%;
}
.center-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.back-home {
  color: #fff;
  background: #f67280;
  padding: 0.7em 1.2em;
  border-radius: 18px;
  text-decoration: none;
  font-size: 1.1em;
  margin-top: 1em;
  transition: background 0.3s;
}
@media (max-width: 700px) {
  .flavor-list {
    flex-direction: column;
    align-items: center;
  }
  .flavor-card {
    width: 80%;
    margin-bottom: 1em;
  }
}pr