:root {
            --ezozo-blue: #4285f4;
            --ezozo-blue-dark: #356ac3;
            --ezozo-blue-light: #e8f0fe;
            --ezozo-red: #ea4335;
            --ezozo-green: #34a853;
            --ezozo-yellow: #fbbc05;
            --ezozo-dark: #202124;
            --ezozo-gray: #5f6368;
            --ezozo-light-gray: #dadce0;
            --ezozo-bg: #f8f9fa;
            --ezozo-white: #ffffff;
            --ezozo-shadow: 0 2px 10px rgba(0,0,0,0.1);
            --ezozo-shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--ezozo-bg);
            color: var(--ezozo-dark);
            line-height: 1.6;
        }
        
        /* Top Bar with Language Switcher */
        .top-bar {
            background: linear-gradient(90deg, var(--ezozo-blue), var(--ezozo-blue-dark));
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .top-bar-links a {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            margin-left: 20px;
            transition: color 0.3s;
        }
        
        .top-bar-links a:hover {
            color: white;
        }
        
        #google_translate_element {
            display: inline-block;
        }
        
        .goog-te-gadget {
            font-family: 'Inter', sans-serif !important;
            color: white !important;
        }
        
        .goog-te-gadget-simple {
            background: transparent !important;
            border: 1px solid rgba(255,255,255,0.3) !important;
            padding: 5px 10px !important;
            border-radius: 4px !important;
        }
        
        /* Main Header */
        .main-header {
            background: var(--ezozo-white);
            box-shadow: var(--ezozo-shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--ezozo-dark);
        }
        
        .navbar-brand img {
            height: 40px;
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: var(--ezozo-dark) !important;
            font-weight: 500;
            padding: 0.5rem 1.2rem !important;
            transition: all 0.3s;
            border-radius: 4px;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--ezozo-blue-light);
            color: var(--ezozo-blue) !important;
        }
        
        .navbar-nav .nav-link.active {
            background-color: var(--ezozo-blue);
            color: white !important;
        }
        
        .btn-ezozo {
            background: linear-gradient(135deg, var(--ezozo-blue), var(--ezozo-blue-dark));
            color: white;
            border: none;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-ezozo:hover {
            transform: translateY(-2px);
            box-shadow: var(--ezozo-shadow-lg);
            color: white;
        }
        
        .btn-outline-ezozo {
            border: 2px solid var(--ezozo-blue);
            color: var(--ezozo-blue);
            background: transparent;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-outline-ezozo:hover {
            background: var(--ezozo-blue);
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(66, 133, 244, 0.1) 0%, rgba(66, 133, 244, 0.05) 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: url('https://cdn.pixabay.com/photo/2018/05/18/15/30/web-design-3411373_1280.jpg') no-repeat center;
            background-size: cover;
            opacity: 0.1;
        }
        
        .hero-title {
            font-family: 'Poppins', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--ezozo-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--ezozo-gray);
            margin-bottom: 30px;
            max-width: 600px;
        }
        
        /* Stats Section */
        .stats-section {
            margin-top: -50px;
            position: relative;
            z-index: 2;
        }
        
        .stat-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: var(--ezozo-shadow);
            transition: transform 0.3s;
            height: 100%;
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
        }
        
        .stat-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
            color: white;
        }
        
        .stat-icon.blue {
            background: linear-gradient(135deg, var(--ezozo-blue), var(--ezozo-blue-dark));
        }
        
        .stat-icon.green {
            background: linear-gradient(135deg, var(--ezozo-green), #2e8b57);
        }
        
        .stat-icon.yellow {
            background: linear-gradient(135deg, var(--ezozo-yellow), #ff9800);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--ezozo-dark);
            margin-bottom: 5px;
        }
        
        .stat-label {
            color: var(--ezozo-gray);
            font-size: 1rem;
        }
        
        /* Section Titles */
        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
            color: var(--ezozo-dark);
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--ezozo-blue);
            border-radius: 2px;
        }
        
        /* Banner Cards */
        .banner-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--ezozo-shadow);
            transition: all 0.3s;
            height: 100%;
            cursor: pointer;
        }
        
        .banner-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--ezozo-shadow-lg);
        }
        
        .banner-image {
            height: 200px;
            overflow: hidden;
            background: var(--ezozo-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .banner-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 15px;
        }
        
        .banner-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: white;
            text-transform: uppercase;
        }
        
        .badge-paid {
            background: linear-gradient(135deg, var(--ezozo-blue), var(--ezozo-blue-dark));
        }
        
        .badge-youtube {
            background: linear-gradient(135deg, var(--ezozo-red), #c23321);
        }
        
        .badge-exchange {
            background: linear-gradient(135deg, var(--ezozo-green), #2e8b57);
        }
        
        .banner-content {
            padding: 20px;
        }
        
        .banner-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--ezozo-dark);
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .banner-advertiser {
            color: var(--ezozo-gray);
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .banner-stats {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-top: 1px solid var(--ezozo-light-gray);
            border-bottom: 1px solid var(--ezozo-light-gray);
            margin-bottom: 15px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-value {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--ezozo-dark);
        }
        
        .stat-label-small {
            font-size: 0.8rem;
            color: var(--ezozo-gray);
        }
        
        /* How It Works */
        .step-card {
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--ezozo-shadow);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .step-number {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 40px;
            height: 40px;
            background: var(--ezozo-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .step-icon {
            font-size: 48px;
            color: var(--ezozo-blue);
            margin-bottom: 20px;
        }
        
        .step-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--ezozo-dark);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--ezozo-blue), var(--ezozo-blue-dark));
            padding: 80px 0;
            color: white;
            text-align: center;
            border-radius: 20px;
            margin: 80px 0;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Footer */
        .main-footer {
            background: var(--ezozo-dark);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links h5 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: var(--ezozo-blue);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .hero-section::before {
                display: none;
            }
            
            .top-bar-content {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            
            .navbar-nav {
                text-align: center;
                padding: 20px 0;
            }
        }
        
        /* Animation Classes */
        .fade-in {
            animation: fadeIn 0.8s ease-in;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }