body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #FFF9E6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #FF5722; color: white; padding: 15px 0; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-menu-btn { display: none; position: absolute; right: 20px; top: 15px; background: none; border: none; color: white; font-size: 24px; }
        h1 { color: #FF5722; text-align: center; margin-bottom: 30px; }
        h2 { color: #E64A19; border-bottom: 2px solid #FFCCBC; padding-bottom: 5px; margin-top: 40px; }
        h3 { color: #D84315; margin-top: 30px; }
        .btn { display: inline-block; background-color: #FF5722; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; margin: 10px 0; font-weight: bold; }
        .btn:hover { background-color: #E64A19; }
        .download-section, .login-section { text-align: center; margin: 30px 0; }
        .stats { background-color: #FFF3E0; padding: 20px; border-radius: 10px; margin: 20px 0; }
        .gallery { display: flex; justify-content: center; gap: 20px; margin: 30px 0; }
        .gallery img { width: 300px; height: 200px; object-fit: cover; border-radius: 10px; }
        footer { background-color: #333; color: white; text-align: center; padding: 20px 0; margin-top: 50px; }
        .tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 20px 0; }
        .tag { background-color: #666; color: white; padding: 5px 10px; border-radius: 20px; text-decoration: none; }
        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
            nav { display: none; flex-direction: column; align-items: center; }
            nav.active { display: flex; }
            .gallery { flex-direction: column; align-items: center; }
            .gallery img { width: 90%; height: auto; }
        }
