:root {
            --primary-blue: #4285F4;
            --primary-red: #EA4335;
            --primary-yellow: #FBBC05;
            --primary-green: #34A853;
            --primary-orange: #FF9800;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* شعار Ezozo */
        .logo {
            display: flex;
            justify-content: center;
            margin: 50px 0 30px;
        }
        
        .logo-container {
            position: relative;
            width: 200px;
            height: 100px;
        }
        
        .logo-e {
            position: absolute;
            left: 0;
            width: 40px;
            height: 100px;
            background-color: var(--primary-blue);
            border-radius: 5px 0 0 5px;
        }
        
        .logo-z {
            position: absolute;
            left: 45px;
            width: 110px;
            height: 100px;
            background: linear-gradient(
                135deg,
                var(--primary-red) 0%,
                var(--primary-red) 25%,
                var(--primary-orange) 25%,
                var(--primary-orange) 50%,
                var(--primary-green) 50%,
                var(--primary-green) 75%,
                var(--primary-yellow) 75%,
                var(--primary-yellow) 100%
            );
            clip-path: polygon(0 20%, 100% 20%, 80% 50%, 100% 80%, 0 80%, 20% 50%);
        }
        
        .logo-o1 {
            position: absolute;
            left: 160px;
            width: 40px;
            height: 40px;
            background-color: var(--primary-red);
            border-radius: 50%;
            top: 10px;
        }
        
        .logo-o2 {
            position: absolute;
            left: 160px;
            width: 40px;
            height: 40px;
            background-color: var(--primary-green);
            border-radius: 50%;
            bottom: 10px;
        }
        
        .logo-text {
            text-align: center;
            margin-top: 10px;
            font-size: 24px;
            font-weight: bold;
            color: #444;
        }
        
        /* شريط البحث */
        .search-container {
            max-width: 600px;
            margin: 0 auto 30px;
            position: relative;
        }
        
        .search-box {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid #dfe1e5;
            border-radius: 30px;
            font-size: 16px;
            outline: none;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: all 0.3s;
            text-align: right;
        }
        
        .search-box:hover, .search-box:focus {
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }
        
        .search-buttons {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }
        
        .search-btn {
            padding: 10px 20px;
            background-color: #f8f9fa;
            border: 1px solid #f8f9fa;
            border-radius: 4px;
            color: #3c4043;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .search-btn:hover {
            border: 1px solid #dadce0;
            box-shadow: 0 1px 1px rgba(0,0,0,0.1);
        }
        
        /* اللغات */
        .languages {
            text-align: center;
            margin: 30px 0;
            font-size: 13px;
        }
        
        .languages a {
            color: #1a0dab;
            text-decoration: none;
            margin: 0 5px;
        }
        
        .languages a:hover {
            text-decoration: underline;
        }
        
        /* فوتر */
        footer {
            background-color: #f2f2f2;
            position: fixed;
            bottom: 0;
            width: 100%;
            padding: 15px 0;
            border-top: 1px solid #dadce0;
        }
        
        .footer-links {
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
        }
        
        .footer-links a {
            color: #70757a;
            text-decoration: none;
            font-size: 14px;
        }
        
        .footer-links a:hover {
            text-decoration: underline;
        }
        
        .footer-left, .footer-right {
            display: flex;
            gap: 20px;
        }
        
        /* التنقل */
        .nav {
            display: flex;
            justify-content: flex-end;
            padding: 15px 20px;
        }
        
        .nav a {
            color: #333;
            text-decoration: none;
            margin-left: 15px;
            font-size: 14px;
        }
        
        .nav a:hover {
            text-decoration: underline;
        }
        
        /* زر تسجيل الدخول */
        .sign-in-btn {
            background-color: var(--primary-blue);
            color: white;
            padding: 8px 15px;
            border-radius: 4px;
            font-weight: 500;
        }
        
        .sign-in-btn:hover {
            background-color: #3367d6;
            text-decoration: none;
            box-shadow: 0 1px 1px rgba(0,0,0,0.1);
        }
        
        /* القائمة المنسدلة للبحث */
        .search-suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #dfe1e5;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 4px 6px rgba(32,33,36,0.28);
            z-index: 100;
            display: none;
        }
        
        .suggestion-item {
            padding: 10px 20px;
            cursor: pointer;
            text-align: right;
        }
        
        .suggestion-item:hover {
            background-color: #f8f9fa;
        }
        
        /* التبديل بين اللغات */
        .language-switcher {
            position: absolute;
            top: 10px;
            left: 10px;
        }
        
        .language-btn {
            background: none;
            border: none;
            color: #1a0dab;
            cursor: pointer;
            font-size: 14px;
        }
        
        /* واجهة الذكاء الاصطناعي */
        .ai-feature {
            text-align: center;
            margin: 20px 0;
            font-size: 14px;
            color: #555;
        }
        
        .ai-icon {
            display: inline-block;
            width: 20px;
            height: 20px;
            background-color: var(--primary-orange);
            border-radius: 50%;
            color: white;
            text-align: center;
            line-height: 20px;
            font-size: 12px;
            margin-left: 5px;
        }
        
        @media (max-width: 768px) {
            .footer-links {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .nav {
                justify-content: center;
            }
            
            .logo {
                margin: 20px 0;
            }
        }