 :root {
            --bg-color: #050505;
            /* Gradient colors: Deep Slate to Architectural Gold */
            --grad-start: #434343; 
            --grad-end: #ffffff;
            --line-color: rgba(255, 255, 255, 0.2);
        }

         #loader{
            position: fixed;
            top:0px;
            left: 0px;
            z-index: 1000;
            background: rgb(1, 59, 87);
            width:100vw;
            height:100vh;
            justify-items: center;
            opacity:0.91;
            backdrop-filter: blur(20px);
         }
        .containerloads {
            position: relative;
            width: 120px;
            height: 120px;
              transform: translateY(40vh);
            display: flex;
            justify-content: center;
            align-items: center;
        }
           
        /* The Moving Scan Line (Whirling around) */
        .orbit-line {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 8px;
            border: 1px solid var(--line-color);
            animation: whirl 1s cubic-bezier(0.7, 0, 0.3, 1) infinite;
        }

        .orbit-line::after {
            content: '';
            position: absolute;
            top: -2px;
            left: 50%;
            width: 30%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--grad-end));
            box-shadow: 0 0 15px var(--grad-end);
        }

        /* The 3x3 Grid */
        .grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 6px;
            width: 60px;
            height: 60px;
        }

        .square {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
            border-radius: 2px;
            opacity: 0;
            animation: gradientBlink 1.5s infinite ease-in-out;
        }

        /* Staggered Gradient Delay */
        .square:nth-child(1) { animation-delay: 0.1s; }
        .square:nth-child(2) { animation-delay: 0.2s; }
        .square:nth-child(3) { animation-delay: 0.3s; }
        .square:nth-child(4) { animation-delay: 0.4s; }
        .square:nth-child(5) { animation-delay: 0.5s; }
        .square:nth-child(6) { animation-delay: 0.6s; }
        .square:nth-child(7) { animation-delay: 0.7s; }
        .square:nth-child(8) { animation-delay: 0.8s; }
        .square:nth-child(9) { animation-delay: 0.9s; }

        @keyframes gradientBlink {
            0%, 100% { 
                opacity: 0.1; 
                transform: scale(0.9);
                filter: brightness(0.5) blur(1px);
            }
            50% { 
                opacity: 1; 
                transform: scale(1.05);
                filter: brightness(1.2) blur(0px);
                box-shadow: 0 0 15px rgba(255,255,255,0.3);
            }
        }

        @keyframes whirl {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.1); }
            100% { transform: rotate(360deg) scale(1); }
        }

        .text {
            position: absolute;
            bottom: -50px;
            font-family: 'Inter', sans-serif;
            font-size: 9px;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: white;
            opacity: 0.6;
        }