body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        h1 { color: #FF6B35; text-align: center; }
        h2 { color: #FF8C42; border-bottom: 2px solid #FFB870; }
        h3 { color: #FFA559; }
        .logo { font-size: 2em; font-weight: bold; color: #FF4D00; text-shadow: 2px 2px 4px rgba(0,0,0,0.2); }
        .nav { display: flex; justify-content: space-between; background: #FFE8D6; padding: 10px; position: sticky; top: 0; }
        .mobile-nav-btn { display: none; }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-nav-btn { display: block; }
            .active .nav-links { display: block; }
        }
        .download-btn { background: #4CAF50; color: white; padding: 10px 20px; border-radius: 5px; text-decoration: none; display: inline-block; margin: 10px 0; }
        .login-btn { background: #2196F3; color: white; padding: 10px 20px; border-radius: 5px; text-decoration: none; display: inline-block; margin: 10px 0; }
        img { max-width: 100%; height: auto; margin: 20px 0; }
        .tags { margin: 20px 0; }
        .tag { background: #E0E0E0; padding: 5px 10px; border-radius: 15px; margin: 5px; display: inline-block; }
        footer { background: #333; color: white; padding: 20px; text-align: center; margin-top: 30px; }
