body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-image: url("bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("bg.jpg") center/cover no-repeat;
    filter: blur(8px);
    transform: scale(1.1);
    z-index: -2;
}

.container {
    text-align: center;
}

.image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yes {
    background-color: #ff4d6d;
    color: white;
}

.no {
    background-color: #6c757d;
    color: white;
}

.hearts-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 999;
}

.heart {
    position: absolute;
    font-size: 24px;
    opacity: 0.9;
    animation: flyHeart 2.5s ease-out forwards;
}

@keyframes flyHeart {
    0% {
        transform: translateX(0) translateY(0) scale(0.6);
        opacity: 1;
    }

    100% {
        transform: translateX(var(--x-move)) translateY(var(--y-move)) scale(1.8);
        opacity: 0;
    }
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 420px;
}

.image {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    flex: 1;
    padding: 14px 0;
    font-size: 16px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

@media (max-width: 1000px) {

    body {
        padding: 28px;
    }

    .container {
        max-width: 100%;
    }

    .image {
        width: 100%;
        max-width: 100%;
        border-radius: 28px;
        margin-bottom: 32px;
    }

    h2 {
        font-size: 30px;
        line-height: 1.4;
        margin-bottom: 32px;
    }

    .buttons {
        flex-direction: column;
        gap: 22px;
    }

    .btn {
        width: 100%;
        font-size: 22px;
        padding: 22px 0;
        border-radius: 20px;
    }

}