/* Background Components */
.particles-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background: radial-gradient(ellipse at center, #1a1510 0%, #0a0a0a 100%);
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    animation: particleFloat linear infinite;
    box-shadow: 0 0 10px var(--gold);
}

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

.floating-sunflower {
    position: absolute;
    font-size: 40px;
    animation: float 15s infinite ease-in-out;
    opacity: 0.15;
}

.floating-sunflower:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.floating-sunflower:nth-child(2) { left: 80%; top: 40%; animation-delay: 2s; }
.floating-sunflower:nth-child(3) { left: 20%; top: 60%; animation-delay: 4s; }
.floating-sunflower:nth-child(4) { left: 70%; top: 80%; animation-delay: 6s; }
.floating-sunflower:nth-child(5) { left: 50%; top: 10%; animation-delay: 8s; }
.floating-sunflower:nth-child(6) { left: 30%; top: 90%; animation-delay: 10s; }

/* Hearts and Confetti */
.hearts-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.falling-heart {
    position: absolute;
    font-size: 20px;
    animation: heartFall linear infinite;
    opacity: 0.7;
}

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

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    animation: confettiFall linear forwards;
}

.hearts-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    display: none;
}

.hearts-container.active {
    display: block;
}

.heart {
    position: absolute;
    font-size: 35px;
    animation: heartFloat 5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8));
}

/* Container and Layout */
.container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2.5s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
    font-size: 3em;
    opacity: 0.7;
    z-index: 10;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
}

/* Loading Shimmer */
.loading-shimmer {
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
    background-size: 1000px 100%;
    animation: shimmer 2.5s infinite;
}

/* Typing Cursor */
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1.3em;
    background: var(--gold);
    margin-left: 4px;
    animation: blink 0.9s infinite;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.9);
}
