* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    overflow: hidden;
    background: #1a1a1a;
}

.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #252525 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Glowing background orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff69b4, transparent);
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ffd700, transparent);
    bottom: 15%;
    right: 10%;
    animation-delay: 1s;
}

.glow-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #ff1493, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

/* Bouquet container */
.bouquet {
    position: absolute;
    width: 300px;
    height: 300px;
    z-index: 10;
    animation: bouquetBurst 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes bouquetBurst {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    60% {
        transform: scale(1.2) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
    }
}

/* Individual flowers */
.flower {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: flowerBloom 1s ease-out forwards;
}

.flower-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.2s;
}

.flower-2 {
    top: 20%;
    left: 30%;
    animation-delay: 0.3s;
}

.flower-3 {
    top: 70%;
    left: 25%;
    animation-delay: 0.4s;
}

.flower-4 {
    top: 25%;
    right: 25%;
    animation-delay: 0.35s;
}

.flower-5 {
    bottom: 20%;
    right: 30%;
    animation-delay: 0.45s;
}

@keyframes flowerBloom {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
    }
}

/* Petals */
.petal {
    position: absolute;
    width: 30px;
    height: 40px;
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 50%, #ffb6c1 100%);
    border-radius: 50% 50% 50% 0;
    transform-origin: bottom center;
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.6);
}

.petal-1 {
    top: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
}

.petal-2 {
    top: 5px;
    right: 5px;
    transform: rotate(72deg);
}

.petal-3 {
    bottom: 10px;
    right: 15px;
    transform: rotate(144deg);
}

.petal-4 {
    bottom: 10px;
    left: 15px;
    transform: rotate(216deg);
}

.petal-5 {
    top: 5px;
    left: 5px;
    transform: rotate(288deg);
}

.flower-center {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #ffd700, #ffed4e);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

/* Particle containers */
#hearts-container,
#confetti-container,
#glitter-container {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

/* Heart particles */
.heart {
    position: absolute;
    width: 30px;
    height: 30px;
    animation: heartExplode 2s ease-out forwards;
    filter: blur(0.5px);
}

.heart::before,
.heart::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 24px;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    border-radius: 15px 15px 0 0;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.8);
}

.heart::before {
    left: 7.5px;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.heart::after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

@keyframes heartExplode {
    0% {
        transform: translate(0, 0) scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(1) rotate(720deg);
        opacity: 0;
    }
}

/* Confetti particles */
.confetti {
    position: absolute;
    width: 10px;
    height: 20px;
    animation: confettiExplode 3s ease-out forwards;
}

@keyframes confettiExplode {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) rotate(var(--rotate));
        opacity: 0;
    }
}

/* Glitter particles */
.glitter {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #ffd700, #ffed4e);
    border-radius: 50%;
    animation: glitterExplode 2.5s ease-out forwards;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.9);
}

@keyframes glitterExplode {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(1);
        opacity: 0;
    }
}

/* Typography */
.text-container {
    position: absolute;
    text-align: center;
    z-index: 15;
    animation: textRise 2s ease-out 0.8s forwards;
    opacity: 0;
}

@keyframes textRise {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.title-top {
    font-size: 5rem;
    font-weight: bold;
    letter-spacing: 0.3em;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.4),
        0 0 40px rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    animation: glowPulse 2s ease-in-out infinite;
}

.title-main {
    font-size: 7rem;
    font-weight: bold;
    letter-spacing: 0.4em;
    background: linear-gradient(135deg, #00bfff, #1e90ff, #87ceeb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow:
        0 0 20px rgba(30, 144, 255, 0.8),
        0 0 40px rgba(30, 144, 255, 0.6),
        0 0 60px rgba(30, 144, 255, 0.4);
    filter: drop-shadow(0 0 30px rgba(0, 191, 255, 0.9));
    animation: neonGlow 1.5s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 255, 255, 0.4),
            0 0 40px rgba(255, 255, 255, 0.2);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 1),
            0 0 30px rgba(255, 255, 255, 0.8),
            0 0 40px rgba(255, 255, 255, 0.6),
            0 0 50px rgba(255, 255, 255, 0.4);
    }
}

@keyframes neonGlow {
    0% {
        filter: drop-shadow(0 0 30px rgba(0, 191, 255, 0.9));
    }
    100% {
        filter: drop-shadow(0 0 50px rgba(0, 191, 255, 1));
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .title-top {
        font-size: 3rem;
    }
    
    .title-main {
        font-size: 4rem;
    }
    
    .bouquet {
        width: 200px;
        height: 200px;
    }
    
    .flower {
        width: 60px;
        height: 60px;
    }
}