body {
    font-family: 'Lora', serif;
    background: linear-gradient(135deg, #FDF2F8 0%, #ECFDF5 100%);
    margin: 0;
    min-height: 100vh;
}
h1, h2 {
    font-family: 'Poppins', sans-serif;
}
.countdown {
    color: #BE185D;
    font-weight: 600;
    font-size: 1.1rem;
}
.card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(244, 114, 182, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(244, 114, 182, 0.25);
}
.card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 1.5rem auto;
    border: 3px solid #FDF2F8;
    transition: transform 0.3s ease;
}
.card:hover img {
    transform: scale(1.05);
}
.btn {
    background: linear-gradient(to right, #EC4899, #DB2777);
    color: white;
    border-radius: 25px;
    padding: 12px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}
.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}
.badge {
    background: linear-gradient(to right, #EC4899, #F472B6);
    color: white;
    font-size: 0.9rem;
    padding: 6px 16px;
    border-radius: 15px;
    position: absolute;
    top: 15px;
    right: 15px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 3px 10px rgba(236, 72, 153, 0.3);
}
@media (min-width: 768px) {
    main {
        max-width: 720px !important;
    }
    .card {
        margin: 2rem auto;
        max-width: 600px;
    }
}