    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Comic Neue', cursive;
      background: linear-gradient(135deg, #ffe4f2, #ffe1f1, #fff5fd);
      color: #5e2750;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
      text-align: center;
      padding: 20px;
    }

    h1 {
      font-size: 3em;
      margin-bottom: 0.5em;
      text-shadow: 2px 2px #f7a6ce;
      color: #d94f91;
    }

    .quote {
      background: rgba(255, 240, 250, 0.8);
      border: 4px #d94f91;
      padding: 25px;
      border-radius: 20px;
      max-width: 700px;
      box-shadow: 0 0 15px rgba(255, 182, 193, 0.5);
      margin-bottom: 1.5em;
      font-size: 1.4em;
    }

    button {
      background-color: #fcb7d4;
      color: #5e2750;
      border: none;
      padding: 12px 24px;
      font-size: 1em;
      font-weight: bold;
      border-radius: 30px;
      cursor: pointer;
      transition: background 0.3s ease;
      box-shadow: 0 4px 8px rgba(249, 167, 201, 0.4);
    }

    button:hover {
      background-color: #ffd1e8;
    }

    img {
      width: 220px;
      margin-top: 1.5em;
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0px); }
    }

    .footer {
      font-size: 0.9em;
      margin-top: 2em;
      color: #a36a93;
    }