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

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFE4E8 25%, #FFF0F5 50%, #FFEBF0 75%, #FFF5F5 100%);
    font-family: 'Quicksand', sans-serif;
    overflow-x: hidden;
    position: relative;
}

.content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.flower-crown {
    width: 280px;
    margin-bottom: 1rem;
    animation: gentle-sway 3s ease-in-out infinite;
}

@keyframes gentle-sway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

.title {
    font-family: 'Pacifico', cursive;
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: #FF6B6B;
    text-shadow: 2px 2px 4px rgba(255, 107, 107, 0.3);
    margin-bottom: 0.5rem;
    animation: fade-in-up 1.5s ease-out forwards;
    opacity: 0;
    text-align: center;
}

.subtitle {
    font-size: 1.2rem;
    color: #FF8FA3;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fade-in-up 1.5s ease-out 0.3s forwards;
    opacity: 0;
}

.message {
    max-width: 600px;
    text-align: center;
    animation: fade-in-up 1.5s ease-out 0.6s forwards;
    opacity: 0;
}

.message p {
    font-size: 1.1rem;
    color: #8B6B7A;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.message .highlight {
    font-size: 1.3rem;
    color: #FF6B6B;
    font-weight: 600;
    margin-top: 1.5rem;
    animation: gentle-pulse 2s ease-in-out infinite;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gentle-pulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
    }
    50% {
        transform: scale(1.02);
        text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    }
}

.flower-svg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.flower-left {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 120px;
    animation: flower-float 4s ease-in-out infinite;
}

.flower-right {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 100px;
    animation: flower-float-right 4s ease-in-out 1s infinite;
    transform: scaleX(-1);
}

@keyframes flower-float {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

@keyframes flower-float-right {
    0%, 100% { transform: translateY(0) rotate(3deg) scaleX(-1); }
    50% { transform: translateY(-15px) rotate(-3deg) scaleX(-1); }
}

.flower-decorations {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 500px;
    margin-top: 3rem;
    animation: fade-in-up 1.5s ease-out 0.9s forwards;
    opacity: 0;
}

.flower-small {
    width: 80px;
    animation: subtle-bounce 3s ease-in-out infinite;
}

.flower-small.flip {
    transform: scaleX(-1);
    animation-delay: 1.5s;
}

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

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

.petal {
    position: absolute;
    width: 15px;
    height: 15px;
    background: #FFB7C5;
    border-radius: 100% 0 100% 0;
    opacity: 0.7;
    animation: float-petal 8s ease-in-out infinite;
}

.petal:nth-child(1) { left: 10%; top: -20px; animation-delay: 0s; }
.petal:nth-child(2) { left: 25%; top: -20px; animation-delay: 1s; }
.petal:nth-child(3) { left: 40%; top: -20px; animation-delay: 2s; }
.petal:nth-child(4) { left: 55%; top: -20px; animation-delay: 3s; }
.petal:nth-child(5) { left: 70%; top: -20px; animation-delay: 4s; }
.petal:nth-child(6) { left: 85%; top: -20px; animation-delay: 5s; }

@keyframes float-petal {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.heart {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #FF8FA3;
    transform: rotate(45deg);
    opacity: 0.6;
    animation: float-heart 10s ease-in-out infinite;
}

.heart::before,
.heart::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #FF8FA3;
    border-radius: 50%;
}

.heart::before { top: -6px; left: 0; }
.heart::after { top: 0; left: -6px; }

.heart:nth-child(7) { left: 15%; animation-delay: 2s; }
.heart:nth-child(8) { left: 80%; animation-delay: 5s; }

@keyframes float-heart {
    0% {
        transform: translateY(0) rotate(45deg) scale(0);
        opacity: 0;
    }
    10% { opacity: 0.6; transform: translateY(20px) rotate(45deg) scale(1); }
    90% { opacity: 0.6; }
    100% {
        transform: translateY(-100vh) rotate(405deg) scale(0.5);
        opacity: 0;
    }
}

.star {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #FFD93D;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    opacity: 0.7;
    animation: twinkle 3s ease-in-out infinite;
}

.star:nth-child(9) { left: 30%; top: 20%; animation-delay: 0s; }
.star:nth-child(10) { left: 65%; top: 30%; animation-delay: 1.5s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 0.9; transform: scale(1.2); }
}

.butterfly {
    position: absolute;
    width: 20px;
    height: 16px;
    animation: fly-butterfly 15s linear infinite;
}

.butterfly::before,
.butterfly::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 14px;
    background: linear-gradient(135deg, #FFB7C5, #FF8FA3);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.butterfly::before { left: 0; transform-origin: right center; animation: wing-flap 0.2s ease-in-out infinite; }
.butterfly::after { right: 0; transform-origin: left center; animation: wing-flap 0.2s ease-in-out infinite reverse; }

.butterfly:nth-child(11) { left: -30px; top: 30%; }
.butterfly:nth-child(12) { left: -30px; top: 60%; animation-delay: 7s; }

@keyframes fly-butterfly {
    0% { left: -30px; }
    100% { left: calc(100% + 30px); }
}

@keyframes wing-flap {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(70deg); }
}

.footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    animation: fade-in-up 1.5s ease-out 1.2s forwards;
    opacity: 0;
}

.footer p {
    color: #FF8FA3;
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 600px) {
    .flower-left, .flower-right {
        display: none;
    }

    .flower-crown {
        width: 200px;
    }

    .title {
        font-size: 2.2rem;
    }

    .message p {
        font-size: 1rem;
    }
}
