:root {
    --bg: #fffafa;
    --accent: #ff85a2;
    --text: #4a4a4a;
    --card-bg: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg);
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    text-align: center;
    padding: 24px;
    max-width: 450px;
    z-index: 2;
}

.tag {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    background: #ffe3e9;
    padding: 6px 16px;
    border-radius: 50px;
    color: var(--accent);
    font-weight: 600;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-top: 24px;
    margin-bottom: 10px;
    color: #2d2d2d;
    line-height: 1.2;
}

.card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(255, 133, 162, 0.15);
    margin: 32px 0;
    border: 1px solid rgba(255, 133, 162, 0.1);
}

.message {
    line-height: 1.8;
    font-size: 1.15rem;
    margin-bottom: 0;
}

.heart {
    font-size: 2.5rem;
    margin-top: 24px;
    display: inline-block;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

footer {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: var(--accent);
    top: -10px;
    z-index: 1;
    border-radius: 2px;
    animation: fall 3s linear forwards;
}

@keyframes fall {
    to {
        transform: translateY(105vh) rotate(360deg);
    }
}
