body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: linear-gradient(135deg, #FF6B35, #FFA500); color: white; padding: 20px; border-radius: 10px; margin-bottom: 30px; }
        .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; }
        .mobile-menu-btn { display: none; background: #333; color: white; border: none; padding: 8px 12px; border-radius: 5px; }
        h1 { color: #FF6B35; font-size: 2.5em; margin-bottom: 20px; }
        h2 { color: #FFA500; margin: 30px 0 15px; }
        h3 { color: #4CAF50; margin: 25px 0 10px; }
        .download-btn, .login-btn { display: inline-block; background: #4CAF50; color: white; padding: 12px 25px; margin: 15px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .download-btn:hover, .login-btn:hover { background: #45a049; }
        img { max-width: 100%; height: auto; border-radius: 8px; margin: 15px 0; }
        .gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 15px; }
        .tag { background: #f1f1f1; padding: 5px 10px; border-radius: 20px; margin: 5px; display: inline-block; }
        footer { background: #333; color: white; padding: 20px; text-align: center; margin-top: 40px; border-radius: 10px; }
        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
            nav ul { display: none; }
            .active { display: block; }
            h1 { font-size: 2em; }
        }
