* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Update body background to be less intense */
body {
  background: linear-gradient(135deg, #ff99cc, #ffb3d9, #ffe6f2, #ccf2ff, #b3e6ff, #d9b3ff);
  background-size: 400% 400%;
  animation: pastel-rainbow-bg 15s ease infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  padding: 10px 0;
  position: relative;
  overflow-x: hidden;
}

/* Cute floating bubbles in background */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 20px, transparent 20px),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.3) 30px, transparent 30px),
    radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.3) 25px, transparent 25px),
    radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.3) 15px, transparent 15px);
  background-size: 300px 300px;
  z-index: -1;
  animation: float-bubbles 30s linear infinite;
}

@keyframes float-bubbles {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 300px 300px;
  }
}

@keyframes pastel-rainbow-bg {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.container {
  width: 100%;
  max-width: 550px;
  padding: 10px;
  position: relative;
  z-index: 1;
}

/* Cute cloud shape for the card */
.checker-card {
  background-color: white;
  border-radius: 30px;
  padding: 20px;
  margin-bottom: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 192, 203, 0.4);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 6px solid transparent;
  background-clip: padding-box;
  transform-style: preserve-3d;
  transform: perspective(1000px);
  transition: transform 0.3s ease;
}

.checker-card:hover {
  transform: perspective(1000px) translateY(-5px) rotateX(2deg);
}

.checker-card::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  background: linear-gradient(45deg, #ff99cc, #ffb3d9, #ffe6f2, #ccf2ff, #b3e6ff, #d9b3ff);
  background-size: 400% 400%;
  z-index: -1;
  animation: pastel-rainbow-border 6s linear infinite;
  border-radius: 36px;
}

@keyframes pastel-rainbow-border {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Update text colors for better visibility */
h1 {
  background-image: linear-gradient(to right, #d14d8b, #e66da5, #e6a5a5, #6699cc, #9966cc, #cc66cc);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  font-size: 36px;
  position: relative;
  display: inline-block;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
  animation: pastel-rainbow-flow 3s linear infinite;
  letter-spacing: 1px;
}

/* Cute stars around heading */
h1::before,
h1::after {
  content: "✨";
  position: absolute;
  font-size: 24px;
  animation: twinkle 2s ease-in-out infinite alternate;
}

h1::before {
  left: -30px;
  top: 5px;
  animation-delay: 0.5s;
}

h1::after {
  right: -30px;
  top: 5px;
}

@keyframes twinkle {
  0% {
    opacity: 0.3;
    transform: scale(0.8) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: scale(1.2) rotate(15deg);
  }
}

@keyframes pastel-rainbow-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* Update text colors for better visibility */
.subtitle {
  color: #d14d8b;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

/* Fix the at-sign position to ensure it stays visible when input is focused */
.input-container {
  position: relative;
  margin-bottom: 15px;
}

input {
  width: 100%;
  padding: 15px 15px;
  border: 3px solid #ffccf2;
  border-radius: 30px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  padding-left: 45px; /* Space for @ sign at beginning */
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 15px rgba(255, 204, 242, 0.3);
}

input:focus {
  border-color: #ff66b2;
  box-shadow: 0 0 20px rgba(255, 102, 178, 0.4);
  transform: translateY(-2px);
}

/* Make the at-sign stay pink when input is focused */
.at-sign {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #d14d8b;
  font-size: 18px;
  font-weight: bold;
  z-index: 2; /* Ensure it stays above the input */
  pointer-events: none; /* This ensures clicks pass through to the input */
}

input:focus + .at-sign {
  color: #d14d8b; /* Keep the same color when input is focused */
}

.profile-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: #ffccf2;
  border: none;
  font-size: 20px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  transition: all 0.3s ease;
  color: #ff66b2;
  box-shadow: 0 3px 10px rgba(255, 102, 178, 0.2);
}

.profile-btn:hover {
  background-color: #ff99cc;
  transform: translateY(-50%) scale(1.1) rotate(10deg);
  box-shadow: 0 5px 15px rgba(255, 102, 178, 0.4);
}

/* Profile Image Container Styles */
.profile-image-hidden {
  display: none;
  height: 0;
  opacity: 0;
}

.profile-image-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  opacity: 0.7;
  position: relative;
}

.profile-image-visible {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  opacity: 1;
  margin-bottom: 15px;
  animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  position: relative;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

#profile-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(255, 102, 178, 0.3);
  border: 6px solid transparent;
  background-origin: border-box;
  background-clip: content-box, border-box;
  background-image: linear-gradient(white, white),
    linear-gradient(to right, #ff99cc, #ffb3d9, #ffe6f2, #ccf2ff, #b3e6ff, #d9b3ff);
  transition: all 0.3s ease;
  z-index: 1;
}

/* Cute flower petals around profile image */
.profile-image-visible::before,
.profile-image-visible::after {
  content: "";
  display: none;
}

.profile-image-overlay {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 204, 0.3),
    rgba(255, 179, 217, 0.3),
    rgba(255, 230, 242, 0.3),
    rgba(204, 242, 255, 0.3),
    rgba(179, 230, 255, 0.3),
    rgba(217, 179, 255, 0.3)
  );
  background-size: 400% 400%;
  animation: pastel-rainbow-bg 5s linear infinite;
  z-index: 0;
}

#profile-image:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(255, 102, 178, 0.4);
}

/* Update button text color for better visibility */
button {
  background: linear-gradient(to right, #ff99cc, #ffb3d9, #ffe6f2, #ccf2ff, #b3e6ff, #d9b3ff);
  background-size: 400% 400%;
  animation: button-bg 5s linear infinite;
  color: #d14d8b;
  border: none;
  border-radius: 30px;
  padding: 12px 0;
  width: 100%;
  font-size: 18px;
  cursor: pointer;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 20px rgba(255, 153, 204, 0.4);
  position: relative;
  overflow: hidden;
}

/* Cute shine effect on button */
button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(30deg);
  transition: all 0.7s ease;
}

button:hover::after {
  left: 130%;
}

@keyframes button-bg {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Update button text color for better visibility */
button:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 25px rgba(255, 153, 204, 0.5);
  animation: button-bg 2.5s linear infinite;
  color: #b3365c;
}

button:active {
  transform: translateY(0);
}

button#check-button::before {
  content: "🔍";
  margin-right: 10px;
  font-size: 20px;
  animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-3px);
  }
}

.result-hidden {
  display: none;
  height: 0;
  opacity: 0;
}

.result {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 25px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: 0 10px 25px rgba(255, 153, 204, 0.3);
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
}

@keyframes popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.result::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, #ff99cc, #ffb3d9, #ffe6f2, #ccf2ff, #b3e6ff, #d9b3ff);
  background-size: 400% 400%;
  z-index: -1;
  animation: pastel-rainbow-border 5s linear infinite;
  border-radius: 28px;
}

/* Cute decorative elements in result */
.result::after {
  content: "✨";
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  animation: twinkle 2s ease-in-out infinite alternate;
}

/* Update username color */
.username {
  color: #d14d8b;
  font-weight: 700;
  font-size: 22px;
  position: relative;
  display: inline-block;
}

/* Cute underline for username */
.username::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #ff99cc, #ffb3d9, #ffe6f2);
  border-radius: 10px;
}

/* Update disclaimer text color */
.disclaimer {
  font-size: 14px;
  color: #d14d8b;
  margin: 10px 0;
  font-style: italic;
  padding: 8px;
  border-radius: 20px;
  background-color: transparent;
  box-shadow: none;
  position: relative;
}

/* Cute heart decorations for disclaimer */
.disclaimer::before,
.disclaimer::after {
  content: "";
  display: none;
}

/* Update footer text color */
.footer {
  font-size: 16px;
  color: #d14d8b;
  margin-top: 10px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 5px;
}

/* Cute paw prints in footer */
.footer::before,
.footer::after {
  content: "";
  display: none;
}

/* Update footer text color */
.footer a {
  color: #b3365c;
  text-decoration: none;
  border-bottom: 2px dotted rgba(255, 51, 133, 0.5);
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
  padding: 0 5px;
}

.footer a:hover {
  color: #ff0066;
  border-bottom: 2px solid #ff0066;
  text-shadow: 0 0 10px rgba(255, 102, 178, 0.6);
  background-color: rgba(255, 230, 242, 0.7);
  border-radius: 10px;
  transform: scale(1.05);
}

/* Update rainbow text colors */
.rainbow-text {
  background-image: linear-gradient(to right, #d14d8b, #e66da5, #e6a5a5, #6699cc, #9966cc, #cc66cc);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  font-size: 24px;
  animation: pastel-rainbow-flow 3s linear infinite;
  text-shadow: none;
  display: inline-block;
  margin-top: 10px;
  position: relative;
}

/* Cute stars around rainbow text */
.rainbow-text::before,
.rainbow-text::after {
  content: "⭐";
  position: absolute;
  font-size: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.rainbow-text::before {
  left: -20px;
}

.rainbow-text::after {
  right: -20px;
}

/* Loading spinner */
.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ffe6f2;
  border-top: 5px solid transparent;
  border-radius: 50%;
  position: relative;
  animation: spin 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
  margin: 20px auto;
}

.loading-spinner::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff99cc, #ffb3d9, #ffe6f2, #ccf2ff, #b3e6ff, #d9b3ff);
  background-size: 400% 400%;
  animation: pastel-rainbow-spinner 3s linear infinite;
  z-index: -1;
}

/* Cute heart in center of spinner */
.loading-spinner::after {
  content: "💖";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  animation: pulse-heart 1s infinite alternate;
}

@keyframes pulse-heart {
  from {
    transform: translate(-50%, -50%) scale(0.8);
  }
  to {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes pastel-rainbow-spinner {
  0% {
    background-position: 0% 50%;
    transform: rotate(0deg);
  }
  100% {
    background-position: 100% 50%;
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Update witty comment color */
.witty-comment {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 20px;
  color: #d14d8b;
  font-style: italic;
  position: relative;
  padding: 15px;
  background-color: rgba(255, 230, 242, 0.5);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(255, 153, 204, 0.2);
}

/* Cute quote marks for witty comment */
.witty-comment::before,
.witty-comment::after {
  content: "❝";
  position: absolute;
  font-size: 30px;
  color: rgba(255, 102, 178, 0.3);
}

.witty-comment::before {
  left: 5px;
  top: -5px;
}

.witty-comment::after {
  content: "❞";
  right: 5px;
  bottom: -15px;
}

/* Result with profile picture */
.result-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
  position: relative;
  background-color: rgba(255, 230, 242, 0.3);
  padding: 15px;
  border-radius: 25px;
  box-shadow: 0 8px 20px rgba(255, 153, 204, 0.2);
}

/* Cute cloud shape for result container */
.result-container::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 20px;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 230, 242, 0.3);
  border-radius: 50%;
  box-shadow: 30px -10px 0 -5px rgba(255, 230, 242, 0.3), 60px -5px 0 -8px rgba(255, 230, 242, 0.3);
}

@keyframes rainbow-appear {
  0% {
    transform: translateY(20px) scale(0);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.result-profile-pic {
  position: relative;
  width: 80px;
  height: 80px;
  margin-right: 15px;
  margin-bottom: 10px;
}

.result-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(255, 102, 178, 0.3);
  border: 5px solid transparent;
  background-origin: border-box;
  background-clip: content-box, border-box;
  background-image: linear-gradient(white, white),
    linear-gradient(to right, #ff99cc, #ffb3d9, #ffe6f2, #ccf2ff, #b3e6ff, #d9b3ff);
  z-index: 1;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(3deg);
  }
}

.result-text {
  flex: 1;
  min-width: 250px;
  text-align: left;
  padding: 15px;
  position: relative;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(255, 153, 204, 0.2);
}

/* Cute speech bubble shape */
.result-text::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 20px;
  border-width: 15px 15px 15px 0;
  border-style: solid;
  border-color: transparent white transparent transparent;
}

@media (max-width: 480px) {
  .result-container {
    flex-direction: column;
  }

  .result-profile-pic {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .result-text {
    text-align: center;
    padding: 10px;
  }

  .result-text::before {
    left: 50%;
    top: -15px;
    transform: translateX(-50%) rotate(90deg);
  }

  .container {
    padding: 8px;
  }

  .result {
    padding: 15px;
  }

  h1 {
    font-size: 30px;
  }

  h1::before,
  h1::after {
    font-size: 20px;
  }

  h1::before {
    left: -25px;
  }

  h1::after {
    right: -25px;
  }

  .checker-card {
    padding: 15px;
  }
}

.gay-pride-flags {
  display: flex;
  justify-content: center;
  margin: 8px 0;
}

.pride-flag {
  font-size: 40px;
  margin: 0 10px;
  display: inline-block;
  animation: wave-flag 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
}

.pride-flag:nth-child(1) {
  animation-delay: 0s;
}

.pride-flag:nth-child(2) {
  animation-delay: 0.5s;
}

@keyframes wave-flag {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(10deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(-10px) rotate(-5deg);
  }
}

/* Gay Meter */
.gay-meter-container {
  margin: 10px 0;
  padding: 8px;
  background: rgba(255, 230, 242, 0.5);
  border-radius: 20px;
  position: relative;
  box-shadow: 0 5px 15px rgba(255, 153, 204, 0.2);
}

/* Cute decorations for gay meter */
.gay-meter-container::before,
.gay-meter-container::after {
  content: "";
  display: none;
}

.gay-meter {
  height: 35px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 15px rgba(255, 153, 204, 0.2);
}

.gay-meter-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #ff99cc, #ffb3d9, #ffe6f2, #ccf2ff, #b3e6ff, #d9b3ff);
  background-size: 200% 100%;
  animation: pastel-rainbow-flow 3s linear infinite;
  border-radius: 20px;
  position: relative;
}

/* Cute hearts floating in meter */
.gay-meter-fill::before {
  content: "💖";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  animation: bounce 1.5s infinite alternate;
}

/* Update gay meter label color */
.gay-meter-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #d14d8b;
  text-shadow: 0 0 5px rgba(255, 255, 255, 1);
  font-weight: bold;
  font-size: 18px;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.9);
  z-index: 2;
}

.gay-emoji-row {
  margin: 8px 0;
  font-size: 22px;
  letter-spacing: 8px;
  animation: pulse-emojis 2s infinite alternate;
  text-align: center;
}

@keyframes pulse-emojis {
  from {
    opacity: 0.8;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.1);
  }
}

.share-button {
  background: linear-gradient(to right, #ff99cc, #ffb3d9);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  box-shadow: 0 5px 15px rgba(255, 153, 204, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Cute decorations for share button */
.share-button::before {
  content: "🎀";
  margin-right: 8px;
  font-size: 16px;
}

.share-button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(30deg);
  transition: all 0.7s ease;
}

.share-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 153, 204, 0.4);
}

.share-button:hover::after {
  left: 130%;
}

/* Cute clouds floating in background */
@keyframes float-cloud {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Add sparkle animations */
@keyframes sparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Add heart beat animation */
@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Add kawaii decorative elements */
.checker-card::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  background: linear-gradient(45deg, #ff99cc, #ffb3d9, #ffe6f2, #ccf2ff, #b3e6ff, #d9b3ff);
  background-size: 400% 400%;
  z-index: -1;
  animation: pastel-rainbow-border 6s linear infinite;
  border-radius: 36px;
}

/* Add cute paw prints that appear randomly */
@keyframes paw-appear {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
}

/* Add cute stars that twinkle */
@keyframes twinkle-star {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}
