#ccb-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.ccb-bubble {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Colors based on settings */
.ccb-bubble.white { background: radial-gradient(circle at 30% 30%, #ffffff, #e6e6e6); }
.ccb-bubble.red { background: radial-gradient(circle at 30% 30%, #ff4d4d, #b30000); }
.ccb-bubble.green { background: radial-gradient(circle at 30% 30%, #4dff4d, #006600); }
.ccb-bubble.gold { background: radial-gradient(circle at 30% 30%, #ffd633, #b38f00); }

/* Animation */
@keyframes ccb-fall { from { transform: translateY(0); } to { transform: translateY(120vh); } }
@keyframes ccb-rise { from { transform: translateY(0); } to { transform: translateY(-120vh); } }
