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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
    min-height: 100vh;
    color: #333;
}

.header {
    text-align: center;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    color: #e91e63;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
}

.love-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
}

.heart-animation {
    text-align: center;
    margin-bottom: 2rem;
}

.heart-animation i {
    color: #e91e63;
    font-size: 4rem;
    animation: heartbeat 1.5s infinite;
}

.message-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.message {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.message:hover {
    transform: translateY(-5px);
}

.message p {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: #e91e63;
    text-align: center;
    line-height: 1.6;
}

.quote-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    margin: 2rem auto;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

blockquote {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #e91e63;
    text-align: center;
    line-height: 1.6;
}

.footer {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    margin-top: 2rem;
}

.footer p {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: #e91e63;
}

.hearts {
    margin: 1rem 0;
    font-size: 2rem;
}

.copyright {
    font-size: 1rem;
    color: #666;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }
    
    .message p {
        font-size: 1.3rem;
    }
    
    blockquote {
        font-size: 1.5rem;
    }
    
    .love-container {
        padding: 1rem;
    }
}
