* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #ff5fa2, #ff8dc7);
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 15px;
}

.container {
    width: 100%;
    max-width: 520px;
    text-align: center;
    background: rgba(255,255,255,0.22);
    padding: 30px 22px;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

h1 {
    font-size: 2.2rem;
}

h2 {
    margin-top: 10px;
    font-size: 1.5rem;
}

h3 {
    font-size: 1.3rem;
}

p {
    font-size: 1.05rem;
    line-height: 1.6;
    min-height: 90px;
}

button {
    width: 100%;
    max-width: 260px;
    background: #ff2e63;
    border: none;
    padding: 14px;
    font-size: 1rem;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 20px;
    transition: transform 0.25s ease;
}

button:hover {
    transform: scale(1.08);
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.yes {
    background: #00c897;
}

.no {
    background: #ff165d;
}

.hidden {
    display: none;
}

/* ❤️ Floating hearts */
.hearts::before {
    content: "💖 💕 💘 💞 💓 ❤️";
    position: fixed;
    width: 100%;
    text-align: center;
    animation: float 7s linear infinite;
    opacity: 0.7;
    font-size: 1.4rem;
}

@keyframes float {
    0% { transform: translateY(100vh); }
    100% { transform: translateY(-100vh); }
}

/* 📱 Mobile tweaks */
@media (max-width: 480px) {
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.3rem; }
    p  { font-size: 1rem; }
}
