body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        .logo { font-size: 28px; font-weight: bold; color: #FF4500; text-transform: uppercase; letter-spacing: 2px; margin: 20px 0; }
        .nav { background: #333; padding: 10px; display: flex; justify-content: space-between; align-items: center; }
        .nav a { color: white; margin: 0 10px; text-decoration: none; }
        .mobile-toggle { display: none; color: white; }
        h1 { color: #FF4500; border-bottom: 3px solid #FFD700; padding-bottom: 10px; }
        h2 { color: #FF6B35; margin-top: 30px; }
        h3 { color: #FF8C00; }
        .download-btn, .login-btn { background: #FF4500; color: white; padding: 10px 20px; margin: 15px 0; display: inline-block; border-radius: 5px; text-decoration: none; }
        img { max-width: 100%; height: auto; margin: 20px 0; }
        .tags { margin: 20px 0; }
        .tags a { background: #eee; padding: 5px 10px; margin: 5px; display: inline-block; border-radius: 3px; }
        footer { margin-top: 50px; padding: 20px; background: #333; color: white; }
        @media (max-width: 768px) {
            .nav { flex-direction: column; }
            .mobile-toggle { display: block; position: absolute; right: 20px; top: 20px; }
            .nav-links { display: none; width: 100%; text-align: center; }
            .nav-links.active { display: block; }
        }
