body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Main Content Box */
.container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

h1 {
    color: #ff2e6d;
}

p {
    font-size: 18px;
    color: #444;
    margin: 20px 0;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ff2e6d;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
    font-weight: bold;
}

.btn:hover {
    background: #e6005c;
    transform: scale(1.08);
}

/* Floating Love Animation */
.floating-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.floating-love {
    position: absolute;
    bottom: -50px;
    color: white;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255,255,255,0.8);
    animation: floatUp linear forwards;
}

@keyframes floatUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-110vh);
        opacity: 0;
    }
}
