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

        body {
            font-family: 'Tajawal', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .welcome-container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            max-width: 1000px;
            width: 100%;
            display: flex;
            flex-direction: column;
        }

        .header {
            background: linear-gradient(135deg, #316B83 0%, #1a4b6d 100%);
            padding: 40px;
            text-align: center;
            color: white;
        }

        .logo-container {
            margin-bottom: 20px;
        }

        .logo {
            width: 150px;
            height: 150px;
            background: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .logo img {
            width: 120px;
            height: auto;
        }

        h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 800;
        }

        .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        .main-content {
            padding: 50px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .app-description {
            text-align: center;
            margin-bottom: 50px;
            max-width: 600px;
        }

        .app-description p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .store-links {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .store-link {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px 40px;
            background: #f8f9fa;
            border-radius: 15px;
            text-decoration: none;
            color: #333;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            min-width: 250px;
        }

        .store-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-color: #316B83;
            background: white;
        }

        .store-icon {
            font-size: 2.5rem;
        }

        .apple-icon {
            color: #000;
        }

        .android-icon {
            color: #3DDC84;
        }

        .store-info {
            display: flex;
            flex-direction: column;
        }

        .store-title {
            font-size: 1rem;
            color: #666;
        }

        .store-name {
            font-size: 1.5rem;
            font-weight: bold;
            color: #316B83;
        }

        .admin-login {
            text-align: center;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 2px solid #eee;
            width: 100%;
        }

        .login-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 40px;
            background: #316B83;
            color: white;
            text-decoration: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: bold;
            transition: all 0.3s ease;
            border: 2px solid #316B83;
        }

        .login-btn:hover {
            background: white;
            color: #316B83;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(49, 107, 131, 0.2);
        }

        .login-btn i {
            font-size: 1.2rem;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
            width: 100%;
        }

        .feature-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            background: white;
        }

        .feature-icon {
            font-size: 3rem;
            color: #316B83;
            margin-bottom: 20px;
        }

        .feature-title {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .feature-desc {
            color: #666;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .welcome-container {
                margin: 10px;
            }

            .header,
            .main-content {
                padding: 30px 20px;
            }

            .store-links {
                flex-direction: column;
                align-items: center;
            }

            .store-link {
                width: 100%;
                max-width: 300px;
            }

            .features {
                grid-template-columns: 1fr;
            }
        }

        .language-switcher {
            position: absolute;
            top: 20px;
            right: 20px;
        }

        .language-btn {
            background: white;
            border: 2px solid #316B83;
            color: #316B83;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .language-btn:hover {
            background: #316B83;
            color: white;
        }