body, html {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #b8e8ff 0%, #dcf4ff 100%);
    min-height: 100vh;
    font-family: 'IBM Plex Sans', sans-serif;
    overflow-x: hidden;
}

#animation-container {
    width: 100vw;
    position: relative;
    /* Высота будет задана в JS динамически */
}

/* Стили самого облака */
.cloud {
    min-width: 200px;
    min-height: 100px;
    background-color: white;
    border-radius: 100px; /* Более округлые для формы облака */
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    animation: drift linear infinite;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.05);
    padding: 20px;
    z-index: 10;
}

/* Декоративные части облака (пушистость) */
.cloud::after, .cloud::before {
    content: '';
    position: absolute;
    background-color: white;
    border-radius: 50%;
    z-index: -1;
}

.cloud::after { width: 80px; height: 80px; top: -40px; left: 30px; }
.cloud::before { width: 100px; height: 100px; top: -60px; left: 70px; }

/* Контент внутри облака */
.cloud-content {
    text-align: center;
    z-index: 100;
}

.cloud-content a {
    text-decoration: none;
    color: #0084ff;
    font-weight: 500;
    font-size: 1.1rem;
}

@keyframes drift {
    from { left: -300px; } /* Уходим за левый край с запасом */
    to { left: 100vw; }
}

/* Стили футера (базовые) */
#footer-placeholder {
    position: relative;
    z-index: 200;
}