.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    animation: animate 25s linear infinite;
    bottom: -150px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.2; /* 统一设置半透明效果 */
    min-width: 65px; /* 最小显示尺寸 */
    min-height: 65px; /* 最小显示尺寸 */
    filter: brightness(0) invert(1); /* 确保SVG图标为白色 */
}

/* OpenAI Logo - 使用本地SVG文件 */
.circles li:nth-child(1) {
    left: calc(10% + (80% * var(--random-1, 0.25)));
    width: 80px;
    height: 80px;
    animation-delay: 0s;
    background-image: url("/assets/images/open.svg");
}

/* Midjourney Logo - 使用本地SVG文件 */
.circles li:nth-child(2) {
    left: calc(10% + (80% * var(--random-2, 0.1)));
    width: 70px;
    height: 70px;
    animation-delay: 2s;
    animation-duration: 12s;
    background-image: url("/assets/images/midjourney.svg");
}

/* Envato Logo - 使用本地SVG文件 */
.circles li:nth-child(3) {
    left: calc(10% + (80% * var(--random-3, 0.7)));
    width: 75px;
    height: 75px;
    animation-delay: 4s;
    background-image: url("/assets/images/envato.svg");
}

/* 矢量格式图标 - 使用本地SVG文件 */
.circles li:nth-child(4) {
    left: calc(10% + (80% * var(--random-4, 0.4)));
    width: 80px;
    height: 80px;
    animation-delay: 0s;
    animation-duration: 18s;
    background-image: url("/assets/images/vector.svg");
}

/* 视频图标 - 使用本地SVG文件 */
.circles li:nth-child(5) {
    left: calc(10% + (80% * var(--random-5, 0.65)));
    width: 65px;
    height: 65px;
    animation-delay: 0s;
    background-image: url("/assets/images/video.svg");
}

/* 音乐图标 - 使用本地SVG文件 */
.circles li:nth-child(6) {
    left: calc(10% + (80% * var(--random-6, 0.75)));
    width: 110px;
    height: 110px;
    animation-delay: 3s;
    background-image: url("/assets/images/music.svg");
}

/* 照片图标 - 使用本地SVG文件 */
.circles li:nth-child(7) {
    left: calc(10% + (80% * var(--random-7, 0.35)));
    width: 150px;
    height: 150px;
    animation-delay: 7s;
    background-image: url("/assets/images/image.svg");
}

/* 另一个OpenAI Logo变种 - 使用本地SVG文件 */
.circles li:nth-child(8) {
    left: calc(10% + (80% * var(--random-8, 0.5)));
    width: 85px;
    height: 85px;
    animation-delay: 15s;
    animation-duration: 45s;
    background-image: url("/assets/images/open.svg");
}

/* 另一个Midjourney Logo变种 - 使用本地SVG文件 */
.circles li:nth-child(9) {
    left: calc(10% + (80% * var(--random-9, 0.2)));
    width: 95px;
    height: 95px;
    animation-delay: 2s;
    animation-duration: 35s;
    background-image: url("/assets/images/midjourney.svg");
}

/* 另一个Envato Logo变种 - 使用本地SVG文件 */
.circles li:nth-child(10) {
    left: calc(10% + (80% * var(--random-10, 0.85)));
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
    background-image: url("/assets/images/envato.svg");
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
    }
}
