body {
    margin: 0;
    padding: 20px;
    font-family: "Georgia", serif;
    background: #fff6f8;
    color: #5a2a2a;
}

.title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 5px;
}

.subtitle {
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
}

.countdown {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #b84a62;
}

.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 0 12px rgba(255, 120, 150, 0.25);
}

.lockedBox {
    background: #ffe3ea;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    font-weight: bold;
    color: #a03a50;
}

.loveNote {
    margin-top: 8px;
    font-family: 'Handlee', cursive;
    font-size: 1.1rem;
    color: #b84a62;
    text-align: center;
    line-height: 1.4;
}

.signature {
    margin-top: 40px;
    text-align: center;
    font-family: 'Pacifico', cursive;
    font-size: 1.4rem;
    color: #b84a62;
    opacity: 0.85;
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Floating hearts */
.heart {
    position: fixed;
    bottom: -20px;
    color: #ff6b81;
    font-size: 20px;
    animation: floatUp 6s linear forwards;
    opacity: 0.8;
    pointer-events: none;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-120vh) translateX(30px) scale(1.8);
        opacity: 0;
    }
}
