* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Tajawal', sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .splash-container {
            text-align: center;
            position: relative;
            z-index: 100;
        }

        /* Background animated circles */
        .bg-circles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }

        .circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }

        .circle:nth-child(1) {
            width: 400px;
            height: 400px;
            background: #6fbc32;
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .circle:nth-child(2) {
            width: 300px;
            height: 300px;
            background: #7ec850;
            bottom: -50px;
            left: -50px;
            animation-delay: 2s;
        }

        .circle:nth-child(3) {
            width: 250px;
            height: 250px;
            background: #6fbc32;
            top: 50%;
            left: 10%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(30px); }
        }

        /* Logo animation */
        .logo-wrapper {
            position: relative;
            z-index: 2;
            margin-bottom: 30px;
            animation: slideInDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .logo-wrapper img {
            width: 120px;
            height: 120px;
            filter: drop-shadow(0 10px 30px rgba(111, 188, 50, 0.4));
            animation: spin 3s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.05); }
            100% { transform: rotate(360deg) scale(1); }
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Text animation */
        .splash-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 15px;
            letter-spacing: 2px;
            animation: slideInUp 0.8s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
            text-shadow: 0 0 20px rgba(111, 188, 50, 0.3);
        }

        .splash-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            animation: slideInUp 0.8s 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
            letter-spacing: 1px;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Loading bar */
        .loading-bar {
            width: 200px;
            height: 6px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            margin: 0 auto 20px;
            overflow: hidden;
            animation: slideInUp 0.8s 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .loading-bar-progress {
            height: 100%;
            background: linear-gradient(90deg, #6fbc32, #7ec850, #6fbc32);
            border-radius: 10px;
            width: 0%;
            transition: width 0.3s ease;
            box-shadow: 0 0 10px rgba(111, 188, 50, 0.6);
        }

        /* Loading text */
        .loading-text {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            animation: slideInUp 0.8s 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
            letter-spacing: 3px;
        }

        .dot {
            display: inline-block;
            animation: blink 1.4s infinite;
        }

        .dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .dot:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes blink {
            0%, 60%, 100% { opacity: 0.5; }
            30% { opacity: 1; }
        }

        /* Tagline */
        .tagline {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.85rem;
            color: rgba(111, 188, 50, 0.8);
            opacity: 0;
            animation: fadeIn 0.8s 2s ease-out forwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .splash-title {
                font-size: 1.8rem;
            }

            .splash-subtitle {
                font-size: 1rem;
            }

            .logo-wrapper img {
                width: 80px;
                height: 80px;
            }

            .loading-bar {
                width: 150px;
            }
        }

        @media (max-width: 480px) {
            .splash-title {
                font-size: 1.5rem;
                letter-spacing: 1px;
            }

            .splash-subtitle {
                font-size: 0.9rem;
            }

            .logo-wrapper img {
                width: 60px;
                height: 60px;
            }
        }