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

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 25%, #f48fb1 50%, #f06292 75%, #ec407a 100%);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    width: 100%;
    max-width: 560px;
}

.card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.sparkles {
    font-size: 36px;
    margin-bottom: 8px;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

h1 {
    font-size: 28px;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 16px;
    color: #f06292;
    font-weight: 600;
    margin-bottom: 16px;
}

.highlight {
    display: inline-block;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.divider {
    color: #f48fb1;
    font-size: 14px;
    margin: 16px 0;
    opacity: 0.7;
}

.desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    font-weight: 500;
}

.tagline {
    font-size: 18px;
    color: #e91e63;
    font-weight: 700;
    margin: 8px 0 20px;
}

.image-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
}

.buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0 24px;
}

.btn {
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
    color: #c2185b;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    cursor: default;
    transition: transform 0.2s, box-shadow 0.2s;
    user-select: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.15);
}

.footer {
    font-size: 13px;
    color: #f06292;
    font-weight: 600;
    margin-top: 8px;
    letter-spacing: 1px;
}

@media (max-width: 480px) {
    .card {
        padding: 32px 24px;
    }
    h1 {
        font-size: 22px;
    }
}
