.scroll-circle-container {
    position: absolute;
    top: 22vh;
    left: 29%;
    transform: translateX(-50%);
    cursor: pointer;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
    z-index: 1001;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.circle-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 28.8px;
    letter-spacing: 2px;
    text-anchor: middle;
    dominant-baseline: middle;
    fill: #fff;
    text-transform: uppercase;
}

.arrow-container {
    transform-origin: center;
    will-change: transform;
}

.arrow-icon {
    fill: #fff;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
    will-change: transform;
}

.outer-circle {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2;
}

.middle-circle {
    fill: none;
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 2;
    stroke-dasharray: 10 5;
}

.inner-circle {
    fill: none;
    stroke: #fff;
    stroke-width: 1;
}

.progress-circle {
    fill: none;
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 4;
    stroke-linecap: round;
    transform-origin: center;
    transform: rotate(-90deg);
    will-change: transform;
}

.pulse-circle {
    fill: rgba(255, 255, 255, 0.05);
    transform-origin: center;
    will-change: transform;
}

.orbit-dot {
    fill: #fff;
    transform-origin: 100px 100px;
    will-change: transform;
}

.particle {
    fill: rgba(255, 255, 255, 0.8);
    transform-origin: center;
    will-change: transform, opacity;
}

.loading-text {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0;
    will-change: transform, opacity;
    white-space: nowrap;
}

.scroll-hint {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    will-change: transform, opacity;
    white-space: nowrap;
}

/* Tablet styles */
@media (max-width: 1024px) {
    .scroll-circle-container {
        left: 25%;
        top: 20vh;
    }

    .circle-text {
        font-size: 13px;
        line-height: 26px;
    }

    .loading-text {
        font-size: 13px;
        bottom: -70px;
    }

    .scroll-hint {
        font-size: 16px;
        top: -50px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .scroll-circle-container {
        left: 20%;
        top: 80px;
        transform: translateX(-50%) scale(0.85);
    }

    .circle-text {
        font-size: 12px;
        line-height: 24px;
        letter-spacing: 1.5px;
    }

    .loading-text {
        font-size: 12px;
        bottom: -60px;
        letter-spacing: 1.5px;
    }

    .scroll-hint {
        font-size: 14px;
        top: -40px;
    }

    .outer-circle {
        stroke-width: 1.5;
    }

    .middle-circle {
        stroke-width: 1.5;
        stroke-dasharray: 8 4;
    }

    .progress-circle {
        stroke-width: 3;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .scroll-circle-container {
        left: 25%;
        transform: translateX(-50%) scale(0.75);
    }

    .loading-text {
        bottom: -50px;
    }

    .scroll-hint {
        top: -35px;
    }
}

/* Handle touch devices */
@media (hover: none) {
    .scroll-circle-container {
        cursor: default;
    }
    
    .scroll-hint {
        display: none;
    }
}