/* 🌊 Blue Cute Theme CSS */

body {
  background: #eef6ff;
  color: #1c2a49;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: auto;
  background: #d8eaff;
  border: 2px dashed #91caff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(145, 202, 255, 0.6);
}

header h1 {
  color: #2471ff;
  font-size: 2.5em;
  text-align: center;
}

header p {
  text-align: center;
  font-size: 1.2em;
  color: #5179bd;
}

nav {
  margin: 20px 0;
  text-align: center;
}

nav a {
  text-decoration: none;
  color: #ffffff;
  background: #5a9fff;
  padding: 10px 15px;
  margin: 0 5px;
  border-radius: 8px;
  transition: background 0.3s;
}

nav a:hover {
  background: #2471ff;
}

main section {
  margin-bottom: 20px;
  background: #e6f2ff;
  padding: 15px;
  border-radius: 10px;
  border: 1px dotted #a3d1ff;
}

main h2 {
  color: #2471ff;
  margin-bottom: 10px;
}

footer {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9em;
  color: #547c9d;
}

.pixel-gallery {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.pixel-gallery img {
  width: 100px;
  height: auto;
  image-rendering: auto;
  border: 2px solid #a3d1ff;
  border-radius: 8px;
  background: #d8eaff;
  padding: 5px;
}

.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #91caff 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: sparkle-fade 0.5s ease-out;
  z-index: 9999;
}

@keyframes sparkle-fade {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
