body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; background-color: #f5f5f5; }
        header { background-color: #FF6B35; color: white; padding: 15px; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-menu-btn { display: none; background: none; border: none; color: white; font-size: 24px; position: absolute; right: 20px; top: 15px; }
        h1 { color: #FF6B35; border-bottom: 3px solid #FF6B35; padding-bottom: 10px; }
        h2 { color: #4A90E2; margin-top: 30px; }
        h3 { color: #2ECC71; margin-top: 25px; }
        .btn { display: inline-block; background-color: #4A90E2; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; margin: 10px 0; font-weight: bold; }
        .btn:hover { background-color: #357ABD; }
        .download-section { background-color: white; padding: 20px; border-radius: 10px; margin: 20px 0; text-align: center; }
        .stats-box { background-color: #E8F4FC; padding: 15px; border-radius: 8px; margin: 15px 0; }
        .community-post { background-color: white; padding: 15px; border-radius: 8px; margin-bottom: 15px; border-left: 4px solid #FF6B35; }
        footer { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid #ddd; color: #666; }
        @media (max-width: 768px) {
            nav { flex-direction: column; display: none; }
            nav.active { display: flex; }
            .mobile-menu-btn { display: block; }
            body { padding: 10px; }
        }
        img { max-width: 100%; height: auto; border-radius: 8px; margin: 15px 0; }
