* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    color: #fff;
    background: #001f3f;
    overflow: hidden;
}

.container {
    text-align: center;
    position: relative;
}

.octopus-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 4s ease-in-out infinite;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2dbf4a;
}

p {
    font-size: 1.2rem;
    color: #80d8f7;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Animated bubbles */
body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 150%;
    height: 150%;
    background: url('https://www.transparenttextures.com/patterns/bubbles.png') repeat;
    opacity: 0.05;
    transform: translateX(-50%) translateY(-50%);
    animation: bubbles 15s linear infinite;
}

@keyframes bubbles {
    from {
        transform: translateX(-50%) translateY(0);
    }
    to {
        transform: translateX(-50%) translateY(-100%);
    }
}