/* Logo Animation Styles */
.logo-effect-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-center {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 50%;
    position: relative;
    z-index: 10;
    padding: 10px;
    box-shadow: 0 0 50px rgba(14, 165, 233, 0.3);
    overflow: hidden;
}

.logo-center img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

/* Rings */
/* Rings - Holographic Upgrade */
.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: 0.5s;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.1);
}

.ring-1 {
    width: 260px;
    height: 260px;
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid rgba(14, 165, 233, 0.3);
    animation: spinDirect 8s linear infinite, holoPulse 4s ease-in-out infinite;
    opacity: 0.8;
}

.ring-2 {
    width: 320px;
    height: 320px;
    border-left: 2px solid var(--accent);
    border-right: 1px dashed rgba(249, 115, 22, 0.4);
    animation: spinReverse 12s linear infinite;
    opacity: 0.6;
}

.ring-3 {
    width: 380px;
    height: 380px;
    border: 1px dotted rgba(255, 255, 255, 0.15);
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    animation: spinDirect 25s linear infinite;
}

/* Holographic Glow for Center */
.logo-center {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    position: relative;
    z-index: 10;
    padding: 10px;
    box-shadow:
        0 0 20px rgba(14, 165, 233, 0.4),
        0 0 40px rgba(14, 165, 233, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.8);
    overflow: hidden;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

@keyframes holoPulse {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(14, 165, 233, 0.1);
        border-top-color: var(--primary);
    }

    50% {
        box-shadow: 0 0 25px rgba(14, 165, 233, 0.4);
        border-top-color: #38bdf8;
    }
}

/* Particles */
.particle {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    filter: blur(2px);
    box-shadow: 0 0 10px currentColor;
    opacity: 0;
    animation: floatParticle 4s infinite ease-in-out;
}

.bg-primary {
    background: var(--primary);
    color: var(--primary);
}

.bg-secondary {
    background: var(--accent);
    color: var(--accent);
}

/* Particle Positions & Delays */
.p-1 {
    top: 10%;
    left: 50%;
    animation-delay: 0s;
}

.p-2 {
    top: 30%;
    right: 10%;
    animation-delay: 0.5s;
    width: 10px;
    height: 10px;
}

.p-3 {
    bottom: 20%;
    right: 20%;
    animation-delay: 1s;
}

.p-4 {
    bottom: 10%;
    left: 40%;
    animation-delay: 1.5s;
    width: 12px;
    height: 12px;
}

.p-5 {
    top: 40%;
    left: 10%;
    animation-delay: 2s;
}

.p-6 {
    top: 80%;
    left: 80%;
    animation-delay: 2.5s;
    width: 8px;
    height: 8px;
}

/* Animations */
@keyframes spinDirect {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinReverse {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.8;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo-effect-wrapper {
        width: 300px;
        height: 300px;
    }

    .logo-center {
        width: 150px;
        height: 150px;
    }

    .ring-1 {
        width: 190px;
        height: 190px;
    }

    .ring-2 {
        width: 230px;
        height: 230px;
    }

    .ring-3 {
        width: 270px;
        height: 270px;
    }
}