  /* Ezozo Theme Styles */
        body {
            font-family: arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fff;
            color: #202124;
        }
        
        /* Header Styles */
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 40px;
            width: auto;
            margin-right: 10px;
        }
        
        .logo span {
            color: #202124;
            font-size: 22px;
            font-weight: 400;
        }
        
        .header-nav {
            display: flex;
            align-items: center;
        }
        
        .header-nav a {
            color: #202124;
            text-decoration: none;
            margin-left: 15px;
            font-size: 13px;
        }
        
        .header-nav a:hover {
            text-decoration: underline;
        }
        
        .sign-in-btn {
            background-color: #4285f4;
            color: white;
            padding: 7px 15px;
            border-radius: 4px;
            font-weight: 500;
        }
        
        .sign-in-btn:hover {
            background-color: #356ac3;
            text-decoration: none;
        }
        
        /* Main Content */
        .main-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: calc(100vh - 160px);
            text-align: center;
            padding: 40px 20px;
        }
        
        .logo-container {
            margin-bottom: 30px;
        }
        
        .logo-image {
            height: 92px;
            width: auto;
        }
        
        .page-title {
            font-size: 28px;
            font-weight: 400;
            margin: 0 0 20px;
            color: #202124;
        }
        
        .page-subtitle {
            font-size: 16px;
            color: #5f6368;
            margin: 0 0 40px;
            max-width: 600px;
        }
        
        /* Search Bar */
        .search-container {
            width: 100%;
            max-width: 584px;
            margin: 0 auto 30px;
            position: relative;
        }
        
        .search-box {
            display: flex;
            align-items: center;
            border: 1px solid #dfe1e5;
            border-radius: 24px;
            height: 44px;
            margin: 0 auto;
            width: 100%;
        }
        
        .search-box:hover {
            box-shadow: 0 1px 6px rgba(32,33,36,.28);
            border-color: rgba(223,225,229,0);
        }
        
        .search-box i {
            color: #9aa0a6;
            padding: 0 15px;
        }
        
        .search-box input {
            flex: 1;
            border: none;
            outline: none;
            background: transparent;
            font-size: 16px;
        }
        
        /* Search Buttons */
        .search-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .search-btn {
            background-color: #f8f9fa;
            border: 1px solid #f8f9fa;
            border-radius: 4px;
            color: #3c4043;
            font-family: arial,sans-serif;
            font-size: 14px;
            margin: 11px 4px;
            padding: 0 16px;
            line-height: 27px;
            height: 36px;
            min-width: 54px;
            text-align: center;
            cursor: pointer;
            user-select: none;
        }
        
        .search-btn:hover {
            box-shadow: 0 1px 1px rgba(0,0,0,.1);
            background-color: #f8f9fa;
            border: 1px solid #dadce0;
            color: #202124;
        }
        
        /* Stats Section */
        .stats-container {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: 400;
            color: #4285f4;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 14px;
            color: #5f6368;
        }
        
        /* Category Links */
        .category-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .category-links a {
            color: #4285f4;
            text-decoration: none;
            font-size: 13px;
        }
        
        .category-links a:hover {
            text-decoration: underline;
        }
        
        /* AI Badge */
        .ai-badge {
            display: inline-block;
            background-color: #ff9800;
            color: white;
            font-size: 12px;
            padding: 3px 6px;
            border-radius: 4px;
            margin-left: 5px;
            font-weight: 500;
        }
        
        /* Footer */
        footer {
            background-color: #f2f2f2;
            border-top: 1px solid #dadce0;
        }
        
        .footer-links {
            display: flex;
            justify-content: space-between;
            padding: 15px 20px;
        }
        
        .footer-links a {
            color: #70757a;
            text-decoration: none;
            font-size: 14px;
            margin: 0 15px;
        }
        
        .footer-links a:hover {
            text-decoration: underline;
        }
        
        .footer-bottom {
            text-align: center;
            padding: 15px 20px;
            color: #70757a;
            font-size: 14px;
        }
        
        .footer-bottom a {
            color: #70757a;
            text-decoration: none;
        }
        
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .header-container {
                padding: 15px;
            }
            
            .logo span {
                display: none;
            }
            
            .page-title {
                font-size: 24px;
            }
            
            .search-container {
                max-width: 100%;
                padding: 0 20px;
            }
            
            .category-links {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .stats-container {
                gap: 20px;
            }
            
            .stat-number {
                font-size: 28px;
            }
            
            .footer-links {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-links a {
                margin: 5px 0;
            }
        }