body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.container {
    position: relative;
    background: rgba(255,255,255,0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    z-index: 2;
}

h1 {
    margin-bottom: 20px;
    color: #e91e63;
}

button {
    padding: 10px 20px;
    margin: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

#yesBtn {
    background: #e91e63;
    color: #fff;
}

#noBtn {
    background: #ccc;
    color: #000;
    position: absolute;
}

.mensagem {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

.mensagem h2 {
    color: #e91e63;
    font-size: 24px;
}

#hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
