body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f9f9f9; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #ff4500; color: white; padding: 15px 0; text-align: center; position: relative; }
        header .logo { font-size: 28px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; }
        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; position: absolute; top: 15px; right: 20px; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
        h1 { font-size: 32px; margin-bottom: 20px; color: #ff4500; }
        h2 { font-size: 24px; margin: 30px 0 15px; color: #e63900; border-bottom: 2px solid #ff4500; padding-bottom: 5px; }
        h3 { font-size: 20px; margin: 25px 0 10px; color: #cc3300; }
        p { margin-bottom: 15px; }
        .download-btn, .login-btn { display: inline-block; background-color: #ff4500; color: white; padding: 12px 25px; text-decoration: none; font-weight: bold; border-radius: 5px; margin: 10px 0; }
        .download-btn:hover, .login-btn:hover { background-color: #e63900; }
        .image-container { text-align: center; margin: 30px 0; }
        .image-container img { max-width: 100%; height: auto; border-radius: 8px; }
        .stats-box { background-color: white; border-left: 5px solid #ff4500; padding: 15px; margin: 20px 0; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
        .community-section { background-color: #fff5f0; padding: 20px; border-radius: 8px; margin: 30px 0; }
        footer { background-color: #333; color: white; text-align: center; padding: 20px 0; margin-top: 40px; }
        footer a { color: #ffcc00; text-decoration: none; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background-color: #e63900; color: white; padding: 5px 10px; border-radius: 15px; margin: 5px; font-size: 14px; }
        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
            nav { display: none; flex-direction: column; align-items: center; background-color: rgba(255,69,0,0.9); position: absolute; top: 70px; left: 0; right: 0; padding: 15px 0; }
            nav.active { display: flex; }
            nav a { margin: 8px 0; }
            h1 { font-size: 26px; }
            h2 { font-size: 20px; }
            h3 { font-size: 18px; }
        }
