/* DigiX Preloader - Premium Collection (Advanced & Colorful) */
/* CSS Variables: --digix-color-1 (Primary), --digix-color-2 (Secondary) */

.digix-loader {
    /* Fixed container size - NO loader elements can exceed this */
    width: 80px !important;
    height: 80px !important;
    max-width: 80px;
    max-height: 80px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Prevent any child elements from overflowing */
    overflow: hidden;
    /* Ensure box stays contained */
    box-sizing: border-box;
}

/* Ensure ALL loader styles respect the container */
[class*="digix-loader-"] {
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
}

/* Prevent any absolutely positioned children from going outside */
.digix-loader>* {
    max-width: 100%;
    max-height: 100%;
}

/* 1. Rainbow Ring */
.digix-loader-1 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--digix-color-1);
    border-right-color: var(--digix-color-2);
    border-bottom-color: var(--digix-color-1);
    border-left-color: var(--digix-color-2);
    animation: spin-colorful 1s linear infinite;
    opacity: 0.8;
}

@keyframes spin-colorful {
    to {
        transform: rotate(360deg);
    }
}

/* 2. Neon Orbit */
.digix-loader-2 span {
    position: absolute;
    border-radius: 50%;
    animation: orbit-neon 2s linear infinite;
}

.digix-loader-2 span:nth-child(1) {
    width: 50px;
    height: 50px;
    border: 2px solid var(--digix-color-1);
    border-top-color: transparent;
    animation-duration: 1.5s;
}

.digix-loader-2 span:nth-child(2) {
    width: 35px;
    height: 35px;
    border: 2px solid var(--digix-color-2);
    border-bottom-color: transparent;
    animation-direction: reverse;
}

.digix-loader-2 span:nth-child(3) {
    width: 20px;
    height: 20px;
    border: 2px solid var(--digix-color-1);
    border-left-color: transparent;
    animation-duration: 3s;
}

.digix-loader-2 span:nth-child(4) {
    width: 10px;
    height: 10px;
    background: #fff;
    box-shadow: 0 0 10px #fff;
}

@keyframes orbit-neon {
    to {
        transform: rotate(360deg);
    }
}

/* 3. Liquid Gradient Blob */
.digix-loader-3 {
    filter: blur(10px) contrast(20);
    background: #fff;
    /* Needs white bg context usually, but we'll try isolated */
    mix-blend-mode: multiply;
    /* Optional trick */
}

.digix-loader-3 span {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--digix-color-1);
    animation: liquid-move 2s infinite ease-in-out;
}

.digix-loader-3 span:nth-child(2) {
    background: var(--digix-color-2);
    animation-delay: -0.5s;
}

.digix-loader-3 span:nth-child(3) {
    background: var(--digix-color-1);
    animation-delay: -1s;
}

.digix-loader-3 span:nth-child(4) {
    background: var(--digix-color-2);
    animation-delay: -1.5s;
}

@keyframes liquid-move {

    0%,
    100% {
        transform: translate(-15px, -15px);
    }

    33% {
        transform: translate(15px, -15px);
    }

    66% {
        transform: translate(-15px, 15px);
    }
}

/* 4. DNA Helix 3D */
.digix-loader-4 {
    perspective: 100px;
    width: 60px;
}

.digix-loader-4 span {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--digix-color-1);
    animation: dna-spin 2s infinite ease-in-out;
}

.digix-loader-4 span:nth-child(1) {
    left: 0;
    animation-delay: 0s;
    background: var(--digix-color-1);
}

.digix-loader-4 span:nth-child(2) {
    left: 15px;
    animation-delay: 0.2s;
    background: var(--digix-color-2);
}

.digix-loader-4 span:nth-child(3) {
    left: 30px;
    animation-delay: 0.4s;
    background: var(--digix-color-1);
}

.digix-loader-4 span:nth-child(4) {
    left: 45px;
    animation-delay: 0.6s;
    background: var(--digix-color-2);
}

@keyframes dna-spin {

    0%,
    100% {
        transform: translateY(-20px) scale(0.5);
        opacity: 0.5;
        z-index: 0;
    }

    50% {
        transform: translateY(20px) scale(1.2);
        opacity: 1;
        z-index: 10;
    }
}

/* 5. Traffic Lights Pulse */
.digix-loader-5 {
    gap: 8px;
}

.digix-loader-5 span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    transform: scale(0.8);
    animation: traffic-pulse 1.5s infinite;
}

.digix-loader-5 span:nth-child(1) {
    background: var(--digix-color-1);
    animation-delay: 0s;
    box-shadow: 0 0 10px var(--digix-color-1);
}

.digix-loader-5 span:nth-child(2) {
    background: var(--digix-color-2);
    animation-delay: 0.5s;
    box-shadow: 0 0 10px var(--digix-color-2);
}

.digix-loader-5 span:nth-child(3) {
    background: var(--digix-color-1);
    animation-delay: 1s;
    box-shadow: 0 0 10px var(--digix-color-1);
}

.digix-loader-5 span:nth-child(4) {
    display: none;
}

@keyframes traffic-pulse {
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

/* 6. Equalizer Bars */
.digix-loader-6 {
    align-items: flex-end;
    gap: 4px;
    height: 40px;
}

.digix-loader-6 span {
    width: 8px;
    background: linear-gradient(to top, var(--digix-color-1), var(--digix-color-2));
    animation: eq-bounce 1s infinite ease-in-out;
}

.digix-loader-6 span:nth-child(1) {
    animation-delay: -0.4s;
    height: 10px;
}

.digix-loader-6 span:nth-child(2) {
    animation-delay: -0.2s;
    height: 20px;
}

.digix-loader-6 span:nth-child(3) {
    animation-delay: 0s;
    height: 30px;
}

.digix-loader-6 span:nth-child(4) {
    animation-delay: -0.3s;
    height: 15px;
}

@keyframes eq-bounce {

    0%,
    100% {
        height: 10px;
    }

    50% {
        height: 40px;
    }
}

/* 7. Mosaic Grid */
.digix-loader-7 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 40px;
    height: 40px;
    gap: 4px;
}

.digix-loader-7 span {
    width: 100%;
    height: 100%;
    animation: mosaic-flip 2s infinite;
}

.digix-loader-7 span:nth-child(1) {
    background: var(--digix-color-1);
    animation-delay: 0s;
}

.digix-loader-7 span:nth-child(2) {
    background: var(--digix-color-2);
    animation-delay: 0.5s;
}

.digix-loader-7 span:nth-child(3) {
    background: var(--digix-color-2);
    animation-delay: 1s;
}

.digix-loader-7 span:nth-child(4) {
    background: var(--digix-color-1);
    animation-delay: 1.5s;
}

@keyframes mosaic-flip {
    0% {
        transform: rotateX(0);
    }

    50% {
        transform: rotateX(180deg);
    }

    100% {
        transform: rotateX(180deg) rotateY(180deg);
    }
}

/* 8. Hexagon Pulse */
.digix-loader-8 {
    position: relative;
    width: 50px;
    height: 50px;
}

.digix-loader-8 span {
    position: absolute;
    border: 2px solid;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: hex-pulse 2s infinite;
    opacity: 0;
}

.digix-loader-8 span:nth-child(1) {
    border-color: var(--digix-color-1);
    animation-delay: 0s;
}

.digix-loader-8 span:nth-child(2) {
    border-color: var(--digix-color-2);
    animation-delay: 0.5s;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
}

.digix-loader-8 span:nth-child(3) {
    border-color: var(--digix-color-1);
    animation-delay: 1s;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
}

.digix-loader-8 span:nth-child(4) {
    border-color: var(--digix-color-2);
    animation-delay: 1.5s;
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
}

@keyframes hex-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* 9. Newton's Cradle Colorful */
.digix-loader-9 {
    gap: 2px;
}

.digix-loader-9 span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.digix-loader-9 span:nth-child(1) {
    background: var(--digix-color-1);
    animation: cradle-left 1s infinite ease-in alternate;
}

.digix-loader-9 span:nth-child(2) {
    background: var(--digix-color-2);
}

.digix-loader-9 span:nth-child(3) {
    background: var(--digix-color-2);
}

.digix-loader-9 span:nth-child(4) {
    background: var(--digix-color-1);
    animation: cradle-right 1s infinite ease-in alternate;
}

@keyframes cradle-left {
    0% {
        transform: rotate(0) translateX(0);
    }

    50%,
    100% {
        transform: rotate(45deg) translateX(-15px) translateY(-5px);
    }
}

@keyframes cradle-right {

    0%,
    50% {
        transform: rotate(0) translateX(0);
    }

    100% {
        transform: rotate(-45deg) translateX(15px) translateY(-5px);
    }
}

/* 10. Circle Ripple Echo */
.digix-loader-10 span {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-radius: 50%;
    animation: ripple-c 2s infinite ease-out;
}

.digix-loader-10 span:nth-child(1) {
    border-color: var(--digix-color-1);
    animation-delay: 0s;
}

.digix-loader-10 span:nth-child(2) {
    border-color: var(--digix-color-2);
    animation-delay: 0.5s;
}

.digix-loader-10 span:nth-child(3) {
    border-color: var(--digix-color-1);
    animation-delay: 1s;
}

.digix-loader-10 span:nth-child(4) {
    border-color: var(--digix-color-2);
    animation-delay: 1.5s;
}

@keyframes ripple-c {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* 11. Glitch Box */
.digix-loader-11 {
    width: 40px;
    height: 40px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.digix-loader-11 span {
    position: absolute;
    width: 100%;
    height: 25%;
    left: 0;
    background: var(--digix-color-1);
    animation: glitch-box 0.5s infinite steps(2);
}

.digix-loader-11 span:nth-child(1) {
    top: 0;
    background: var(--digix-color-1);
    animation-delay: 0s;
    clip-path: inset(0 20% 0 0);
}

.digix-loader-11 span:nth-child(2) {
    top: 25%;
    background: var(--digix-color-2);
    animation-delay: 0.1s;
    clip-path: inset(0 0 0 20%);
}

.digix-loader-11 span:nth-child(3) {
    top: 50%;
    background: var(--digix-color-1);
    animation-delay: 0.2s;
    clip-path: inset(0 10% 0 30%);
}

.digix-loader-11 span:nth-child(4) {
    top: 75%;
    background: var(--digix-color-2);
    animation-delay: 0.3s;
    clip-path: inset(0 30% 0 0);
}

@keyframes glitch-box {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(2px, -2px);
    }

    60% {
        transform: translate(-2px, -2px);
    }

    80% {
        transform: translate(2px, 2px);
    }

    100% {
        transform: translate(0);
    }
}

/* 12. Tetris Drops */
.digix-loader-12 {
    width: 40px;
    height: 40px;
    display: flex;
    flex-wrap: wrap;
}

.digix-loader-12 span {
    width: 20px;
    height: 20px;
    animation: tetris-fall 1.5s infinite linear;
    opacity: 0;
}

.digix-loader-12 span:nth-child(1) {
    background: var(--digix-color-1);
    animation-delay: 0s;
}

.digix-loader-12 span:nth-child(2) {
    background: var(--digix-color-2);
    animation-delay: 0.2s;
}

.digix-loader-12 span:nth-child(3) {
    background: var(--digix-color-2);
    animation-delay: 0.4s;
}

.digix-loader-12 span:nth-child(4) {
    background: var(--digix-color-1);
    animation-delay: 0.6s;
}

@keyframes tetris-fall {
    0% {
        transform: translateY(-40px);
        opacity: 1;
    }

    50% {
        transform: translateY(0);
        opacity: 1;
    }

    90% {
        transform: translateY(0);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* 13. 3D Cube Spin */
.digix-loader-13 {
    width: 40px;
    height: 40px;
    transform-style: preserve-3d;
    animation: cube-spin-3d 3s infinite linear;
}

.digix-loader-13 span {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.8;
    border: 2px solid white;
}

.digix-loader-13 span:nth-child(1) {
    background: var(--digix-color-1);
    transform: translateZ(20px);
}

.digix-loader-13 span:nth-child(2) {
    background: var(--digix-color-2);
    transform: rotateY(90deg) translateZ(20px);
}

.digix-loader-13 span:nth-child(3) {
    background: var(--digix-color-1);
    transform: rotateY(180deg) translateZ(20px);
}

.digix-loader-13 span:nth-child(4) {
    background: var(--digix-color-2);
    transform: rotateX(90deg) translateZ(20px);
}

@keyframes cube-spin-3d {
    from {
        transform: rotateX(0) rotateY(0);
    }

    to {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

/* 14. Radar Sweep */
.digix-loader-14 {
    width: 60px;
    height: 60px;
    background: #111;
    border-radius: 50%;
    border: 2px solid var(--digix-color-1);
    overflow: hidden;
}

.digix-loader-14 span {
    position: absolute;
}

.digix-loader-14 span:nth-child(1) {
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, transparent 80%, var(--digix-color-1));
    border-radius: 50%;
    animation: radar-spin 2s linear infinite;
}

.digix-loader-14 span:nth-child(2) {
    width: 6px;
    height: 6px;
    background: var(--digix-color-2);
    border-radius: 50%;
    top: 20%;
    left: 30%;
    animation: blink 1s infinite;
}

.digix-loader-14 span:nth-child(3) {
    width: 6px;
    height: 6px;
    background: var(--digix-color-2);
    border-radius: 50%;
    top: 60%;
    left: 70%;
    animation: blink 2s infinite;
}

@keyframes radar-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* 15. Atom Orbit */
.digix-loader-15 {
    width: 60px;
    height: 60px;
    perspective: 1000px;
}

.digix-loader-15 span {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #ccc;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

.digix-loader-15 span:nth-child(1) {
    border-left-color: var(--digix-color-1);
    border-right-color: var(--digix-color-1);
    animation: atom-1 1s linear infinite;
}

.digix-loader-15 span:nth-child(2) {
    border-left-color: var(--digix-color-2);
    border-right-color: var(--digix-color-2);
    animation: atom-2 1s linear infinite;
}

.digix-loader-15 span:nth-child(3) {
    border-left-color: var(--digix-color-1);
    border-right-color: var(--digix-color-1);
    animation: atom-3 1s linear infinite;
}

.digix-loader-15 span:nth-child(4) {
    width: 10px;
    height: 10px;
    background: #fff;
    top: 25px;
    left: 25px;
    border: none;
}

@keyframes atom-1 {
    0% {
        transform: rotateX(70deg) rotateZ(0);
    }

    100% {
        transform: rotateX(70deg) rotateZ(360deg);
    }
}

@keyframes atom-2 {
    0% {
        transform: rotateX(-70deg) rotateZ(0);
    }

    100% {
        transform: rotateX(-70deg) rotateZ(360deg);
    }
}

@keyframes atom-3 {
    0% {
        transform: rotateY(70deg) rotateZ(0);
    }

    100% {
        transform: rotateY(70deg) rotateZ(360deg);
    }
}

/* 16. Clock Ticking */
.digix-loader-16 {
    width: 50px;
    height: 50px;
    border: 4px solid var(--digix-color-2);
    border-radius: 50%;
    background: #fff;
}

.digix-loader-16 span {
    position: absolute;
    background: var(--digix-color-1);
    transform-origin: bottom center;
    border-radius: 2px;
}

.digix-loader-16 span:nth-child(1) {
    width: 2px;
    height: 10px;
    top: 15px;
    left: 24px;
    background: var(--digix-color-1);
}

/* 12 marker */
.digix-loader-16 span:nth-child(2) {
    width: 4px;
    height: 15px;
    top: 10px;
    left: 23px;
    animation: clock 12s linear infinite;
    background: #000;
}

/* Hour */
.digix-loader-16 span:nth-child(3) {
    width: 2px;
    height: 20px;
    top: 5px;
    left: 24px;
    animation: clock 1s linear infinite;
    background: #f00;
}

/* Minute */
.digix-loader-16 span:nth-child(4) {
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
    top: 22px;
    left: 22px;
}

/* Center */
@keyframes clock {
    to {
        transform: rotate(360deg);
    }
}

/* 17. Battery Charge */
.digix-loader-17 {
    width: 40px;
    height: 20px;
    border: 2px solid var(--digix-color-1);
    border-radius: 2px;
    padding: 2px;
    display: flex;
    gap: 2px;
}

.digix-loader-17:after {
    content: '';
    position: absolute;
    right: -4px;
    top: 5px;
    width: 2px;
    height: 10px;
    background: var(--digix-color-1);
}

.digix-loader-17 span {
    width: 8px;
    height: 100%;
    background: #2ed573;
    opacity: 0;
    animation: charge 2s infinite;
}

.digix-loader-17 span:nth-child(1) {
    animation-delay: 0s;
}

.digix-loader-17 span:nth-child(2) {
    animation-delay: 0.5s;
    background: #ffa502;
}

.digix-loader-17 span:nth-child(3) {
    animation-delay: 1s;
    background: #ff4757;
}

.digix-loader-17 span:nth-child(4) {
    display: none;
}

@keyframes charge {

    0%,
    100% {
        opacity: 0;
    }

    25%,
    75% {
        opacity: 1;
    }
}

/* 18. Rain Cloud */
.digix-loader-18 {
    width: 60px;
    height: 60px;
}

.digix-loader-18 span:nth-child(4) {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 25px;
    background: #ccc;
    border-radius: 20px;
    box-shadow: 10px 10px 0 -5px #ccc inset;
}

/* Cloud */
.digix-loader-18 span:not(:nth-child(4)) {
    position: absolute;
    width: 3px;
    height: 10px;
    background: var(--digix-color-1);
    top: 40px;
    animation: rain 1s infinite linear;
}

.digix-loader-18 span:nth-child(1) {
    left: 20px;
    animation-delay: 0.2s;
}

.digix-loader-18 span:nth-child(2) {
    left: 30px;
    animation-delay: 0.4s;
}

.digix-loader-18 span:nth-child(3) {
    left: 40px;
    animation-delay: 0.6s;
}

@keyframes rain {
    to {
        transform: translateY(20px);
        opacity: 0;
    }
}

/* 19. Infinity Loop */
.digix-loader-19 {
    width: 60px;
    height: 30px;
}

.digix-loader-19 span {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: infinity 2s infinite linear;
}

.digix-loader-19 span:nth-child(1) {
    background: var(--digix-color-1);
    animation-delay: 0s;
}

.digix-loader-19 span:nth-child(2) {
    background: var(--digix-color-2);
    animation-delay: 0.2s;
}

.digix-loader-19 span:nth-child(3) {
    background: var(--digix-color-2);
    animation-delay: 0.4s;
}

.digix-loader-19 span:nth-child(4) {
    background: var(--digix-color-1);
    animation-delay: 0.6s;
}

@keyframes infinity {
    0% {
        transform: translateX(0) translateY(0);
    }

    25% {
        transform: translateX(15px) translateY(10px);
    }

    50% {
        transform: translateX(30px) translateY(0);
    }

    75% {
        transform: translateX(15px) translateY(-10px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

/* 20. Gears Cog */
.digix-loader-20 {
    width: 60px;
    height: 60px;
}

.digix-loader-20 span {
    position: absolute;
    border: 3px dashed;
    border-radius: 50%;
    animation: gear-spin 4s infinite linear;
}

.digix-loader-20 span:nth-child(1) {
    width: 50px;
    height: 50px;
    border-color: var(--digix-color-1);
}

.digix-loader-20 span:nth-child(2) {
    width: 35px;
    height: 35px;
    border-color: var(--digix-color-2);
    animation-direction: reverse;
    animation-duration: 3s;
}

.digix-loader-20 span:nth-child(3) {
    width: 20px;
    height: 20px;
    border-color: var(--digix-color-1);
    animation-duration: 2s;
}

.digix-loader-20 span:nth-child(4) {
    width: 8px;
    height: 8px;
    background: #fff;
    border: none;
}

@keyframes gear-spin {
    to {
        transform: rotate(360deg);
    }
}

/* 21. Hourglass Flip */
.digix-loader-21 {
    width: 40px;
    height: 60px;
}

.digix-loader-21 span {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
}

.digix-loader-21 span:nth-child(1) {
    top: 0;
    border-top: 30px solid var(--digix-color-1);
    animation: hourglass-top 2s infinite;
}

.digix-loader-21 span:nth-child(2) {
    bottom: 0;
    border-bottom: 30px solid var(--digix-color-1);
    animation: hourglass-bottom 2s infinite;
}

@keyframes hourglass-top {
    0% {
        border-top-color: var(--digix-color-1);
    }

    50% {
        border-top-color: rgba(255, 0, 85, 0.2);
    }

    100% {
        border-top-color: var(--digix-color-1);
    }
}

@keyframes hourglass-bottom {
    0% {
        border-bottom-color: rgba(255, 0, 85, 0.2);
    }

    50% {
        border-bottom-color: var(--digix-color-1);
    }

    100% {
        border-bottom-color: rgba(255, 0, 85, 0.2);
    }
}

/* 22. Galaxy Spiral */
.digix-loader-22 {
    width: 60px;
    height: 60px;
    animation: spin-slow 5s linear infinite;
}

.digix-loader-22 span {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 10%, #fff 2px, transparent 3px);
}

.digix-loader-22 span:nth-child(1) {
    transform: rotate(0deg);
}

.digix-loader-22 span:nth-child(2) {
    transform: rotate(90deg);
}

.digix-loader-22 span:nth-child(3) {
    transform: rotate(180deg);
}

.digix-loader-22 span:nth-child(4) {
    background: radial-gradient(circle, #7b68ee 10%, transparent 60%);
    width: 20px;
    height: 20px;
    top: 20px;
    left: 20px;
}

/* Core */
@keyframes spin-slow {
    to {
        transform: rotate(360deg);
    }
}

/* 23. Fireworks */
.digix-loader-23 {
    width: 60px;
    height: 60px;
}

.digix-loader-23 span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    animation: firework 1s ease-out infinite;
}

.digix-loader-23 span:nth-child(1) {
    background: #f00;
    transform: translate(0, -20px);
}

.digix-loader-23 span:nth-child(2) {
    background: #0f0;
    transform: translate(20px, 0);
    animation-delay: 0.1s;
}

.digix-loader-23 span:nth-child(3) {
    background: #00f;
    transform: translate(0, 20px);
    animation-delay: 0.2s;
}

.digix-loader-23 span:nth-child(4) {
    background: #ff0;
    transform: translate(-20px, 0);
    animation-delay: 0.3s;
}

@keyframes firework {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }

    100% {
        transform: scale(2);
        opacity: 0;
        box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0);
    }
}

/* 24. Heartbeat */
.digix-loader-24 {
    width: 50px;
    height: 50px;
    animation: heartbeat 1.2s infinite;
}

.digix-loader-24 span {
    position: absolute;
    width: 25px;
    height: 40px;
    background: var(--digix-color-1);
    border-radius: 25px 25px 0 0;
}

.digix-loader-24 span:nth-child(1) {
    transform: rotate(-45deg);
    left: 7px;
    top: 5px;
}

.digix-loader-24 span:nth-child(2) {
    transform: rotate(45deg);
    right: 7px;
    top: 5px;
}

.digix-loader-24 span:nth-child(3) {
    display: none;
}

.digix-loader-24 span:nth-child(4) {
    display: none;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* 25. WiFi Signal */
.digix-loader-25 {
    align-items: flex-end;
    width: 40px;
    height: 40px;
    overflow: hidden;
}

.digix-loader-25 span {
    position: absolute;
    border: 3px solid transparent;
    border-top-color: var(--digix-color-2);
    border-radius: 50%;
    animation: wifi-fade 1.5s infinite;
}

.digix-loader-25 span:nth-child(1) {
    width: 40px;
    height: 40px;
    top: 10px;
    left: 0;
}

.digix-loader-25 span:nth-child(2) {
    width: 26px;
    height: 26px;
    top: 24px;
    left: 7px;
    animation-delay: 0.3s;
}

.digix-loader-25 span:nth-child(3) {
    width: 12px;
    height: 12px;
    top: 38px;
    left: 14px;
    background: var(--digix-color-2);
    border: none;
    animation-delay: 0.6s;
}

.digix-loader-25 span:nth-child(4) {
    display: none;
}

@keyframes wifi-fade {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

/* 26. Coffee Steam */
.digix-loader-26 {
    width: 40px;
    height: 40px;
}

.digix-loader-26:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 30px;
    height: 20px;
    background: #6f4e37;
    border-radius: 0 0 10px 10px;
}

.digix-loader-26 span {
    position: absolute;
    width: 6px;
    height: 15px;
    background: #ddd;
    border-radius: 3px;
    bottom: 25px;
    animation: steam 2s infinite ease-out;
    opacity: 0;
}

.digix-loader-26 span:nth-child(1) {
    left: 5px;
    animation-delay: 0s;
}

.digix-loader-26 span:nth-child(2) {
    left: 14px;
    animation-delay: 0.5s;
}

.digix-loader-26 span:nth-child(3) {
    left: 23px;
    animation-delay: 1s;
}

.digix-loader-26 span:nth-child(4) {
    display: none;
}

@keyframes steam {
    0% {
        transform: translateY(0) scaleY(1);
        opacity: 0.8;
    }

    100% {
        transform: translateY(-20px) scaleY(1.5);
        opacity: 0;
    }
}

/* 27. Rotating Square */
.digix-loader-27 {
    width: 40px;
    height: 40px;
    background: var(--digix-color-1);
    animation: rotate-sq 1.2s infinite ease-in-out;
}

.digix-loader-27 span {
    display: none;
}

@keyframes rotate-sq {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

/* 28. Elastic Balls */
.digix-loader-28 {
    width: 60px;
    height: 20px;
}

.digix-loader-28 span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    animation: elastic 1.2s infinite ease-in-out alternate;
}

.digix-loader-28 span:nth-child(1) {
    background: #ff00cc;
    transform: translateX(-30px);
}

.digix-loader-28 span:nth-child(2) {
    background: var(--digix-color-1)399;
    animation-delay: 0.2s;
}

.digix-loader-28 span:nth-child(3) {
    background: var(--digix-color-2);
    transform: translateX(30px);
    animation-delay: 0.4s;
}

@keyframes elastic {
    0% {
        transform: translateX(-30px);
    }

    100% {
        transform: translateX(30px);
    }
}

/* 29. Scanner Bar */
.digix-loader-29 {
    width: 50px;
    height: 50px;
    border: 2px solid #00ff00;
    background: linear-gradient(#00ff00 2px, transparent 2px);
    background-size: 100% 10px;
}

.digix-loader-29 span:nth-child(1) {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #00ff00;
    top: 0;
    left: 0;
    animation: scan 2s infinite linear;
    box-shadow: 0 0 10px #00ff00;
}

.digix-loader-29 span:not(:nth-child(1)) {
    display: none;
}

@keyframes scan {
    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

/* 30. Typing Dots */
.digix-loader-30 {
    gap: 6px;
}

.digix-loader-30 span {
    width: 10px;
    height: 10px;
    background: var(--digix-color-1);
    border-radius: 50%;
    animation: typing 1s infinite alternate;
}

.digix-loader-30 span:nth-child(1) {
    animation-delay: 0s;
    background: var(--digix-color-1);
}

.digix-loader-30 span:nth-child(2) {
    animation-delay: 0.2s;
    background: var(--digix-color-2);
}

.digix-loader-30 span:nth-child(3) {
    animation-delay: 0.4s;
    background: var(--digix-color-2);
}

.digix-loader-30 span:nth-child(4) {
    display: none;
}

@keyframes typing {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

/* 31. Upload Arrow */
.digix-loader-31 {
    width: 40px;
    height: 40px;
}

.digix-loader-31 span:nth-child(1) {
    position: absolute;
    width: 4px;
    height: 20px;
    background: var(--digix-color-1);
    left: 18px;
    top: 10px;
    animation: upload-arrow 1s infinite;
}

.digix-loader-31 span:nth-child(2) {
    position: absolute;
    width: 12px;
    height: 12px;
    border-top: 4px solid var(--digix-color-1);
    border-right: 4px solid var(--digix-color-1);
    left: 14px;
    top: 10px;
    transform: rotate(-45deg);
    animation: upload-head 1s infinite;
}

.digix-loader-31 span:nth-child(3) {
    position: absolute;
    width: 30px;
    height: 4px;
    background: var(--digix-color-1);
    left: 5px;
    bottom: 5px;
}

.digix-loader-31 span:nth-child(4) {
    display: none;
}

@keyframes upload-arrow {
    0% {
        transform: translateY(10px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10px);
        opacity: 0;
    }
}

@keyframes upload-head {
    0% {
        transform: translateY(10px) rotate(-45deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10px) rotate(-45deg);
        opacity: 0;
    }
}

/* 32. Chat Bubbles */
.digix-loader-32 {
    gap: 4px;
}

.digix-loader-32 span {
    width: 20px;
    height: 20px;
    background: #ddd;
    border-radius: 50% 50% 0 50%;
    animation: chat-pop 1.5s infinite;
}

.digix-loader-32 span:nth-child(1) {
    background: #ff00cc;
    animation-delay: 0s;
}

.digix-loader-32 span:nth-child(2) {
    background: #00ccff;
    animation-delay: 0.5s;
    transform: scaleX(-1);
    border-radius: 50% 50% 50% 0;
}

.digix-loader-32 span:nth-child(3) {
    display: none;
}

.digix-loader-32 span:nth-child(4) {
    display: none;
}

@keyframes chat-pop {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* 33. Music Note */
.digix-loader-33 {
    width: 40px;
    height: 40px;
}

.digix-loader-33 span:nth-child(1) {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--digix-color-1);
    border-radius: 50%;
    animation: note-ripple 2s infinite;
}

.digix-loader-33 span:nth-child(2) {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--digix-color-1);
    border-radius: 50%;
    bottom: 5px;
    left: 5px;
}

.digix-loader-33 span:nth-child(3) {
    position: absolute;
    width: 4px;
    height: 25px;
    background: var(--digix-color-1);
    bottom: 10px;
    left: 16px;
}

.digix-loader-33 span:nth-child(4) {
    position: absolute;
    width: 10px;
    height: 4px;
    background: var(--digix-color-1);
    bottom: 35px;
    left: 16px;
    transform: rotate(-20deg);
}

@keyframes note-ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* 34. Sun Rotate */
.digix-loader-34 {
    width: 60px;
    height: 60px;
    animation: spin-linear 5s infinite;
}

.digix-loader-34 span {
    position: absolute;
}

.digix-loader-34 span:nth-child(1) {
    width: 20px;
    height: 20px;
    background: var(--digix-color-2);
    border-radius: 50%;
    top: 20px;
    left: 20px;
    box-shadow: 0 0 10px var(--digix-color-2);
}

.digix-loader-34 span:nth-child(2) {
    width: 60px;
    height: 2px;
    background: var(--digix-color-2);
    top: 29px;
    left: 0;
}

.digix-loader-34 span:nth-child(3) {
    width: 2px;
    height: 60px;
    background: var(--digix-color-2);
    top: 0;
    left: 29px;
}

.digix-loader-34 span:nth-child(4) {
    width: 40px;
    height: 40px;
    border: 2px dashed #ff9900;
    border-radius: 50%;
    top: 10px;
    left: 10px;
}

@keyframes spin-linear {
    to {
        transform: rotate(360deg);
    }
}

/* 35. Moon Eclipse */
.digix-loader-35 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--digix-color-2);
    overflow: hidden;
}

.digix-loader-35 span:nth-child(1) {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    left: -60px;
    animation: eclipse 3s infinite ease-in-out;
}

.digix-loader-35 span:not(:nth-child(1)) {
    display: none;
}

@keyframes eclipse {
    0% {
        left: -60px;
    }

    50% {
        left: 0;
    }

    100% {
        left: 60px;
    }
}

/* 36. Pyramid Spin */
.digix-loader-36 {
    width: 50px;
    height: 50px;
    transform-style: preserve-3d;
    animation: pyramid-spin 2s infinite linear;
}

.digix-loader-36 span {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid rgba(255, 0, 85, 0.7);
    left: 0;
    top: 0;
    transform-origin: 50% 100%;
}

.digix-loader-36 span:nth-child(1) {
    transform: translateZ(10px) rotateX(30deg);
}

.digix-loader-36 span:nth-child(2) {
    transform: rotateY(120deg) translateZ(10px) rotateX(30deg);
    border-bottom-color: rgba(0, 255, 170, 0.7);
}

.digix-loader-36 span:nth-child(3) {
    transform: rotateY(240deg) translateZ(10px) rotateX(30deg);
    border-bottom-color: rgba(0, 170, 255, 0.7);
}

@keyframes pyramid-spin {
    to {
        transform: rotateY(360deg);
    }
}

/* 37. Diamond Sparkle */
.digix-loader-37 {
    width: 40px;
    height: 40px;
    transform: rotate(45deg);
    background: #00d2ff;
    animation: pulse-diamond 1.5s infinite;
}

.digix-loader-37 span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    animation: sparkle 1s infinite;
}

.digix-loader-37 span:nth-child(1) {
    top: 0;
    left: 20px;
}

.digix-loader-37 span:nth-child(2) {
    top: 20px;
    left: 0;
    animation-delay: 0.2s;
}

.digix-loader-37 span:nth-child(3) {
    bottom: 0;
    left: 20px;
    animation-delay: 0.4s;
}

.digix-loader-37 span:nth-child(4) {
    top: 20px;
    right: 0;
    animation-delay: 0.6s;
}

@keyframes pulse-diamond {
    50% {
        transform: rotate(45deg) scale(0.9);
        opacity: 0.8;
    }
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
        transform: scale(2);
    }
}

/* 38. Yin Yang */
.digix-loader-38 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(to right, #fff 50%, #000 50%);
    border: 2px solid #ccc;
    animation: yinyang 2s infinite linear;
}

.digix-loader-38:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    box-shadow: inset 0 0 0 8px #000;
}

.digix-loader-38:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #000;
    border-radius: 50%;
    box-shadow: inset 0 0 0 8px #fff;
}

.digix-loader-38 span {
    display: none;
}

@keyframes yinyang {
    to {
        transform: rotate(360deg);
    }
}

/* 39. Spiral Optical */
.digix-loader-39 {
    width: 60px;
    height: 60px;
    background: repeating-conic-gradient(#000 0% 5%, #fff 5% 10%);
    border-radius: 50%;
    animation: spin-opt 2s linear infinite;
}

.digix-loader-39 span {
    display: none;
}

@keyframes spin-opt {
    to {
        transform: rotate(360deg);
    }
}

/* 40. Ultimate Pulse */
.digix-loader-40 {
    width: 60px;
    height: 60px;
}

.digix-loader-40 span {
    position: absolute;
    inset: 0;
    border: 4px solid transparent;
    border-radius: 50%;
    animation: ultimate 2s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
}

.digix-loader-40 span:nth-child(1) {
    border-top-color: var(--digix-color-1);
    animation-delay: -1.5s;
}

.digix-loader-40 span:nth-child(2) {
    border-right-color: var(--digix-color-2);
    animation-delay: -1s;
}

.digix-loader-40 span:nth-child(3) {
    border-bottom-color: var(--digix-color-1);
    animation-delay: -0.5s;
}

.digix-loader-40 span:nth-child(4) {
    border-left-color: var(--digix-color-2);
    animation-delay: 0s;
}

@keyframes ultimate {
    0% {
        transform: rotate(0) scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: rotate(360deg) scale(1.2);
        opacity: 0;
    }
}

/* --- ULTRA ADVANCED LOADERS (41-80) --- */

/* 41. Plasma Ball */
.digix-loader-41 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #000;
    overflow: hidden;
}

.digix-loader-41 span {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 200, 0.8), transparent 60%);
    mix-blend-mode: screen;
    animation: plasma 2s infinite linear;
}

.digix-loader-41 span:nth-child(2) {
    background: radial-gradient(circle at 30% 30%, rgba(0, 255, 100, 0.8), transparent 50%);
    animation-duration: 3s;
    animation-direction: reverse;
}

.digix-loader-41 span:nth-child(3) {
    background: radial-gradient(circle at 70% 70%, rgba(0, 100, 255, 0.8), transparent 50%);
    animation-duration: 4s;
}

.digix-loader-41 span:nth-child(4) {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    animation: none;
}

@keyframes plasma {
    0% {
        transform: scale(1) rotate(0);
    }

    50% {
        transform: scale(1.2) rotate(180deg);
    }

    100% {
        transform: scale(1) rotate(360deg);
    }
}

/* 42. Hologram Pyramid */
.digix-loader-42 {
    width: 60px;
    height: 60px;
    perspective: 200px;
    transform-style: preserve-3d;
    animation: holo-spin 4s infinite linear;
}

.digix-loader-42 span {
    position: absolute;
    width: 0;
    height: 0;
    border: 30px solid transparent;
    border-bottom: 50px solid rgba(0, 255, 255, 0.2);
    top: -20px;
    left: 0;
    transform-origin: 50% 100%;
}

.digix-loader-42 span:nth-child(1) {
    transform: rotateY(0deg) translateZ(10px) rotateX(30deg);
    border-bottom-color: rgba(0, 255, 255, 0.4);
}

.digix-loader-42 span:nth-child(2) {
    transform: rotateY(90deg) translateZ(10px) rotateX(30deg);
    border-bottom-color: rgba(0, 255, 255, 0.6);
}

.digix-loader-42 span:nth-child(3) {
    transform: rotateY(180deg) translateZ(10px) rotateX(30deg);
    border-bottom-color: rgba(0, 255, 255, 0.4);
}

.digix-loader-42 span:nth-child(4) {
    transform: rotateY(270deg) translateZ(10px) rotateX(30deg);
    border-bottom-color: rgba(0, 255, 255, 0.2);
}

@keyframes holo-spin {
    to {
        transform: rotateY(360deg);
    }
}

/* 43. Vortex Tunnel */
.digix-loader-43 {
    width: 60px;
    height: 60px;
    background: #000;
    overflow: hidden;
    border-radius: 5px;
}

.digix-loader-43 span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--digix-color-1);
    border-radius: 50%;
    animation: vortex 2s infinite cubic-bezier(0.1, 0.5, 0.9, 0.1);
}

.digix-loader-43 span:nth-child(1) {
    width: 10px;
    height: 10px;
    animation-delay: 0s;
    border-color: var(--digix-color-1);
}

.digix-loader-43 span:nth-child(2) {
    width: 10px;
    height: 10px;
    animation-delay: 0.2s;
    border-color: #ff00aa;
}

.digix-loader-43 span:nth-child(3) {
    width: 10px;
    height: 10px;
    animation-delay: 0.4s;
    border-color: #ff00ff;
}

.digix-loader-43 span:nth-child(4) {
    width: 10px;
    height: 10px;
    animation-delay: 0.6s;
    border-color: #aa00ff;
}

@keyframes vortex {
    0% {
        width: 10px;
        height: 10px;
        opacity: 1;
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        width: 80px;
        height: 80px;
        opacity: 0;
        transform: translate(-50%, -50%) rotate(180deg);
    }
}

/* 44. Cyber Pulse */
.digix-loader-44 {
    width: 50px;
    height: 50px;
    background: #111;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.digix-loader-44 span {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: var(--digix-color-2);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: cyber-flash 0.5s infinite alternate;
}

.digix-loader-44 span:nth-child(2) {
    background: transparent;
    border: 2px solid #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: none;
}

.digix-loader-44 span:not(:nth-child(1)):not(:nth-child(2)) {
    display: none;
}

@keyframes cyber-flash {
    0% {
        opacity: 0.2;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 20px var(--digix-color-2);
    }
}

/* 45. Liquid Metal */
.digix-loader-45 {
    width: 60px;
    height: 60px;
    filter: contrast(10) blur(5px);
    background: #fff;
    mix-blend-mode: multiply;
}

.digix-loader-45 span {
    position: absolute;
    width: 15px;
    height: 15px;
    background: #000;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.digix-loader-45 span:nth-child(1) {
    animation: liquid-orbit 2s infinite ease-in-out;
}

.digix-loader-45 span:nth-child(2) {
    animation: liquid-orbit 3s infinite ease-in-out reverse;
    width: 20px;
    height: 20px;
}

.digix-loader-45 span:nth-child(3) {
    animation: liquid-orbit 4s infinite ease-in-out;
    width: 10px;
    height: 10px;
}

.digix-loader-45 span:nth-child(4) {
    width: 25px;
    height: 25px;
}

/* Core */
@keyframes liquid-orbit {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(20px);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(20px);
    }
}

/* 46. Particle Burst */
.digix-loader-46 {
    width: 60px;
    height: 60px;
}

.digix-loader-46 span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--digix-color-2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: burst 1.5s infinite cubic-bezier(0, 0, 0.2, 1);
}

.digix-loader-46 span:nth-child(1) {
    --x: 30px;
    --y: 0px;
    animation-delay: 0s;
}

.digix-loader-46 span:nth-child(2) {
    --x: -20px;
    --y: 20px;
    animation-delay: 0.1s;
    background: var(--digix-color-1);
}

.digix-loader-46 span:nth-child(3) {
    --x: -20px;
    --y: -20px;
    animation-delay: 0.2s;
    background: var(--digix-color-2);
}

.digix-loader-46 span:nth-child(4) {
    --x: 0px;
    --y: 30px;
    animation-delay: 0.3s;
    background: var(--digix-color-1);
}

@keyframes burst {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(0);
        opacity: 0;
    }
}

/* 47. DNA Detailed */
.digix-loader-47 {
    display: flex;
    gap: 4px;
    height: 40px;
    align-items: center;
}

.digix-loader-47 span {
    width: 6px;
    height: 6px;
    background: var(--digix-color-1);
    border-radius: 50%;
    animation: dna-complex 1.5s infinite ease-in-out;
}

.digix-loader-47 span:nth-child(1) {
    animation-delay: -0.6s;
}

.digix-loader-47 span:nth-child(2) {
    animation-delay: -0.4s;
    background: var(--digix-color-2);
}

.digix-loader-47 span:nth-child(3) {
    animation-delay: -0.2s;
    background: var(--digix-color-2);
}

.digix-loader-47 span:nth-child(4) {
    animation-delay: 0s;
    background: var(--digix-color-1);
}

@keyframes dna-complex {

    0%,
    100% {
        transform: translateY(-15px);
    }

    50% {
        transform: translateY(15px);
    }
}

/* 48. Solar System */
.digix-loader-48 {
    width: 60px;
    height: 60px;
}

.digix-loader-48 span {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.digix-loader-48 span:nth-child(1) {
    width: 20px;
    height: 20px;
    background: var(--digix-color-2);
    top: 20px;
    left: 20px;
    border: none;
    box-shadow: 0 0 15px var(--digix-color-2);
}

/* Sun */
.digix-loader-48 span:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 10px;
    left: 10px;
    animation: orbit 2s linear infinite;
}

.digix-loader-48 span:nth-child(2):after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--digix-color-1);
    border-radius: 50%;
    top: 0;
    left: 50%;
}

.digix-loader-48 span:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 0;
    left: 0;
    animation: orbit 4s linear infinite;
}

.digix-loader-48 span:nth-child(3):after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff4757;
    border-radius: 50%;
    top: 50%;
    right: -4px;
}

.digix-loader-48 span:nth-child(4) {
    display: none;
}

@keyframes orbit {
    to {
        transform: rotate(360deg);
    }
}

/* 49. Sonar Wave */
.digix-loader-49 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #001100;
    border: 1px solid #00ff00;
    overflow: hidden;
}

.digix-loader-49 span:nth-child(1) {
    position: absolute;
    width: 25px;
    height: 25px;
    top: 12.5px;
    left: 12.5px;
    background: conic-gradient(transparent 50%, rgba(0, 255, 0, 0.5));
    border-radius: 50%;
    animation: sonar-sweep 2s linear infinite;
}

.digix-loader-49 span:nth-child(2) {
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(0, 255, 0, 0.3);
    top: 50%;
}

.digix-loader-49 span:nth-child(3) {
    position: absolute;
    width: 1px;
    height: 100%;
    background: rgba(0, 255, 0, 0.3);
    left: 50%;
}

.digix-loader-49 span:nth-child(4) {
    position: absolute;
    top: 10px;
    left: 30px;
    width: 4px;
    height: 4px;
    background: #00ff00;
    border-radius: 50%;
    animation: blink-dot 2s infinite;
}

@keyframes sonar-sweep {
    to {
        transform: rotate(360deg);
    }
}

@keyframes blink-dot {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

/* 50. Fiber Optic */
.digix-loader-50 {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.digix-loader-50 span {
    width: 50px;
    height: 2px;
    background: var(--digix-color-1);
    position: relative;
    overflow: hidden;
}

.digix-loader-50 span:after {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--digix-color-2), transparent);
    animation: fiber 1s infinite linear;
}

.digix-loader-50 span:nth-child(2):after {
    animation-delay: 0.2s;
    background: linear-gradient(90deg, transparent, var(--digix-color-1), transparent);
}

.digix-loader-50 span:nth-child(3):after {
    animation-delay: 0.4s;
    background: linear-gradient(90deg, transparent, var(--digix-color-1), transparent);
}

.digix-loader-50 span:nth-child(4):after {
    animation-delay: 0.6s;
    background: linear-gradient(90deg, transparent, var(--digix-color-2), transparent);
}

@keyframes fiber {
    to {
        left: 100%;
    }
}

/* 51. Ripple Box */
.digix-loader-51 {
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
}

.digix-loader-51 span {
    position: absolute;
    inset: 0;
    border: 2px solid #fff;
    opacity: 0;
    animation: box-ripple 2s infinite;
}

.digix-loader-51 span:nth-child(1) {
    border-color: var(--digix-color-1);
    animation-delay: 0s;
}

.digix-loader-51 span:nth-child(2) {
    border-color: var(--digix-color-2);
    animation-delay: 0.5s;
}

.digix-loader-51 span:nth-child(3) {
    border-color: var(--digix-color-1);
    animation-delay: 1s;
}

.digix-loader-51 span:nth-child(4) {
    border-color: var(--digix-color-2);
    animation-delay: 1.5s;
}

@keyframes box-ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* 52. Segment Spin */
.digix-loader-52 {
    width: 50px;
    height: 50px;
}

.digix-loader-52 span {
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    background: var(--digix-color-1);
    animation: segment 2s infinite ease-in-out;
}

.digix-loader-52 span:nth-child(2) {
    left: 25px;
    background: var(--digix-color-2);
    animation-delay: 0.5s;
}

.digix-loader-52 span:nth-child(3) {
    top: 25px;
    left: 25px;
    background: var(--digix-color-1);
    animation-delay: 1s;
}

.digix-loader-52 span:nth-child(4) {
    top: 25px;
    background: var(--digix-color-2);
    animation-delay: 1.5s;
}

@keyframes segment {
    0% {
        transform: scale(1);
        border-radius: 0;
    }

    50% {
        transform: scale(0.5) rotate(90deg);
        border-radius: 50%;
    }

    100% {
        transform: scale(1) rotate(180deg);
        border-radius: 0;
    }
}

/* 53. Triangle Force */
.digix-loader-53 {
    width: 60px;
    height: 60px;
}

.digix-loader-53 span {
    position: absolute;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-bottom: 25px solid var(--digix-color-1);
    top: 10px;
    left: 15px;
    animation: tri-force 2s infinite;
    transform-origin: 50% 66%;
}

.digix-loader-53 span:nth-child(2) {
    border-bottom-color: var(--digix-color-2);
    transform: rotate(120deg) translateY(20px);
    animation-delay: 0.3s;
}

.digix-loader-53 span:nth-child(3) {
    border-bottom-color: var(--digix-color-1);
    transform: rotate(240deg) translateY(20px);
    animation-delay: 0.6s;
}

.digix-loader-53 span:nth-child(4) {
    display: none;
}

@keyframes tri-force {
    50% {
        transform: rotate(var(--rot)) translateY(35px) scale(0.5);
    }
}

/* 54. Hypno Wheel */
.digix-loader-54 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: repeating-conic-gradient(var(--digix-color-1) 0 10deg, var(--digix-color-1) 10deg 20deg);
    animation: spin 1s infinite linear;
}

.digix-loader-54 span {
    display: none;
}

/* 55. Digital Rain (Matrix) */
.digix-loader-55 {
    display: flex;
    gap: 5px;
    height: 40px;
}

.digix-loader-55 span {
    width: 4px;
    height: 10px;
    background: #0f0;
    animation: matrix-rain 1s infinite linear;
    opacity: 0.2;
}

.digix-loader-55 span:nth-child(1) {
    animation-delay: 0.2s;
    height: 20px;
}

.digix-loader-55 span:nth-child(2) {
    animation-delay: 0.5s;
    height: 30px;
    background: #cfc;
}

.digix-loader-55 span:nth-child(3) {
    animation-delay: 0.8s;
    height: 25px;
}

.digix-loader-55 span:nth-child(4) {
    animation-delay: 0.1s;
    height: 15px;
}

@keyframes matrix-rain {
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* 56. Arrow Chase */
.digix-loader-56 {
    width: 50px;
    height: 50px;
    animation: spin 1.5s infinite linear;
}

.digix-loader-56 span {
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 3px solid var(--digix-color-2);
    border-right: 3px solid var(--digix-color-2);
    top: 5px;
    left: 20px;
    transform: rotate(45deg);
}

.digix-loader-56 span:nth-child(2) {
    top: 20px;
    left: 35px;
    transform: rotate(135deg);
    border-color: var(--digix-color-1);
    animation-delay: 0.2s;
}

.digix-loader-56 span:nth-child(3) {
    top: 35px;
    left: 20px;
    transform: rotate(225deg);
    border-color: var(--digix-color-1);
    animation-delay: 0.4s;
}

.digix-loader-56 span:nth-child(4) {
    top: 20px;
    left: 5px;
    transform: rotate(315deg);
    border-color: var(--digix-color-2);
    animation-delay: 0.6s;
}

/* 57. Zipper */
.digix-loader-57 {
    width: 60px;
    height: 20px;
    display: flex;
    justify-content: space-between;
}

.digix-loader-57 span {
    width: 10px;
    height: 10px;
    background: var(--digix-color-1);
    transform: skewX(-20deg);
    animation: zipper 0.5s infinite alternate;
}

.digix-loader-57 span:nth-child(odd) {
    background: var(--digix-color-1);
    transform-origin: bottom;
}

.digix-loader-57 span:nth-child(even) {
    background: var(--digix-color-2);
    transform-origin: top;
}

@keyframes zipper {
    to {
        height: 20px;
    }
}

/* 58. Breathing Square */
.digix-loader-58 {
    width: 40px;
    height: 40px;
    background: var(--digix-color-2);
    animation: breathe 3s infinite ease-in-out;
}

.digix-loader-58 span {
    position: absolute;
    inset: 0;
    border: 2px solid #fff;
    animation: breathe-inner 3s infinite ease-in-out;
}

.digix-loader-58 span:not(:first-child) {
    display: none;
}

@keyframes breathe {
    50% {
        border-radius: 50%;
        transform: rotate(180deg) scale(0.5);
        background: var(--digix-color-1);
    }
}

@keyframes breathe-inner {
    50% {
        border-radius: 50%;
        transform: scale(1.5);
        border-color: var(--digix-color-2);
    }
}

/* 59. Pendulum Wave */
.digix-loader-59 {
    width: 60px;
    height: 40px;
    display: flex;
    align-items: flex-start;
    gap: 2px;
}

.digix-loader-59 span {
    width: 4px;
    height: 20px;
    background: #fff;
    border-radius: 2px;
    animation: pendulum 1s infinite ease-in-out alternate;
    transform-origin: top;
}

.digix-loader-59 span:nth-child(1) {
    animation-delay: 0s;
    background: var(--digix-color-1);
}

.digix-loader-59 span:nth-child(2) {
    animation-delay: 0.1s;
    background: var(--digix-color-2);
}

.digix-loader-59 span:nth-child(3) {
    animation-delay: 0.2s;
    background: var(--digix-color-2);
}

.digix-loader-59 span:nth-child(4) {
    animation-delay: 0.3s;
    background: var(--digix-color-1);
}

@keyframes pendulum {
    from {
        transform: rotate(30deg);
    }

    to {
        transform: rotate(-30deg);
    }
}

/* 60. Biohazard */
.digix-loader-60 {
    width: 60px;
    height: 60px;
    animation: spin 4s infinite linear;
}

.digix-loader-60 span {
    position: absolute;
    width: 26px;
    height: 26px;
    border: 4px solid var(--digix-color-2);
    border-radius: 50%;
    top: 5px;
    left: 17px;
}

.digix-loader-60 span:nth-child(2) {
    top: 25px;
    left: 2px;
}

.digix-loader-60 span:nth-child(3) {
    top: 25px;
    left: 32px;
}

.digix-loader-60 span:nth-child(4) {
    top: 25px;
    left: 25px;
    width: 10px;
    height: 10px;
    background: var(--digix-color-2);
    border: none;
}

/* Center */

/* 61. Compass */
.digix-loader-61 {
    width: 50px;
    height: 50px;
    border: 2px solid var(--digix-color-1);
    border-radius: 50%;
    background: #fff;
}

.digix-loader-61 span {
    position: absolute;
    width: 4px;
    height: 30px;
    background: red;
    top: 10px;
    left: 23px;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    transform-origin: 50% 50%;
    animation: compass-spin 2s infinite cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.digix-loader-61 span:nth-child(2) {
    background: var(--digix-color-1);
    transform: rotate(180deg);
    animation: compass-spin 2s infinite cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.digix-loader-61 span:not(:nth-child(1)):not(:nth-child(2)) {
    display: none;
}

@keyframes compass-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(720deg);
    }
}

/* 62. Escalator */
.digix-loader-62 {
    width: 60px;
    height: 60px;
    overflow: hidden;
}

.digix-loader-62 span {
    position: absolute;
    width: 15px;
    height: 5px;
    background: var(--digix-color-1);
    animation: escalator 2s infinite linear;
    top: 60px;
    left: 0;
}

.digix-loader-62 span:nth-child(2) {
    animation-delay: 0.5s;
}

.digix-loader-62 span:nth-child(3) {
    animation-delay: 1s;
}

.digix-loader-62 span:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes escalator {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translate(45px, -45px);
        opacity: 0;
    }
}

/* 63. Windmill */
.digix-loader-63 {
    width: 60px;
    height: 60px;
    animation: spin 2s infinite linear;
}

.digix-loader-63 span {
    position: absolute;
    width: 0;
    height: 0;
    top: 30px;
    left: 30px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 25px solid var(--digix-color-1);
    transform-origin: 50% 0%;
}

.digix-loader-63 span:nth-child(1) {
    transform: rotate(0deg);
    border-bottom-color: var(--digix-color-1);
}

.digix-loader-63 span:nth-child(2) {
    transform: rotate(90deg);
    border-bottom-color: var(--digix-color-2);
}

.digix-loader-63 span:nth-child(3) {
    transform: rotate(180deg);
    border-bottom-color: var(--digix-color-2);
}

.digix-loader-63 span:nth-child(4) {
    transform: rotate(270deg);
    border-bottom-color: var(--digix-color-1);
}

/* 64. Chem Flask */
.digix-loader-64 {
    width: 40px;
    height: 50px;
    border: 2px solid var(--digix-color-1);
    border-top: none;
    border-radius: 0 0 10px 10px;
    position: relative;
}

.digix-loader-64:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 10px;
    width: 16px;
    height: 10px;
    border: 2px solid var(--digix-color-1);
    border-bottom: none;
}

.digix-loader-64 span {
    position: absolute;
    width: 36px;
    height: 36px;
    bottom: 2px;
    left: 0;
    background: var(--digix-color-2);
    border-radius: 0 0 8px 8px;
    animation: fill-flask 2s infinite alternate;
    opacity: 0.6;
}

.digix-loader-64 span:nth-child(2) {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    bottom: 10px;
    left: 10px;
    animation: bubble 1s infinite;
}

.digix-loader-64 span:nth-child(3) {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    bottom: 20px;
    left: 20px;
    animation: bubble 1.5s infinite;
}

.digix-loader-64 span:nth-child(4) {
    display: none;
}

@keyframes fill-flask {
    0% {
        height: 10px;
        background: var(--digix-color-2);
    }

    100% {
        height: 45px;
        background: var(--digix-color-1);
    }
}

@keyframes bubble {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-20px);
        opacity: 0;
    }
}

/* 65. Target Aim */
.digix-loader-65 {
    width: 60px;
    height: 60px;
    position: relative;
}

.digix-loader-65 span {
    position: absolute;
    border: 2px solid #ff0000;
    transition: all 0.2s;
}

.digix-loader-65 span:nth-child(1) {
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    border-bottom: none;
    border-right: none;
    animation: aim-tl 1s infinite;
}

.digix-loader-65 span:nth-child(2) {
    width: 20px;
    height: 20px;
    top: 0;
    right: 0;
    border-bottom: none;
    border-left: none;
    animation: aim-tr 1s infinite;
}

.digix-loader-65 span:nth-child(3) {
    width: 20px;
    height: 20px;
    bottom: 0;
    left: 0;
    border-top: none;
    border-right: none;
    animation: aim-bl 1s infinite;
}

.digix-loader-65 span:nth-child(4) {
    width: 20px;
    height: 20px;
    bottom: 0;
    right: 0;
    border-top: none;
    border-left: none;
    animation: aim-br 1s infinite;
}

@keyframes aim-tl {
    50% {
        transform: translate(10px, 10px);
    }
}

@keyframes aim-tr {
    50% {
        transform: translate(-10px, 10px);
    }
}

@keyframes aim-bl {
    50% {
        transform: translate(10px, -10px);
    }
}

@keyframes aim-br {
    50% {
        transform: translate(-10px, -10px);
    }
}

/* 66. Audio Speaker */
.digix-loader-66 {
    width: 50px;
    height: 50px;
    background: var(--digix-color-1);
    border-radius: 50%;
    border: 4px solid #555;
    animation: speak-pulse 0.2s infinite;
}

.digix-loader-66 span {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #111;
    border-radius: 50%;
    top: 11px;
    left: 11px;
}

.digix-loader-66 span:nth-child(2) {
    display: none;
}

.digix-loader-66 span:nth-child(3) {
    display: none;
}

.digix-loader-66 span:nth-child(4) {
    display: none;
}

@keyframes speak-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 10px var(--digix-color-2);
    }
}

/* 67. Ghost Float */
.digix-loader-67 {
    width: 40px;
    height: 50px;
    background: #fff;
    border-radius: 20px 20px 0 0;
    animation: ghost 2s infinite ease-in-out;
    position: relative;
}

.digix-loader-67:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 10px 0 0 #fff, 20px 0 0 #fff, 30px 0 0 #fff;
}

.digix-loader-67 span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
    top: 15px;
    left: 10px;
}

.digix-loader-67 span:nth-child(2) {
    left: 24px;
}

.digix-loader-67 span:not(:nth-child(1)):not(:nth-child(2)) {
    display: none;
}

@keyframes ghost {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* 68. Lantern */
.digix-loader-68 {
    width: 30px;
    height: 50px;
    background: var(--digix-color-1);
    border-radius: 10px;
    animation: swing 2s infinite ease-in-out;
    transform-origin: top center;
}

.digix-loader-68:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 12px;
    width: 6px;
    height: 10px;
    background: var(--digix-color-1);
}

.digix-loader-68 span {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 40%, rgba(255, 255, 0, 0.5) 50%, transparent 60%);
    animation: glow-light 2s infinite;
}

.digix-loader-68 span:not(:first-child) {
    display: none;
}

@keyframes swing {
    0% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(10deg);
    }
}

@keyframes glow-light {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

/* 69. Sword Fight */
.digix-loader-69 {
    width: 60px;
    height: 60px;
}

.digix-loader-69 span {
    position: absolute;
    width: 4px;
    height: 40px;
    background: #ccc;
    top: 10px;
    left: 28px;
    box-shadow: 0 0 5px #fff;
}

.digix-loader-69 span:nth-child(1) {
    transform: rotate(45deg);
    animation: sword-clash-1 1s infinite;
    background: var(--digix-color-1);
}

.digix-loader-69 span:nth-child(2) {
    transform: rotate(-45deg);
    animation: sword-clash-2 1s infinite;
    background: var(--digix-color-1);
    animation-delay: 0.5s;
}

.digix-loader-69 span:nth-child(3) {
    display: none;
}

.digix-loader-69 span:nth-child(4) {
    display: none;
}

@keyframes sword-clash-1 {

    0%,
    100% {
        transform: rotate(45deg) translateX(0);
    }

    50% {
        transform: rotate(30deg) translateX(-5px);
    }
}

@keyframes sword-clash-2 {

    0%,
    100% {
        transform: rotate(-45deg) translateX(0);
    }

    50% {
        transform: rotate(-30deg) translateX(5px);
    }
}

/* 70. Rocket Takeoff */
.digix-loader-70 {
    width: 40px;
    height: 60px;
    animation: rocket-shake 0.1s infinite;
}

.digix-loader-70 span:nth-child(1) {
    position: absolute;
    width: 20px;
    height: 40px;
    background: #ccc;
    border-radius: 50% 50% 5px 5px;
    left: 10px;
    top: 0;
}

.digix-loader-70 span:nth-child(2) {
    position: absolute;
    width: 10px;
    height: 20px;
    background: var(--digix-color-1);
    left: 15px;
    top: 40px;
    border-radius: 0 0 50% 50%;
    animation: fire-exhaust 0.2s infinite;
}

.digix-loader-70 span:nth-child(3) {
    position: absolute;
    width: 6px;
    height: 15px;
    background: var(--digix-color-1);
    left: 4px;
    top: 30px;
    border-radius: 50% 0 0 0;
}

/* Fin L */
.digix-loader-70 span:nth-child(4) {
    position: absolute;
    width: 6px;
    height: 15px;
    background: var(--digix-color-1);
    right: 4px;
    top: 30px;
    border-radius: 0 50% 0 0;
}

/* Fin R */
@keyframes rocket-shake {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(1px, 1px);
    }

    100% {
        transform: translate(-1px, 0);
    }
}

@keyframes fire-exhaust {
    0% {
        height: 10px;
        opacity: 1;
    }

    100% {
        height: 25px;
        opacity: 0.5;
    }
}

/* 71. Cube Grid Pulse */
.digix-loader-71 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    width: 40px;
    height: 40px;
}

.digix-loader-71 span {
    background: var(--digix-color-2);
    animation: grid-pulse 1s infinite alternate;
}

.digix-loader-71 span:nth-child(1) {
    animation-delay: 0s;
}

.digix-loader-71 span:nth-child(2) {
    animation-delay: 0.2s;
}

.digix-loader-71 span:nth-child(3) {
    animation-delay: 0.4s;
}

.digix-loader-71 span:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes grid-pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.5);
        border-radius: 50%;
        background: var(--digix-color-1);
    }
}

/* 72. Snake Game */
.digix-loader-72 {
    width: 60px;
    height: 60px;
    border: 2px solid var(--digix-color-1);
    position: relative;
}

.digix-loader-72 span {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #00ff00;
    animation: snake-move 2s infinite step-end;
}

.digix-loader-72 span:nth-child(2) {
    display: none;
}

.digix-loader-72 span:nth-child(3) {
    display: none;
}

.digix-loader-72 span:nth-child(4) {
    width: 6px;
    height: 6px;
    background: #f00;
    border-radius: 50%;
    top: 30px;
    left: 30px;
    animation: none;
}

/* Apple */
@keyframes snake-move {
    0% {
        top: 10px;
        left: 10px;
    }

    25% {
        top: 10px;
        left: 40px;
    }

    50% {
        top: 40px;
        left: 40px;
    }

    75% {
        top: 40px;
        left: 10px;
    }

    100% {
        top: 10px;
        left: 10px;
    }
}

/* 73. Yin Yang 3D */
.digix-loader-73 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(90deg, #fff 50%, #000 50%);
    transform-style: preserve-3d;
    animation: spin-y 2s infinite linear;
}

.digix-loader-73 span {
    display: none;
}

@keyframes spin-y {
    to {
        transform: rotateY(360deg);
    }
}

/* 74. Neon Text */
.digix-loader-74 {
    width: 100px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.digix-loader-74:before {
    content: 'LOADING';
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    animation: neon-flickr 2s infinite;
}

.digix-loader-74 span {
    display: none;
}

@keyframes neon-flickr {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        text-shadow: 0 0 5px #ff00de, 0 0 10px #ff00de, 0 0 15px #ff00de;
        opacity: 1;
    }

    20%,
    24%,
    55% {
        text-shadow: none;
        opacity: 0.5;
    }
}

/* 75. 4D Tesseract (Simulated) */
.digix-loader-75 {
    width: 50px;
    height: 50px;
    border: 2px solid var(--digix-color-1);
    animation: tesseract 3s infinite linear;
    position: relative;
}

.digix-loader-75 span {
    position: absolute;
    inset: 10px;
    border: 2px solid var(--digix-color-1);
    animation: tesseract-inner 3s infinite linear reverse;
}

.digix-loader-75 span:not(:first-child) {
    display: none;
}

@keyframes tesseract {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes tesseract-inner {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 76. Box Jump */
.digix-loader-76 {
    width: 60px;
    height: 40px;
    border-bottom: 2px solid var(--digix-color-1);
    align-items: flex-end;
    justify-content: flex-start;
}

.digix-loader-76 span {
    width: 15px;
    height: 15px;
    background: var(--digix-color-2);
    position: absolute;
    left: 0;
    bottom: 0;
    animation: box-jump 1.5s infinite linear;
}

.digix-loader-76 span:not(:first-child) {
    display: none;
}

@keyframes box-jump {
    0% {
        left: 0;
        transform: rotate(0);
    }

    25% {
        transform: translateY(-30px) rotate(90deg);
    }

    50% {
        left: 22px;
        transform: translateY(0) rotate(90deg);
    }

    75% {
        transform: translateY(-30px) rotate(180deg);
    }

    100% {
        left: 45px;
        transform: translateY(0) rotate(180deg);
    }
}

/* 77. Mosaic Flip */
.digix-loader-77 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 40px;
    height: 40px;
    gap: 2px;
}

.digix-loader-77 span {
    background: var(--digix-color-1);
    animation: flip-tile 2s infinite;
}

.digix-loader-77 span:nth-child(1) {
    animation-delay: 0s;
    background: var(--digix-color-1);
}

.digix-loader-77 span:nth-child(2) {
    animation-delay: 0.5s;
    background: var(--digix-color-2);
}

.digix-loader-77 span:nth-child(3) {
    animation-delay: 1s;
    background: var(--digix-color-1);
}

.digix-loader-77 span:nth-child(4) {
    animation-delay: 1.5s;
    background: var(--digix-color-2);
}

@keyframes flip-tile {
    0% {
        transform: rotateY(0);
    }

    100% {
        transform: rotateY(180deg);
    }
}

/* 78. Eclipse Ring */
.digix-loader-78 {
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    box-shadow: 0 0 20px var(--digix-color-2);
    animation: sun-pulse 2s infinite;
}

.digix-loader-78 span {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #000;
    left: -10px;
    animation: moon-pass 3s infinite ease-in-out;
}

.digix-loader-78 span:not(:first-child) {
    display: none;
}

@keyframes sun-pulse {
    50% {
        box-shadow: 0 0 40px #ff0000;
    }
}

@keyframes moon-pass {
    0% {
        left: -60px;
    }

    100% {
        left: 60px;
    }
}

/* 79. Gear Heart */
.digix-loader-79 {
    width: 60px;
    height: 60px;
}

.digix-loader-79 span {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 4px dashed var(--digix-color-1);
    border-radius: 50%;
    animation: gear-spin 2s infinite linear;
}

.digix-loader-79 span:nth-child(1) {
    top: 10px;
    left: 2px;
}

.digix-loader-79 span:nth-child(2) {
    top: 10px;
    right: 2px;
    animation-direction: reverse;
    border-color: var(--digix-color-2);
}

.digix-loader-79 span:nth-child(3) {
    display: none;
}

.digix-loader-79 span:nth-child(4) {
    display: none;
}

/* 80. The Ending (Glitch Text) */
.digix-loader-80 {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.digix-loader-80:before {
    content: 'SYS.LOAD';
    color: #00ff00;
    font-family: monospace;
    font-size: 20px;
    animation: glitch-text-anim 1s infinite;
}

.digix-loader-80 span {
    display: none;
}

@keyframes glitch-text-anim {
    0% {
        transform: skew(0deg);
    }

    20% {
        transform: skew(-10deg);
    }

    40% {
        transform: skew(10deg);
    }

    60% {
        transform: skew(-20deg);
    }

    80% {
        transform: skew(5deg);
    }

    100% {
        transform: skew(0deg);
    }
}