 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #151c3e 0%, #1a2048 50%, #151c3e 100%);
            color: white;
            overflow: hidden;
            height: 100vh;
            position: relative;
        }

        /* Subtle animated background gradient */
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(254, 91, 0, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(254, 91, 0, 0.06) 0%, transparent 50%),
                        radial-gradient(circle at 40% 80%, rgba(254, 91, 0, 0.04) 0%, transparent 50%);
            animation: subtleGlow 8s ease-in-out infinite alternate;
        }

        @keyframes subtleGlow {
            0% {
                opacity: 0.3;
                transform: scale(1);
            }
            100% {
                opacity: 0.6;
                transform: scale(1.05);
            }
        }

        /* Floating geometric shapes */
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .shape {
            position: absolute;
            border: 1px solid rgba(254, 91, 0, 0.1);
            animation: floatShape 15s linear infinite;
        }

        .shape.circle {
            border-radius: 50%;
        }

        .shape.square {
            transform: rotate(45deg);
        }

        @keyframes floatShape {
            0% {
                transform: translateY(100vh) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.3;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-100px) translateX(50px) rotate(360deg);
                opacity: 0;
            }
        }

        .container {
            position: relative;
            z-index: 10;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
        }

        .logo-container {
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(-30px);
            position: relative;
        }

        .logo {
            width: 400px;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            position: relative;
            overflow: hidden;
            animation: logoBreath 4s ease-in-out infinite;
        }

        @keyframes logoBreath {
            0%, 100% {
                transform: scale(1);
                /* box-shadow: 0 0 30px rgba(254, 91, 0, 0.1); */
            }
            50% {
                transform: scale(1.02);
                /* box-shadow: 0 0 40px rgba(254, 91, 0, 0.2); */
            }
        }

        /* Subtle border animation */
        /* .logo::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, 
                transparent, 
                rgba(254, 91, 0, 0.3), 
                transparent, 
                transparent,
                rgba(254, 91, 0, 0.3), 
                transparent);
            background-size: 400% 400%;
            border-radius: 20px;
            z-index: -1;
            animation: borderFlow 6s linear infinite;
        }

        @keyframes borderFlow {
            0% {
                background-position: 0% 50%;
            }
            100% {
                background-position: 400% 50%;
            }
        } */

        .main-content {
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
        }

        .title {
            font-size: 4.5rem;
            font-weight: 300;
            letter-spacing: 8px;
            margin-bottom: 20px;
            background: linear-gradient(45deg, 
                #ffffff 0%, 
                #fe5b00 25%, 
                #ffffff 50%, 
                #fe5b00 75%, 
                #ffffff 100%);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: textShimmer 3s ease-in-out infinite;
            position: relative;
        }

        @keyframes textShimmer {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        .subtitle {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 300;
            letter-spacing: 3px;
            text-transform: uppercase;
            animation: subtitleGlow 4s ease-in-out infinite alternate;
        }

        @keyframes subtitleGlow {
            0% {
                opacity: 0.7;
                text-shadow: 0 0 10px rgba(254, 91, 0, 0.2);
            }
            100% {
                opacity: 0.9;
                text-shadow: 0 0 20px rgba(254, 91, 0, 0.3);
            }
        }

        /* Minimal loading indicator */
        .loading-dots {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 8px;
            height: 8px;
            background: #fe5b00;
            border-radius: 50%;
            animation: dotPulse 1.5s ease-in-out infinite;
        }

        .dot:nth-child(2) {
            animation-delay: 0.3s;
        }

        .dot:nth-child(3) {
            animation-delay: 0.6s;
        }

        @keyframes dotPulse {
            0%, 80%, 100% {
                opacity: 0.3;
                transform: scale(1);
            }
            40% {
                opacity: 1;
                transform: scale(1.2);
            }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .title {
                font-size: 3rem;
                letter-spacing: 4px;
            }
            
            .subtitle {
                font-size: 1.1rem;
                letter-spacing: 2px;
            }
            
            .logo {
                width: 280px;
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .title {
                font-size: 2.2rem;
                letter-spacing: 2px;
            }
            
            .subtitle {
                font-size: 1rem;
                letter-spacing: 1px;
            }
            
            .logo {
                width: 240px;
                font-size: 16px;
            }
        }