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

body {
  background: #ffe6f0;
  color: #4c2a4c;
  font-family: "Comic Sans MS", "Segoe UI", cursive;
  padding: 20px;
  position: relative;
  min-height: 100vh;
}

h1, h2 {
  color: #ff77aa;
  text-shadow: 1px 1px #fff0f5;
}

header {
  text-align: center;
  margin-bottom: 30px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

nav a {
  text-decoration: none;
  color: #ff77aa;
  font-weight: bold;
  background: #fff0f5;
  padding: 5px 10px;
  border-radius: 12px;
  transition: 0.2s;
}

nav a:hover {
  background: #ffccdd;
  color: #fff;
}

main {
  text-align: center;
}

.anime-girl {
  width: 200px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 0 15px #ffbbdd;
}

footer {
  margin-top: 50px;
  text-align: center;
  font-size: 0.9em;
  color: #aa88aa;
}

.secret-link {
  display: block;
  margin-top: 5px;
  color: #ffccee;
  font-size: 0.7em;
  opacity: 0.1;
  transition: opacity 0.4s ease;
}

.secret-link:hover {
  opacity: 1;
}

.sparkle-bg::before {
  content: "✨";
  position: fixed;
  font-size: 20px;
  animation: sparkle 6s infinite;
  opacity: 0.2;
  pointer-events: none;
}

@keyframes sparkle {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(100vw, 100vh) rotate(360deg); }
}

html, body {
  overflow-x: hidden; /* Prevents horizontal scroll */
}

.secret-link {
  display: inline-block;
  font-size: 1.2em;
  opacity: 0.05;
  text-align: center;
  margin-top: 20px;
  transition: opacity 0.4s, transform 0.4s;
  will-change: transform;
}

.secret-link:hover {
  opacity: 1;
  color: #ff69b4;
  transform: scale(1.05);
}


.pastel-list {
  list-style-type: none;
  padding-left: 0;
  margin: 1em auto;
  display: inline-block;
  text-align: left;
}

.pastel-list li::before {
  content: "* ";
  color: #ff99cc;
}