/* base */
body {
  margin: 0;
  background: linear-gradient(180deg, #fff7fb, #f3fbff);
  font-family: 'Nunito', sans-serif;
  color: #3a3a3a;
  overflow-x: hidden;
  cursor: url("cat-normal.png") 32 32, auto;
}

a,
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
[role="button"] {
  cursor: url("cat-click.png") 32 32, pointer;
}

/* layout */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.card {
  background: white;
  padding: 35px;
  border-radius: 24px;
  text-align: center;
  width: 360px;
  box-shadow: 0 15px 35px rgba(255, 182, 217, 0.25);
}

/* profile */
.profile-pic {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffb3d9;
  margin-bottom: 10px;
}

/* text */
h1 {
  font-family: 'Fredoka', sans-serif;
  margin: 10px 0 5px 0;
}

.bio {
  margin-bottom: 25px;
  font-size: 14px;
}

/* links */
.link-button {
  display: block;
  padding: 14px;
  margin: 12px 0;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(135deg, #ffb3d9, #aee6ff, #c7f7c9);
  color: white;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.link-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 182, 217, 0.35);
}

/* decorative gif */
.decor-gif {
  margin-top: 15px;
  width: 120px;
}

/* background sparkles */
.sparkle-bg {
  position: fixed;
  top: -10px;
  width: 6px;
  height: 6px;
  background: #ffd6f3;
  border-radius: 50%;
  opacity: 0.8;
  animation: fall 8s linear infinite;
}

@keyframes fall {
  to {
    transform: translateY(110vh);
    opacity: 0;
  }
}

.sparkle {
  position: fixed;
  width: 14px;
  height: 14px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: sparkleFade 0.7s ease-out forwards;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.9));
  z-index: 9999;
}

.sparkle svg {
  width: 100%;
  height: 100%;
}

@keyframes sparkleFade {
  from {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -50%) scale(1.8) rotate(90deg);
    opacity: 0;
  }
}

