body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; background-color: #f5f0e6; }
        header { background-color: #d42a1e; color: white; padding: 15px; position: sticky; top: 0; z-index: 100; }
        .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; }
        .menu-btn { display: none; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
        @media (max-width: 768px) {
            .menu-btn { display: block; }
            nav ul { display: none; flex-direction: column; width: 100%; }
            nav.active ul { display: flex; }
            nav ul li { margin: 10px 0; }
        }
        nav ul { list-style: none; display: flex; gap: 20px; }
        nav a { color: white; text-decoration: none; }
        h1 { color: #d42a1e; border-bottom: 3px solid #ffcc00; padding-bottom: 10px; }
        h2 { color: #006400; margin-top: 30px; }
        h3 { color: #8b4513; }
        .download-btn, .login-btn { display: inline-block; padding: 12px 25px; margin: 15px 0; background-color: #d42a1e; color: white; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .stats-box { background-color: #fff8e1; padding: 15px; border-left: 5px solid #ffcc00; margin: 20px 0; }
        .community-post { background-color: #e8f5e9; padding: 15px; margin: 15px 0; border-radius: 5px; }
        footer { background-color: #333; color: white; padding: 20px; text-align: center; margin-top: 40px; }
        img { max-width: 100%; height: auto; display: block; margin: 20px auto; border-radius: 8px; }
