/* Стили для фоновых эффектов (шарики/пузырьки) */

/* Canvas для шариков (фон) */
#bubbles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Canvas для искорок курсора */
#sparkle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Анимация плавного появления шариков */
@keyframes bubbleFloat {
    0% {
        transform: translateY(100vh);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Контейнер для CSS-шариков (если понадобятся в будущем) */
.bubble-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.bubble {
    position: absolute;
    bottom: -50px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.8), 
        rgba(255, 183, 178, 0.4), 
        rgba(255, 154, 162, 0.2));
    box-shadow: 
        inset 0 0 20px rgba(255, 255, 255, 0.5),
        0 0 10px rgba(255, 183, 178, 0.3);
    animation: bubbleFloat linear infinite;
    pointer-events: none;
}

/* Блик на шарике */
.bubble::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 25%;
    height: 15%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
}
