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, #FF6B6B, #4ECDC4); color: white; padding: 20px; 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-toggle { display: none; cursor: pointer; }
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; width: 100%; }
            .nav-links.active { display: flex; }
            .mobile-toggle { display: block; }
        }
        h1 { color: #FF6B6B; margin-bottom: 20px; }
        h2 { color: #4ECDC4; margin-top: 30px; }
        h3 { color: #FFA07A; }
        .download-btn, .login-btn { background: #FF6B6B; color: white; padding: 10px 20px; border-radius: 5px; text-decoration: none; display: inline-block; margin: 10px 0; }
        img { max-width: 100%; height: auto; border-radius: 10px; margin: 20px 0; }
        footer { background: #333; color: white; padding: 20px; text-align: center; margin-top: 40px; }
        .tags { margin: 20px 0; }
        .tag { background: #4ECDC4; color: white; padding: 5px 10px; border-radius: 5px; margin: 5px; display: inline-block; }
