@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            min-height: 100vh;
            overflow-x: hidden;
            cursor: none;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            -webkit-touch-callout: none;
            -webkit-tap-highlight-color: transparent;
        }

        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            background: linear-gradient(45deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            border-radius: 50%;
            transform-origin: center;
            animation: cursorRotate 3s linear infinite;
            filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
            transition: transform 0.1s ease;
        }

        .cursor::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 8px;
            height: 8px;
            background: #fff;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
        }

        .cursor::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            animation: cursorPulse 2s ease-in-out infinite;
        }

        @keyframes cursorRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes cursorPulse {
            0%, 100% { 
                transform: scale(1);
                opacity: 0.3;
            }
            50% { 
                transform: scale(1.2);
                opacity: 0.7;
            }
        }

        .cursor-dot {
            display: none;
        }

        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, #1a1a1a 0%, #000000 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9998;
            transition: opacity 1.5s ease-out, visibility 1.5s ease-out;
        }

        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .clock-container {
            text-align: center;
        }

        .spinner {
            width: 60px;
            height: 60px;
            margin: 0 auto 40px;
            position: relative;
        }

        .spinner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 3px solid rgba(212, 175, 55, 0.2);
            border-top: 3px solid #d4af37;
            border-radius: 50%;
            animation: spin 1.5s linear infinite;
        }

        .spinner::after {
            content: '';
            position: absolute;
            top: 6px;
            left: 6px;
            width: calc(100% - 12px);
            height: calc(100% - 12px);
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-bottom: 2px solid #ffd700;
            border-radius: 50%;
            animation: spin 2s linear infinite reverse;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loading-text {
            font-size: 1.1rem;
            font-weight: 300;
            color: #cccccc;
            letter-spacing: 2px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.5s forwards;
            text-transform: uppercase;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Network Background */
        .network-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        /* Main Content */
        .main-content {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            opacity: 0;
            animation: fadeIn 2s ease-out 3.5s forwards;
            position: relative;
            z-index: 1;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .brand-container {
            margin-bottom: 4rem;
        }

        .logo {
            font-size: 4.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            letter-spacing: -2px;
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        .subtitle {
            color: #999999;
            font-size: 1.4rem;
            font-weight: 300;
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .tagline {
            color: #666666;
            font-size: 1rem;
            font-weight: 400;
            max-width: 700px;
            line-height: 1.6;
            margin: 0 auto 4rem;
            letter-spacing: 0.5px;
        }

        .status-panel {
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            border: 1px solid #333333;
            border-radius: 15px;
            padding: 3.5rem 3rem;
            max-width: 600px;
            width: 100%;
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .status-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            animation: sweep 4s ease-in-out infinite;
        }

        @keyframes sweep {
            0% { left: -100%; }
            50% { left: 100%; }
            100% { left: 100%; }
        }

        .status-panel:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 35px 70px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.15),
                0 0 50px rgba(212, 175, 55, 0.1);
            border-color: #444444;
        }

        .status-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 2.5rem;
            background: radial-gradient(circle, #d4af37 0%, #b8941f 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 
                0 10px 30px rgba(212, 175, 55, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .status-icon::before {
            content: '⏱';
            font-size: 2.5rem;
            animation: breathe 3s ease-in-out infinite;
        }

        @keyframes breathe {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .status-title {
            color: #ffffff;
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            letter-spacing: -0.5px;
        }

        .status-description {
            color: #b0b0b0;
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2.5rem;
            font-weight: 300;
        }

        .progress-container {
            margin-bottom: 1.5rem;
        }

        .progress-bar {
            width: 100%;
            height: 3px;
            background: #333333;
            border-radius: 2px;
            overflow: hidden;
            margin-bottom: 1rem;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
            border-radius: 2px;
            animation: progressFlow 3s ease-in-out infinite;
            background-size: 200% 100%;
        }

        @keyframes progressFlow {
            0% { 
                width: 0%; 
                background-position: 0% 50%;
            }
            50% { 
                width: 100%; 
                background-position: 100% 50%;
            }
            100% { 
                width: 100%; 
                background-position: 200% 50%;
            }
        }

        .progress-text {
            color: #888888;
            font-size: 0.95rem;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .footer {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            color: #555555;
            font-size: 0.9rem;
            font-weight: 300;
            opacity: 0;
            animation: fadeIn 1s ease-out 5s forwards;
            letter-spacing: 1px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .logo {
                font-size: 3rem;
            }
            
            .subtitle {
                font-size: 1.2rem;
            }
            
            .tagline {
                font-size: 0.9rem;
            }
            
            .status-panel {
                padding: 2.5rem 2rem;
                margin: 0 1rem;
            }
            
            .status-title {
                font-size: 1.8rem;
            }
        }