/* Base Styles */
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #74b9ff, #00b894);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100vw;
    height: 100vh;
}

/* Bunny Styles */
.bunny {
    position: absolute;
    font-size: 60px;
    animation: bounce 2s infinite ease-in-out;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-150px);
    }
    60% {
        transform: translateX(-50%) translateY(-75px);
    }
}

/* Ground */
.ground {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    height: 20px;
    background: #2d3436;
    border-radius: 10px;
}

/* Title */
.title {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 36px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    text-align: center;
}

/* Clouds */
.clouds {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
}

.cloud {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    position: absolute;
    animation: float 6s infinite ease-in-out;
}

.cloud1 {
    width: 80px;
    height: 40px;
    left: 10%;
    animation-delay: 0s;
}

.cloud2 {
    width: 60px;
    height: 30px;
    right: 15%;
    animation-delay: 2s;
}

.cloud3 {
    width: 100px;
    height: 50px;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Stars */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.star {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    animation: twinkle 3s infinite;
}

.star1 { top: 15%; left: 20%; animation-delay: 0s; }
.star2 { top: 25%; right: 25%; animation-delay: 1s; }
.star3 { top: 35%; left: 80%; animation-delay: 2s; }
.star4 { top: 45%; left: 10%; animation-delay: 0.5s; }
.star5 { top: 55%; right: 40%; animation-delay: 1.5s; }

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Background Images */
.background-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.bg-bunny {
    position: absolute;
    font-size: 40px;
    opacity: 0.3;
    animation: float 8s infinite ease-in-out;
}

.bg-bunny1 { top: 20%; left: 5%; animation-delay: 0s; }
.bg-bunny2 { top: 60%; right: 10%; animation-delay: 3s; }
.bg-bunny3 { bottom: 30%; left: 15%; animation-delay: 6s; }

/* Nature Elements */
.nature-elements {
    position: absolute;
    font-size: 30px;
    opacity: 0.4;
    animation: sway 4s infinite ease-in-out;
}

.tree1 { bottom: 50px; left: 10%; animation-delay: 0s; }
.tree2 { bottom: 50px; right: 15%; animation-delay: 2s; }
.flower1 { bottom: 70px; left: 25%; animation-delay: 1s; }
.flower2 { bottom: 70px; right: 30%; animation-delay: 3s; }
.grass1 { bottom: 50px; left: 40%; animation-delay: 0.5s; }
.grass2 { bottom: 50px; right: 45%; animation-delay: 2.5s; }

@keyframes sway {
    0%, 100% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg);
    }
}

/* Sun */
.sun {
    position: absolute;
    top: 80px;
    right: 80px;
    font-size: 50px;
    animation: rotate 20s infinite linear;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Hearts */
.hearts {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.heart {
    position: absolute;
    color: rgba(255, 192, 203, 0.6);
    font-size: 25px;
    animation: heartbeat 2s infinite ease-in-out;
}

.heart1 { top: 30%; left: 70%; animation-delay: 0s; }
.heart2 { top: 70%; left: 5%; animation-delay: 1s; }
.heart3 { top: 40%; right: 5%; animation-delay: 0.5s; }

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* Dancing Bunnies */
.dancing-bunny {
    position: absolute;
    font-size: 45px;
    animation: dance 1.5s infinite ease-in-out;
}

.dancing-bunny1 {
    bottom: 80px;
    left: 20%;
    animation-delay: 0s;
}

.dancing-bunny2 {
    bottom: 80px;
    right: 25%;
    animation-delay: 0.5s;
}

.dancing-bunny3 {
    bottom: 80px;
    left: 60%;
    animation-delay: 1s;
}

@keyframes dance {
    0%, 100% {
        transform: translateY(0) rotate(-5deg) scale(1);
    }
    25% {
        transform: translateY(-20px) rotate(5deg) scale(1.1);
    }
    50% {
        transform: translateY(-40px) rotate(-10deg) scale(0.9);
    }
    75% {
        transform: translateY(-20px) rotate(10deg) scale(1.1);
    }
}

/* Eating Bunnies */
.eating-bunny {
    position: absolute;
    font-size: 40px;
    animation: eating 3s infinite ease-in-out;
}

.eating-bunny1 {
    bottom: 80px;
    left: 35%;
    animation-delay: 0s;
}

.eating-bunny2 {
    bottom: 80px;
    right: 40%;
    animation-delay: 1.5s;
}

@keyframes eating {
    0%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    10%, 30%, 50%, 70% {
        transform: translateY(-5px) scale(1.05);
    }
    20%, 40%, 60% {
        transform: translateY(0) scale(0.95);
    }
}

/* Food Elements */
.food {
    position: absolute;
    font-size: 25px;
    animation: foodWiggle 2s infinite ease-in-out;
}

.carrot1 {
    bottom: 75px;
    left: 32%;
    animation-delay: 0s;
}

.carrot2 {
    bottom: 75px;
    right: 43%;
    animation-delay: 1s;
}

.lettuce1 {
    bottom: 75px;
    left: 38%;
    animation-delay: 0.5s;
}

@keyframes foodWiggle {
    0%, 100% {
        transform: rotate(-2deg) scale(1);
    }
    50% {
        transform: rotate(2deg) scale(0.9);
    }
}
