* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ffc0cb 0%, #ffb6c1 50%, #dda0b4 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.name {
    font-size: 4rem;
    color: #c94b6b;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in;
}

.question {
    font-size: 2.5rem;
    color: #8b3a52;
    margin-bottom: 40px;
    animation: fadeIn 1.5s ease-in;
}

.buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    min-height: 60px;
}

button {
    padding: 15px 40px;
    font-size: 1.3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.yes-btn {
    background: #d4598f;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 89, 143, 0.4);
}

.yes-btn:hover {
    background: #c94b7f;
    transform: scale(1.1);
}

.no-btn {
    background: #e8e8e8;
    color: #666;
    transition: all 0.1s ease;
}

.no-btn:hover {
    background: #d8d8d8;
}

.quote {
    font-size: 1.1rem;
    color: #8b3a52;
    font-style: italic;
    opacity: 0.8;
    animation: fadeIn 2s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hearts animation */
body::before {
    content: "💕";
    position: absolute;
    font-size: 3rem;
    animation: float 6s infinite;
    top: 10%;
    left: 10%;
}

body::after {
    content: "💖";
    position: absolute;
    font-size: 2.5rem;
    animation: float 8s infinite;
    top: 20%;
    right: 15%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}
