
    body {
      font-family: serif;
      
      min-height: 100vh;
      margin: 0;
      overflow-x: hidden;
      background: radial-gradient(circle at top, #ffe6f2 0, #ffc2e0 30%, #ff9ecb 55%, #f48fb1 80%, #f06292 100%);
      background-attachment: fixed;
      background-repeat: no-repeat;
      background-size: cover;
    }
#gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
}

    h1 {
      text-align: center;
  color: #fff;
  font-size: 42px;
  font-family: "Comic Sans MS", "Poppins", cursive;
  letter-spacing: 2px;

  
  text-shadow:
    0 0 8px #ffbde6,
    0 0 16px #ff8ad8,
    0 0 24px #ff61c6,
    0 0 32px #ff2eb8,
    0 0 40px #ff009e;

  
  text-decoration: underline;
  text-decoration-color: #ffbde6;

  
  animation: nekoBounce 2s ease-in-out infinite;
}


@keyframes nekoBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
    #nekoImage {
      max-width: 80%;
      height: auto;
      display: block;
      margin: 20px auto;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    .controls {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 10px;
      align-items: center;
    }

    select {
      padding: 10px 15px;
      font-size: 16px;
      border-radius: 50px;
      border: 2px solid orange;
      background: rgba(255,255,255,0.9);
      outline: none;
    }

    .button-container {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    button, a.button {
      padding: 10px 20px;
      font-size: 16px;
      cursor: pointer;
      background-color: transparent;
      color: black;
      border: 3px solid white;
      border-radius: 75px;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
      position: relative;
      overflow: hidden;
    }

    button:hover, a.button:hover {
      border-color: #FF5F1F;
      background-color: #FF5F1F;
      color: white;
    }

    button::before, a.button::before {
      content: "";
      position: absolute;
      top: -5px;
      left: -5px;
      right: -5px;
      bottom: -5px;
      z-index: -1;
      background: linear-gradient(90deg, #f15523, #ef3224, #7c3697);
      background-size: 400%;
      border-radius: 75px;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    button:hover::before, a.button:hover::before {
      filter: blur(20px);
      opacity: 1;
      animation: animate 8s linear infinite;
    }

    @keyframes animate {
      0% { background-position: 0%; }
      100% { background-position: 400%; }
    }

    #generatingText {
      display: none;
      font-size: 20px;
      color: white;
      background-color: #CC7722;
      padding: 10px;
      border-radius: 5px;
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      opacity: 0;
      animation: slideDown 1s forwards;
    }

    @keyframes slideDown {
      0% {
        top: -50px;
        opacity: 0;
      }
      50% {
        top: 20px;
        opacity: 1;
      }
      100% {
        top: 20px;
        opacity: 1;
      }
    }

    @keyframes slideUp {
      0% {
        top: 20px;
        opacity: 1;
      }
      100% {
        top: -50px;
        opacity: 0;
      }
    }

    #downloadButton {
      display: none;
    }
  
  
.info-btn {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ff9ad9;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.info-btn i {
  font-size: 22px;
  color: #ff4fa3;
}

.info-btn:hover {
  transform: translateY(-2px);
  background: #ffe6f9;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}


.neko-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  backdrop-filter: blur(3px);
  animation: fadeIn 0.25s ease-out;
}


.neko-modal {
  background: linear-gradient(135deg, #fff5fb 0, #ffe4f7 45%, #ffd6f2 100%);
  border-radius: 22px;
  padding: 20px 22px 18px;
  width: min(360px, 92vw);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  position: relative;
  border: 2px solid #ffb3e6;
  
  
}



.neko-close {
  position: absolute;
  top: 8px;
  right: 10px;
  cursor: pointer;
  color: #ff4fa3;
  font-size: 22px;
  padding: 4px;
  border-radius: 50%;
  transition: background 0.15s ease, transform 0.15s ease;
}

.neko-close:hover {
  background: rgba(255, 158, 219, 0.25);
  transform: rotate(8deg);
}

.neko-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  
}


  
.neko-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #ff3a99;
  letter-spacing: 0.03em;
}



.neko-label {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-top: 10px;
  color: #ff7abf;
  
}

.neko-text {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.4;
  color: #6a3357;
}

.neko-link-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #6a3357;
}

.neko-link-row a {
  color: #ff3a99;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.neko-link-row a:hover {
  text-decoration: underline;
}

.neko-link-row i.bxl-github {
  font-size: 18px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
  
  
