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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(180deg, #1a0f14 0%, #23141c 50%, #2a1822 100%);
    color: #ffeaf5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

.petals {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.petal {
    position: absolute;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #ffb8d0 0%, #ff82b4 100%);
    border-radius: 50% 0 50% 50%;
    opacity: 0.6;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

main {
    z-index: 1;
    padding: 2rem;
}

.card {
    background: rgba(35, 20, 28, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 130, 180, 0.15);
    border-radius: 24px;
    padding: 3rem;
    max-width: 420px;
    width: 90vw;
    text-align: center;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 130, 180, 0.1) inset,
        0 0 60px rgba(255, 130, 180, 0.05);
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.card-header {
    margin-bottom: 2rem;
}

.logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    animation: flowerPulse 4s ease-in-out infinite;
}

.flower {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(255, 130, 180, 0.3));
}

@keyframes flowerPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffb8d0 0%, #ff82b4 50%, #ff5a96 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 1rem;
    color: #c8a0b4;
    font-weight: 400;
}

.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 130, 180, 0.1);
    border-bottom: 1px solid rgba(255, 130, 180, 0.1);
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #e8c4d4;
    font-size: 0.85rem;
}

.feature i {
    font-size: 1.2rem;
    color: #ff82b4;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff82b4 0%, #ff5a96 100%);
    color: #1a0f14;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 130, 180, 0.3);
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 130, 180, 0.4);
}

.cta i {
    font-size: 1.1rem;
}

footer {
    z-index: 1;
    margin-top: 2rem;
    color: #a08090;
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .card {
        padding: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .features {
        gap: 1.5rem;
    }
    
    .feature {
        font-size: 0.8rem;
    }
}
