* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    background: linear-gradient(135deg, #2d5016 0%, #3e6b1f 50%, #4a7c23 100%);
    height: 100vh;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.leaf {
    position: absolute;
    width: 20px;
    height: 40px;
    background: linear-gradient(45deg, #4a7c23, #6ba832);
    border-radius: 0 100% 0 100%;
    animation: floating 6s ease-in-out infinite;
    opacity: 0.3;
}

.leaf-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.leaf-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.leaf-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.leaf-4 {
    top: 60%;
    right: 25%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.leaf-5 {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
    animation-duration: 6s;
}

.leaf-6 {
    top: 80%;
    left: 30%;
    animation-delay: 5s;
    animation-duration: 11s;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-30px) rotate(3deg);
    }
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.plant-container {
    position: relative;
    margin-bottom: 40px;
    animation: plantGrow 3s ease-out;
}

.pot {
    width: 120px;
    height: 80px;
    background: linear-gradient(145deg, #d4954a, #8b4513, #654321);
    border-radius: 5px 5px 45px 45px;
    margin: 0 auto;
    position: relative;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.pot::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    height: 16px;
    background: linear-gradient(145deg, #e6a356, #a0522d);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.soil {
    position: absolute;
    top: 5px;
    left: 8px;
    right: 8px;
    height: 15px;
    background: linear-gradient(145deg, #3e2723, #2e1a17);
    border-radius: 2px;
}

.vine-container {
    position: relative;
    width: 100%;
    height: 150px;
    top: -10px;
}

.vine-segment {
    position: absolute;
    left: 50%;
    background: linear-gradient(135deg, #2d5016, #4a7c23);
    border-radius: 50px;
    transform-origin: bottom center;
}

.segment-1 {
    width: 8px;
    height: 40px;
    bottom: 0;
    transform: translateX(-50%);
    animation: vineGrow 1s ease-out 0.5s both;
}

.segment-2 {
    width: 6px;
    height: 35px;
    bottom: 35px;
    transform: translateX(-50%) rotate(-15deg);
    animation: vineGrow 1s ease-out 1s both;
}

.segment-3 {
    width: 5px;
    height: 30px;
    bottom: 65px;
    transform: translateX(-50%) rotate(10deg);
    animation: vineGrow 1s ease-out 1.5s both;
}

.segment-4 {
    width: 4px;
    height: 25px;
    bottom: 90px;
    transform: translateX(-50%) rotate(-5deg);
    animation: vineGrow 1s ease-out 2s both;
}

@keyframes plantGrow {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes vineGrow {
    0% {
        height: 0;
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #90EE90, #32CD32, #228B22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 2s ease-out 1s both;
}

@keyframes titleGlow {
    0% {
        filter: brightness(1);
        text-shadow: 0 0 20px rgba(144, 238, 144, 0.5);
    }
    100% {
        filter: brightness(1.2);
        text-shadow: 0 0 30px rgba(144, 238, 144, 0.8);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.growth-bar {
    width: 300px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 2s ease-out 1.5s both;
}

.growth-progress {
    height: 100%;
    background: linear-gradient(90deg, #228B22, #32CD32, #90EE90);
    border-radius: 10px;
    width: 0%;
    animation: progressGrow 4s ease-out 2s both;
    position: relative;
    overflow: hidden;
}

.growth-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

.growth-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.9rem;
    color: white;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes progressGrow {
    0% {
        width: 0%;
    }
    100% {
        width: 75%;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.roots {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
}

.root {
    position: absolute;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #8B4513, #654321);
    border-radius: 0 0 50% 50%;
    animation: rootGrow 3s ease-out 1s both;
}

.root-1 {
    left: 40%;
    height: 60px;
    transform: rotate(-15deg);
    animation-delay: 1.2s;
}

.root-2 {
    left: 50%;
    height: 80px;
    animation-delay: 1.5s;
}

.root-3 {
    left: 60%;
    height: 50px;
    transform: rotate(15deg);
    animation-delay: 1.8s;
}

@keyframes rootGrow {
    0% {
        height: 0;
        opacity: 0;
    }
    100% {
        opacity: 0.6;
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #90EE90;
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
    opacity: 0.7;
}

.particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 40%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 60%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 80%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    left: 10%;
    animation-delay: 1s;
}

@keyframes particleFloat {
    0% {
        top: 100%;
        opacity: 0;
        transform: translateX(0);
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        top: -10%;
        opacity: 0;
        transform: translateX(20px);
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .growth-bar {
        width: 250px;
    }
      .plant-container {
        transform: scale(0.7);
        margin-bottom: 20px;
    }
}