 * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      min-height: 100vh;
      background: linear-gradient(45deg, #e65a90, #f5f4f5);
      display: flex;
      justify-content: center;
      align-items: center;
       font-family: "Brush Script MT", "Lucida Handwriting", "Apple Chancery", cursive;
      padding: 20px;
      
    }
    #name{
        opacity: 0.5;
        margin-top: 600px;
    }

    /* CARD */
    .card {
      background: white;
      width: 100%;
      max-width: 480px;
      padding: 34px 28px;
      border-radius: 26px;
      text-align: center;
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
      transition: transform 1.8s ease;
    
    }
    .card #cat{
      width: 30vh;
      height: auto;
      border-radius: 50%;
    }

    .card.zoom {
      transform: scale(1.08);
    }

    /* TITLE */
    h1 {
      color: #ff4d6d;
      min-height: 70px;
      font-size: clamp(22px, 5vw, 28px);
      font-family: "Brush Script MT", "Lucida Handwriting", "Apple Chancery", cursive;
    }

    /* IMAGE PLACEHOLDER */
    .image-box {
      width: 100%;
      height: 300px;
      margin: 16px 0;
      border-radius: 18px;
      background: #ffe5ea;
      display: none;
    }

    .image-box img {
      max-width: 90%;
      height: 300px;
      border-radius: 25%;

    }

    /* BUTTONS */
    .buttons {
      display: flex;
      justify-content: center;
      gap: 18px;
      margin-top: 24px;
      flex-wrap: wrap;
    }

    button {
      padding: 14px 30px;
      font-size: 16px;
      border-radius: 30px;
      border: none;
      cursor: pointer;
      transition: transform 0.25s ease;
    }

    #yesBtn {
      background: #4ddbff;
      color: rgb(28, 2, 2);
      transition: 0.5s;
    }
    #finalYes{
      color: black;
      background-color: #4ddbff;
    }
    #finalYes:hover{
      scale: 1.2;
      
    }

    #noBtn {
      background: #e95d5d;
    }

    #yesBtn:hover {
     

      background-color: #a8ebfc;

      animation: shdow 2s ease-in-out 5ms infinite alternate-reverse;

    }

    @keyframes shdow {
      0% {
        box-shadow: 0px 0px 10px rgb(206, 245, 11);
      }

      30% {
        box-shadow: 0px 0px 10px rgb(11, 23, 245);
      }

      60% {
        box-shadow: 0px 0px 10px rgb(245, 5, 5);
      }

      100% {
        box-shadow: 0px 0px 10px rgb(11, 245, 23);
      }

    }

    #noBtn:hover {
      scale: 0.9;

    }

    /* START AGAIN */
    #resetBtn {
      display: none;
      margin-top: 18px;
      background: #a85353;
      color: white;
    }

    /* SHAKE */
    .shake {
      animation: shake 0.5s;
    }

    @keyframes shake {
      0% {
        transform: translate(0)
      }

      25% {
        transform: translate(-6px, 4px)
      }

      50% {
        transform: translate(6px, -4px)
      }

      75% {
        transform: translate(-4px, -2px)
      }

      100% {
        transform: translate(0)
      }
    }

    /* MESSAGE */
    #message {
      display: none;
      font-size: 20px;
      color: #ff4d6d;
      margin-top: 16px;
      white-space: pre-line;
    }

    /* WARNING */
    #warning {
      display: none;
      margin-top: 18px;
    }

    #warning video {
      width: 100%;
      max-width: 300px;
      border-radius: 16px;
      margin-bottom: 12px;
      animation: shake 2s infinite alternate-reverse;
    }

    .danger {
      color: #c1121f;
      font-size: 22px;
      font-weight: bold;
      min-height: 30px;
    }

    /* HEART RAIN */
    .heart-rain {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 999;
    }

    .rain-heart {
      position: absolute;
      top: -10vh;
      animation: fall linear forwards;
    }

    @keyframes fall {
      0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
      }

      100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
      }
    }
  