        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cairo', sans-serif;
            overflow-x: hidden;
            background: linear-gradient(135deg, #0A1E3D 0%, #0D2847 100%);
            min-height: 100vh;
        }

        .container {
            position: relative;
            width: 100%;
            min-height: 100vh;
            overflow: hidden;
        }

        /* Background Circles */
        .bg-circle {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }

        .circle-top {
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 50%, transparent 100%);
        }

        .circle-bottom {
            bottom: -80px;
            left: -80px;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, rgba(212, 175, 55, 0.04) 50%, transparent 100%);
        }

        /* Floating Particles */
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #FFD700;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
            animation: float 3s ease-in-out infinite;
            opacity: 0;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); opacity: 0.3; }
            50% { transform: translateY(-20px); opacity: 0.6; }
        }

        /* Main Content */
        .content {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 40px 20px;
            z-index: 10;
        }

        /* Logo Container */
        .logo-container {
            position: relative;
            width: 200px;
            height: 200px;
            margin-bottom: 40px;
            opacity: 0;
            transform: scale(0);
            animation: scaleIn 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s forwards;
        }

        @keyframes scaleIn {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .glow-effect {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            animation: pulse 1.5s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow:
                    0 0 30px rgba(255, 215, 0, 0.18),
                    0 0 60px rgba(255, 215, 0, 0.12);
            }
            50% {
                box-shadow:
                    0 0 50px rgba(255, 215, 0, 0.36),
                    0 0 80px rgba(255, 215, 0, 0.24);
            }
        }

        .logo-border {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
            border: 3px solid #FFD700;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-image {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            background: linear-gradient(135deg, #FFD700, #D4AF37);
        }

        .logo-icon {
            font-size: 80px;
            color: white;
        }

        /* Text Section */
        .text-section {
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.8s ease-out 0.9s forwards;
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .main-title {
            font-size: 32px;
            font-weight: 700;
            color: white;
            letter-spacing: 1px;
            margin-bottom: 12px;
            background: linear-gradient(90deg, #FFD700 0%, white 50%, #FFD700 100%);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s linear infinite;
        }

        @keyframes shimmer {
            0% { background-position: 200% center; }
            100% { background-position: -200% center; }
        }

        .subtitle {
            font-size: 18px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
            letter-spacing: 2px;
            margin-bottom: 40px;
        }

        /* Dashboard Button */
        .dashboard-btn {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #FFD700, #D4AF37);
            color: #0A1E3D;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .dashboard-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .dashboard-btn:hover:before {
            left: 100%;
        }

        .dashboard-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
        }

        .dashboard-btn:active {
            transform: translateY(0);
        }

        /* Loading Spinner */
        .spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(255, 215, 0, 0.2);
            border-top-color: #FFD700;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

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

        /* Bottom Text */
        .footer-text {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            opacity: 0;
            animation: fadeIn 0.8s ease-in 1.2s forwards;
        }

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

        .copyright {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
            margin-bottom: 4px;
        }

        .company-name {
            font-size: 14px;
            font-weight: 700;
            color: #FFD700;
            letter-spacing: 1.5px;
        }

        /* Page Transition */
        .page-transition {
            position: fixed;
            inset: 0;
            background: linear-gradient(135deg, #0A1E3D 0%, #0D2847 100%);
            z-index: 1000;
            opacity: 1;
            transition: opacity 0.5s ease-out;
            pointer-events: none;
        }

        .page-transition.fade-out {
            opacity: 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .logo-container {
                width: 160px;
                height: 160px;
            }

            .main-title {
                font-size: 26px;
            }

            .subtitle {
                font-size: 16px;
            }
        }
