@media screen and (min-width: 1300px) {
    .circle-container {
        position: relative;
        width: 500px;
        height: 500px;
    }
}

@media screen and (min-width: 1030px) and (max-width: 1300px) {
    .circle-container {
        position: relative;
        width: 400px;
        height: 400px;
    }
}

@media screen and (min-width: 800px) and (max-width: 1030px) {
    .circle-container {
        position: relative;
        width: 300px;
        height: 300px;
    }
}

@media screen and (max-width: 800px) {
    .circle-container {
        position: relative;
        width: 200px;
        height: 200px;
    }
}

.outer-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #0B0C10;
    border-radius: 50%;
    animation: rotate 8s linear infinite;
}

.inner-circle {
    position: absolute;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border: 1px solid #0B0C10;
    border-radius: 50%;
    animation: rotate-reverse 6s linear infinite;
}

.dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #06b6d4;
    border-radius: 50%;
}

.line {
    position: absolute;
    width: 2px;
    height: 50%;
    background-color: #06b6d4;
    transform-origin: bottom center;
}


@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-reverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@media (max-width: 768px) {
    .circle-container {
        width: 300px;
        height: 300px;
    }
}


@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.circle-group2 {
    animation: rotate 20s linear infinite;
    transform-origin: center;
}

.circle-container2 {}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.bg-gradient {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

@media (max-width: 768px) {
    .responsive-container {
        flex-direction: column;
    }

    .circle-container2 {
        width: 100%;
        margin-bottom: 2rem;
    }

    .content-container {
        width: 100%;
        padding: 0 1rem;
    }
}