body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f5f5e6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #4CAF50; color: white; padding: 15px; text-align: center; position: relative; }
        header h1 { margin: 0; font-size: 28px; }
        .logo-text { font-weight: bold; font-size: 32px; text-shadow: 2px 2px 4px #00000080; }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-nav-toggle { display: none; background: none; border: none; color: white; font-size: 24px; position: absolute; right: 20px; top: 15px; }
        h1 { font-size: 28px; margin-bottom: 20px; color: #2E7D32; }
        h2 { font-size: 24px; margin-top: 30px; margin-bottom: 15px; color: #388E3C; border-bottom: 2px solid #81C784; padding-bottom: 5px; }
        h3 { font-size: 20px; margin-top: 25px; margin-bottom: 10px; color: #43A047; }
        p { margin-bottom: 15px; }
        .download-btn, .login-btn { display: inline-block; background-color: #FF5722; color: white; padding: 12px 25px; text-decoration: none; border-radius: 5px; font-weight: bold; margin: 10px 0; }
        .download-btn:hover, .login-btn:hover { background-color: #E64A19; }
        .image-container { text-align: center; margin: 25px 0; }
        .image-container img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background-color: #E8F5E9; color: #2E7D32; padding: 5px 10px; border-radius: 15px; margin-right: 8px; margin-bottom: 8px; text-decoration: none; }
        footer { background-color: #333; color: white; text-align: center; padding: 20px; margin-top: 30px; }
        .game-types { margin: 20px 0; }
        .game-type { display: inline-block; background-color: #424242; color: white; padding: 8px 15px; border-radius: 5px; margin-right: 10px; text-decoration: none; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            nav.active { display: flex; }
            .mobile-nav-toggle { display: block; }
            header h1 { font-size: 24px; }
            .logo-text { font-size: 28px; }
            h1 { font-size: 24px; }
            h2 { font-size: 22px; }
            h3 { font-size: 18px; }
        }
