body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: linear-gradient(135deg, #FF9A3C, #FF3C3C); color: white; padding: 15px; border-radius: 10px; margin-bottom: 30px; }
        .logo { font-size: 28px; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { display: flex; justify-content: space-between; align-items: center; }
        .mobile-menu-btn { display: none; background: white; color: #FF3C3C; border: none; padding: 8px 12px; border-radius: 5px; cursor: pointer; }
        nav a { color: white; text-decoration: none; margin-left: 15px; font-weight: 500; }
        h1 { color: #FF3C3C; margin-bottom: 25px; }
        h2 { color: #FF9A3C; margin: 25px 0 15px; }
        h3 { color: #4A4A4A; margin: 20px 0 10px; }
        .download-btn, .login-btn { display: inline-block; background: #4CAF50; color: white; padding: 12px 25px; margin: 15px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .login-btn { background: #2196F3; }
        .stats-box { background: #F8F8F8; padding: 20px; border-radius: 8px; margin: 20px 0; }
        .feature-img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid #eee; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background: #E0E0E0; padding: 5px 10px; margin-right: 8px; border-radius: 15px; text-decoration: none; color: #333; }
        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
            nav ul { display: none; flex-direction: column; width: 100%; }
            nav.active ul { display: flex; }
            nav li { margin: 10px 0; }
        }
