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

body {
  font-family: "Comic Sans MS", "Segoe Print", cursive, sans-serif;
  color: #3e2f1c;
  min-height: 100vh;
  position: relative;
  padding-bottom: 60px;
  overflow-x: hidden;
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(120deg, #ffdde1, #d4f5ff, #e6ffe6, #fff3d1, #ffdde1);
  background-size: 400% 400%;
  animation: gradshift 20s ease infinite;
}

@keyframes gradshift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.mascot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 5;
  animation: bob 4s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-12px) rotate(3deg); }
}

.sparkle {
  position: fixed;
  z-index: 1;
  color: #ffd1dc;
  animation: twinkle 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50%      { opacity: 1;   transform: scale(1.3); }
}

.header {
  text-align: center;
  padding: 40px 20px 10px;
}
.header h1 {
  font-size: 3em;
  color: #8b5a2b;
  text-shadow: 2px 2px 0 #ffe0b2;
}
nav a {
  display: inline-block;
  margin: 8px 10px;
  padding: 6px 12px;
  background: #fff8ef;
  border: 2px dashed #c8a165;
  border-radius: 12px;
  text-decoration: none;
  color: #6b4f23;
}
nav a:hover { background: #ffe0b2; }

.content {
  max-width: 640px;
  margin: 30px auto;
  padding: 20px 26px;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  border: 3px solid #d9ae6c;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  line-height: 1.7;
}
h2 {
  color: #a9713a;
  margin: 18px 0 8px;
  border-bottom: 2px dotted #d9ae6c;
}
ul { padding-left: 22px; }
.photos { display: flex; gap: 12px; flex-wrap: wrap; }
.photo {
  flex: 1 1 120px;
  background: #eafbea;
  border: 2px dashed #8fbf8f;
  border-radius: 14px;
  padding: 20px 10px;
  text-align: center;
  font-size: 0.9em;
}

footer {
  text-align: center;
  padding: 20px 0;
  color: #8b5a2b;
}
footer a { color: #a9713a; }