/* Fish animation styles */
.fish {
    position: absolute;
    width: 80px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease-out;
    z-index: 10;
}

.fish-body {
    position: relative;
    width: 100%;
    height: 100%;
}

.fish-tail {
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    animation: wag-tail 0.5s infinite alternate;
}

.bubble {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float-up 4s linear infinite;
}

@keyframes swim {
    0% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(20px) translateY(-10px);
    }
    50% {
        transform: translateX(0) translateY(0);
    }
    75% {
        transform: translateX(20px) translateY(10px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

@keyframes wag-tail {
    from {
        transform: translateY(-50%) rotate(-15deg);
    }
    to {
        transform: translateY(-50%) rotate(15deg);
    }
}

@keyframes float-up {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}
.fish-food {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle at 30% 30%, #ff9d00, #ff6600);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 153, 0, 0.8);
    animation: food-fall 1s linear forwards;
}
@keyframes food-fall {
    to {
        transform: translateY(100px);
        opacity: 0;
    }
}
/* Dancing girl */
.dancing-girl {
    position: absolute;
    bottom: 0;
    width: 60px;
    height: 120px;
    background-image: url('http://static.photos/people/120x630/42');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    z-index: 8;
    animation: dance 4s infinite ease-in-out;
}

@keyframes dance {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(20px) rotate(5deg);
    }
    50% {
        transform: translateX(0) rotate(0deg);
    }
    75% {
        transform: translateX(-20px) rotate(-5deg);
    }
}

/* Decorative elements */
.seaweed {
position: absolute;
    bottom: 0;
    width: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    z-index: 5;
}