body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 2px solid #FF9900; }
        .logo { font-size: 28px; font-weight: bold; color: #FF4500; text-transform: uppercase; }
        nav ul { display: flex; list-style: none; gap: 20px; }
        nav a { text-decoration: none; color: #333; font-weight: 500; }
        .mobile-menu { display: none; background: #FF9900; color: white; border: none; padding: 8px 12px; border-radius: 4px; }
        h1 { color: #FF4500; margin: 30px 0 20px; font-size: 2.5em; }
        h2 { color: #FF6600; margin: 25px 0 15px; border-bottom: 1px solid #eee; padding-bottom: 5px; }
        h3 { color: #FF8C00; margin: 20px 0 10px; }
        .download-btn, .login-btn { display: inline-block; background: #FF4500; color: white; padding: 12px 25px; margin: 15px 0; border-radius: 6px; text-decoration: none; font-weight: bold; }
        .btn-container { text-align: center; margin: 30px 0; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        footer { margin-top: 50px; padding: 20px 0; border-top: 2px solid #FF9900; text-align: center; }
        .tags { margin: 20px 0; }
        .tag { background: #eee; padding: 5px 10px; margin: 0 5px; border-radius: 4px; text-decoration: none; color: #333; }
        @media (max-width: 768px) {
            nav ul { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%; background: white; }
            nav ul.active { display: flex; }
            .mobile-menu { display: block; }
            h1 { font-size: 2em; }
        }
