/* Wrapper */
#ccarousel-wrapper {
    width: 320px;
    margin: 0 auto;
}

/* Main rotating ring */
#ccarousel {
    width: 320px;
    height: 320px;
    position: relative;
    border-radius: 50%;
    animation: ccarousel-rotate 20s linear infinite;
}

/* Pause state */
#ccarousel.ccarousel-paused {
    animation-play-state: paused;
}

/* Center button */
#ccarousel-center-btn {
    width: 60px;
    height: 60px;
    background: var(--amber);
    color: var(--slate-earth);
    border-radius: 50%;
    position: absolute;
    top: 130px;
    left: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

/* Circle buttons */
.ccarousel-circle {
    width: 70px;
    height: 70px;
    background: var(--tortoise);
    color: var(--cloud-dancer);
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: transform 0.3s;
}

.ccarousel-circle:hover {
    transform: scale(1.15);
}

/* Rotation animation */
@keyframes ccarousel-rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Cube container */
#ccube-container {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    padding-bottom: 100px;
}