body {
  font-family:monospace;
  text-align: center;
  max-width: 600px;
  padding: 0 20px;
  margin: 0 auto;
  background: linear-gradient(#14012b, #c8a8ff, #ffa8fc);
  min-height: 100vh;
}
blockquote {
  border-left: 3px solid #416722; /* Nepeta's blood color */
  padding-left: 15px;
  margin: 20px auto;
  max-width: 80%;
  text-align: left;
  color: #416722;
}

p {
  color: #29005c;
}

h1 {
  color: #f7c5ff;
}

h2 {
  color: #29005c;
}

ul {
  color: #29005c;
}

a {
  color: #a6fffe; 
}

a:hover {
  background-color: #ffa6ff;
}

hr {
  border: none;
  border-top: 4px dotted plum;
}
ul {
  list-style: none; 
  padding-left: 0;
  display: inline-block; /* 1. Shrinks the width to fit the content */
  text-align: left;      /* 2. Makes text align properly next to the bullet */
  margin: 0 auto 20px;   /* 3. Centers the whole list block on the screen */
}

li {
  position: relative;
  padding-left: 25px; 
  margin-bottom: 8px;
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); 
  width: 16px;                 
  height: 16px;                
  background-image: url('bullet heart.png');
  background-size: contain;
  background-repeat: no-repeat;
}
/* Base button styles */
.jelly-btn {
  padding: 12px 28px;
  font-family: 'Comic Sans MS', 'Comic Sans', monospace;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  background-color: #ffb3fc;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 6px 0 #cdb0ff; /* Flat 3D bottom shadow */
  transition: all 0.3s ease;
}

.jelly-btn:hover {
  background-color: #ffb3fc;
  transform: translateY(-2px); /* Lift up slightly */
  box-shadow: 0 8px 0 #cdb0ff;
  animation: jellyWobble 0.6s ease-in-out;
}

.jelly-btn:active {
  transform: translateY(4px); /* Press down effect */
  box-shadow: 0 2px 0 #cdb0ff;
}

/* Added missing jelly keyframe animation */
@keyframes jellyWobble {
  0% { transform: scale(1, 1) translateY(-2px); }
  30% { transform: scale(1.25, 0.75) translateY(-2px); }
  40% { transform: scale(0.75, 1.25) translateY(-2px); }
  50% { transform: scale(1.15, 0.85) translateY(-2px); }
  65% { transform: scale(0.95, 1.05) translateY(-2px); }
  75% { transform: scale(1.05, 0.95) translateY(-2px); }
  100% { transform: scale(1, 1) translateY(-2px); }
}
/* link button*/
.link-btn {
  display: flex;
 justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
  text-decoration: none;   /* Removes underline if it's an <a> tag */
  list-style-type: none;
  padding: 12px 28px;
  font-family: 'Comic Sans MS', 'Comic Sans', monospace;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  background-color: #ffb3fc;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 6px 0 #cdb0ff; /* Flat 3D bottom shadow */
  transition: all 0.3s ease;

}

.link-btn:hover {
  background-color: #ffb3fc;
  transform: translateY(-2px); /* Lift up slightly */
  box-shadow: 0 8px 0 #cdb0ff;
  animation: jellyWobble 0.6s ease-in-out;
}

.link-btn:active {
  transform: translateY(4px); /* Press down effect */
  box-shadow: 0 2px 0 #cdb0ff;
}

/* Added missing jelly keyframe animation */
@keyframes jellyWobble {
  0% { transform: scale(1, 1) translateY(-2px); }
  30% { transform: scale(1.25, 0.75) translateY(-2px); }
  40% { transform: scale(0.75, 1.25) translateY(-2px); }
  50% { transform: scale(1.15, 0.85) translateY(-2px); }
  65% { transform: scale(0.95, 1.05) translateY(-2px); }
  75% { transform: scale(1.05, 0.95) translateY(-2px); }
  100% { transform: scale(1, 1) translateY(-2px); }
}
