body {
    background-color: #333;
    color: #fff;
    font-family: Helvetica, Arial, "Segoe UI", sans-serif;
}

canvas {
    width: 100%;
    height: 100%;
    padding: 0;
    position: absolute;
    z-index: -1;
}

#container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

@keyframes blob-animation {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    50% {
        border-radius: 50% 60% 30% 70% / 40% 70% 60% 30%;
    }
    75% {
        border-radius: 60% 40% 70% 30% / 70% 30% 50% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    }
}

#content {
    margin: 0 auto;
    width: 500px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(34, 34, 34, 0.5);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: 
        blob-animation 20s ease-in-out infinite, 
        pulse 8s ease-in-out infinite,
        glow 6s ease-in-out infinite;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

/* Add a subtle gradient overlay */
#content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(0, 0, 0, 0) 50%, 
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: -1;
}

#content p {
    font-size: 16px;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

#content a {
    color: #eee;
    text-decoration: none;
    font-size: 12px;
    margin-top: 25px;
    position: relative;
    z-index: 2;
    transition: color 0.3s;
}

#content a:hover {
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

#content h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

