body {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100vh;
      background: #fdf6f9;
      font-family: Arial, sans-serif;
      margin: 0;
      overflow: hidden;
      text-align: center;
    }

    .container {
      margin-bottom: 10px;
    }

    .gif-container img {
      width: 140px;
      height: auto;
      border-radius: 8px;
      margin-bottom: 8px;
    }

    h1 {
      font-size: 20px;
      color: #333;
      margin: 5px 0;
    }

    .options {
      position: relative;
      width: 100%;
      height: 120px; /* play area for No button */
    }

    button {
      padding: 8px 16px;
      margin: 5px;
      font-size: 14px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: transform 0.2s ease;
      position: relative;
    }

    #yes {
      background: #d29ce0;
      color: white;
      position: relative;
      z-index: 2;
    }

    #no {
      background: #d29ce0;
      color: white;
      position: absolute;
      top: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
    }

    #message {
      margin-top: 8px;
      font-size: 16px;
      color: #d6336c;
      font-weight: bold;
    }

    /* Floating hearts animation */
    .heart {
      position: fixed;
      bottom: 0;
      font-size: 18px;
      animation: floatUp 3s linear forwards;
      opacity: 0.8;
      z-index: 999;
    }

    @keyframes floatUp {
      from {
        transform: translateY(0) scale(1);
        opacity: 1;
      }
      to {
        transform: translateY(-100vh) scale(1.3);
        opacity: 0;
      }
    }