* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Animation Keyframes */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0% { transform: translatey(0px); }
    50% { transform: translatey(-20px); }
    100% { transform: translatey(0px); }
}

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

@keyframes flutter {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(10deg); }
    50% { transform: translate(0, -20px) rotate(0deg); }
    75% { transform: translate(-10px, -10px) rotate(-10deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes cloudMove {
    from { transform: translateX(-100%); }
    to { transform: translateX(100vw); }
}

@keyframes glow {
    from { text-shadow: 0 0 5px #8BC34A, 0 0 10px #8BC34A; }
    to { text-shadow: 0 0 10px #8BC34A, 0 0 20px #8BC34A; }
}

/* Base Styles */
body {
    background: linear-gradient(-45deg, #1a472a, #2d5a27, #447d3e, #8BC34A);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-leaf, .wheat, .butterfly, .cloud {
    position: absolute;
    pointer-events: none;
}

.floating-leaf {
    width: 50px;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238BC34A' opacity='0.3'%3E%3Cpath d='M17,8C8,10,5.9,16.17,3.82,21.34L5.71,22l1-2.3A12.29,12.29,0,0,0,17,8Zm0-6c-2,0-4.39.35-7.14,1.96A15.52,15.52,0,0,0,4.7,9.84L2.12,12.41a1,1,0,0,0,0,1.42l6.58,6.58a1,1,0,0,0,1.42,0L13.16,17c2.69-2.69,4.91-4.89,4.91-9Z'/%3E%3C/svg%3E") no-repeat;
    animation: float 6s ease-in-out infinite;
}

.wheat {
    bottom: -20px;
    width: 20px;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 100' fill='%23FFD700' opacity='0.3'%3E%3Cpath d='M12,0 L15,30 L12,60 L9,30 Z'/%3E%3C/svg%3E") no-repeat;
    animation: sway 4s ease-in-out infinite;
    transform-origin: bottom center;
}

.butterfly {
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFFFFF' opacity='0.4'%3E%3Cpath d='M12,2 L18,8 L12,14 L6,8 Z M12,14 L18,20 L12,26 L6,20 Z'/%3E%3C/svg%3E") no-repeat;
    animation: flutter 8s ease-in-out infinite;
}

.cloud {
    width: 100px;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40' fill='%23FFFFFF' opacity='0.3'%3E%3Cpath d='M0,20 Q25,0 50,20 T100,20 V40 H0 Z'/%3E%3C/svg%3E") no-repeat;
    animation: cloudMove 20s linear infinite;
}

/* Content Styles */
.main-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
}

.container {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    margin: 0 auto;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #8BC34A;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: glow 2s ease-in-out infinite alternate;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #AED581;
}

.description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Countdown Styles */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.countdown-item {
    background-color: rgba(139, 195, 74, 0.3);
    padding: 15px;
    border-radius: 10px;
    min-width: 100px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: scale(1.05);
}

.countdown-number {
    font-size: 2rem;
    font-weight: bold;
    color: #8BC34A;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Form Styles */
.email-form {
    margin-bottom: 30px;
}

input[type="email"] {
    padding: 12px 20px;
    width: 300px;
    max-width: 100%;
    border: none;
    border-radius: 25px;
    margin-right: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

button {
    padding: 12px 30px;
    background-color: #8BC34A;
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #7CB342;
    transform: translateY(-2px);
}

/* Social Links */
.social-links {
    margin-top: 20px;
}

.social-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #8BC34A;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 { 
        font-size: 2.5rem; 
    }
    
    input[type="email"] {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .countdown-item { 
        min-width: 80px; 
    }
}
