* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    background: linear-gradient(to bottom right, #fff0f5, #ffe4e1);
    font-family: Arial, sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
  }
  
  .container {
    background: #ffffffdd;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    width: 320px;
    z-index: 1;
  }
  
  .imagem-casal {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 15px;
  }
  
  h1 {
    font-size: 1.4em;
    color: #c71585;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
  }
  
  button {
    font-size: 18px;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  #yesBtn {
    background-color: #32cd32;
    color: white;
  }
  
  #yesBtn:hover {
    background-color: #28a428;
    transform: scale(1.05);
  }
  
  #noBtn {
    background-color: #ff6347;
    color: white;
    position: relative; /* começa fixo, depois vira flutuante */
  }
  