
  body {
    margin: 0;
    background: #0f172a;
    overflow: hidden;
    font-family: 'Courier New', monospace;
    color: #f8fafc;
  }

  .center {
    position: absolute;
    width: 100%;
    text-align: center;
  }

  #text {
    top: 25%;
    font-size: 2rem;
    white-space: nowrap;
  }

  #btnContainer {
    display: none;
    top: 65%;
  }

  button {
    padding: 12px 26px;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin: 0 12px;
  }

  #yesBtn {
    background: #22c55e;
    color: #022c22;
  }

  #noBtn {
    background: #ec7e7e;
    color: #022c22;
    transition: transform 0.15s ease;
  }

  /* Hearts */
  .heart {
    position: absolute;
    width: 20px;
    height: 20px;
    background: red;
    transform: rotate(45deg);
    animation: floatUp 6s linear infinite;
  }

  .heart::before,
  .heart::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: red;
    border-radius: 50%;
  }

  .heart::before {
    top: -10px;
    left: 0;
  }

  .heart::after {
    left: -10px;
    top: 0;
  }

  @keyframes floatUp {
    0% {
      transform: translateY(100vh) rotate(45deg);
      opacity: 1;
    }
    100% {
      transform: translateY(-10vh) rotate(45deg);
      opacity: 0;
    }
  }

  /* GIF Overlay */
  #gifContainer {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 10;
  }

  #gifContainer img {
    max-width: 320px;
    border-radius: 16px;
  }
